-
Notifications
You must be signed in to change notification settings - Fork 160
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Not valid URL #7
Comments
yeah that happens a lot |
do one thing, change (in scan.py) if "?" in url:
rce_func(url)
xss_func(url)
error_based_sqli_func(url)
else:
print ga.red +"\n [Warning] "+ ga.end + ga.bold+"%s"%url +ga.end + ga.red +" is not a valid URL"+ga.end
print ga.red +" [Warning] You should write a Full URL .e.g http://site.com/page.php?id=value \n"+ ga.end
exit() to if 1 == 1:
rce_func(url)
xss_func(url)
error_based_sqli_func(url) |
Hi, the problem is not about ports, it is about missing parameters in url. when this tool was created, the purpose was to quickly scan large set of urls with parameters in order to quickly identify vulnerabilities. It is not meant to be a full web application scanner that you point it to a folder or domain and starts scanning. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hello. I have specified a certain website, but with a port, e.g. https://example.org:5541/index/ and it resulted in an error specifying that this is not a valid URL.
The text was updated successfully, but these errors were encountered: