aquatone
aquatone copied to clipboard
Screenshots not working in Windows release
Any tips to resolve this problem? Even if i setting bid delay, screenshots don't creating and im getting screenshot timed out. :(
I unfortunately don't have access to a windows machine to debug on. Are you using the latest version of Chromium?
Yes mate, latest version of chrome. p.s. what OS you are using mate?
I run aquatone on Mac and don't have any problems there. It should also work properly on Linux, so you might want to try running aquatone in a virtual machine, e.g. Kali linux.
I run aquatone on Mac and don't have any problems there. It should also work properly on Linux, so you might want to try running aquatone in a virtual machine, e.g. Kali linux.
I've tried kali linux and ubuntu 18.04, in output screenshot is ok, but there is still no screenshots :( Folder permission is writable
UPD: I've figured it out on linux. I've mistaked chromium-bsu(2d game) with the real browser. LOL But in windows there is still screenshot problem :( Guys, who has win machines are screenshots is working? What's your command in cmd?
Maybe im doing something wrong? My command is type 1.txt | aquatone.exe -chrome-path "chrome-win/chromium.exe" But getting this "screenshot timed out". Chromium and chrome is the last version
I've got the same problem on Windows 10. No screenshot is made either with Chrome or Chromium, latest builds.
@michenriksen
Its working for me in windows 10.
Try to give the full path to the chromium :
type 1.txt | aquatone.exe -chrome-path "C:\path\to\chromium.exe"
Its working for me in windows 10.
Try to give the full path to the chromium :
type 1.txt | aquatone.exe -chrome-path "C:\path\to\chromium.exe"
What version of chromium you are using? Give me the link where you downloaded your chromium
@stueotue I did give the full path, though :/
Gonna try it again and let you know
What version of chromium you are using? Give me the link where you downloaded your chromium
https://chromium.woolyss.com/ This chromium was made by third-party developers. I recommend using this : https://www.chromium.org/getting-involved/download-chromium
@stueotue I did give the full path, though :/
Gonna try it again and let you know
I get similar issue in december 2018 but when i give the full path to chrome.exe its working. But now i try using aquatone again in my windows with cmd like this :
type 1.txt | aquatone.exe -chrome-path "C:\path\to\chromium.exe" and the screenshots not working.
However when i use my batch file for recon it works, here is the batch file https://github.com/stueotue/personal-recon and you need to change the variable if you want to use it.
I really need to know what is happening.
SS : https://imgur.com/a/fdgH7Tn
Can confirm that this is still an issue on Windows 10 with the latest available binary:
aquatone_windows_amd64_1.4.3
Tried ridiculously long timeouts (i.e. 200000) as I thought that may have been the issue, as well as running everything with administrative privs incase that was somehow causing the lack of screenshots.
Still got the same issue with latest release 1.7.0
@stueotue your batch didn't working with latest version :c Or its working with you?
Can reproduce this too with aquatone_windows_amd64_1.7.0.zip
. I've also tried different chromium releases, all with the same effect
For me everything works fine with 1.7.0! Be sure to pass the path parameters in the correct way especially backslash (I think this could the reason for your command not working @shadowzoom):
type C:\Users\Bla\urls.txt | C:\Users\Bla\aquatone.exe -out C:\Users\Bla\aquatone-report\ -chrome-path C:\Users\Bla\Chromium\Application\chrome.exe
@Max-Trouble This is my command:
type .\domain_result.txt | ..\..\aquatone\aquatone.exe -out report\ -chrome-path C:\Users\fuomag9\Desktop\chromium\chrome.exe
I still get the screenshot timed out
error, while on my ubuntu vps the screenshot works perfectly
@fuomag9 Thats strange, your command looks right. Have you tried this bat script with fixed path? https://github.com/stueotue/personal-recon
any update?
hey @shadowzoom can you please describe how did you fix that problem of screenshots not storing to a file? I am having the same problem.
It's still not working on windows I tested chromium v.727690
This is because you're probably using powershell to execute the command as you can use cat file.txt | aquatone. This will work:
cd C:\PathToChromium cat "C:\file\domains.txt" | aquatone -chrome-path ".\chrome.exe" -ports large -out "C:\file\domain"
The issue is the default timeout setting.
By default -screenshot-timeout is set to 30000, changed it to 100000 when scanning one host and got success on taking a screenshot on port 443. Failed on port 80.
Tried using 1000000 and then the screenshot worked for both ports.
Used the same timeout when scanning 5 hosts it was very fast for all but one screenshot that finished though in the end.
Chrome trying to save screenshot to a relative path that doesn't exists (under path/to/chrome/screenshots next to executable).
Maybe the pull-request #243 will help you fixing the issue : the path now refering to destDir/screenshots
folder.
Same issue getting screenshot timed out
Same issue can confirm
Fixed by pull-request from @glafarge comment. Can confirm that now i can make screenshots on Windows 10.
Compile this version and add to this fork: https://github.com/vionde/aquatone-windows-screenshots/releases
Thanks, man!