MindPatch / scant3r

ScanT3r - Module based Bug Bounty Automation Tool ( use Lotus instead github.com/bugBlocker/lotus )
https://scant3r.knas.me/
GNU General Public License v3.0
682 stars 150 forks source link

[BUG] scant3r doesn't start #16

Closed Lucas01120 closed 3 years ago

Lucas01120 commented 3 years ago

Describe the bug I have installed scant3r on different platforms (kali, windows, ubuntu..) and every time I try to run the script it does not start. It only shows me the beginning.

To Reproduce the commands I tried to run : echo "my-website.com" | ./scant3r echo "my-website.com" | python3 scant3r echo "my-website.com" | python3.9 scant3r etc..

Screenshots image

Desktop :

MindPatch commented 3 years ago

hello @Lucas01120 This is because you are using the latest version , in 0.7 version you need to select the module who you want to work

https://github.com/knassar702/scant3r/wiki/Usage

$ echo "http://testphp.vulnweb.com/search.php?test=query&searchFor=1&goButton=go" | python3 scant3r.py -m xss

[XSS] Found :> http://testphp.vulnweb.com/search.php
    [!] Method: POST
    [!] Params: test=query&searchFor=1">ScanT3r<svg/onload=confirm(/ScanT3r/)>web"&goButton=go

The new version is ready (0.7), but it needs more modules (sqli,rce,ssrf etc ..), so you can use 0.6 version for more scan (sqli xss rce ssti and some modules)

you can download it from here: https://github.com/knassar702/scant3r/releases/tag/0.6

for start

$ echo "http://testphp.vulnweb.com/search.php?test=query&searchFor=1&goButton=go" | ./scant3r.py

king regards @knassar702