0xInfection / TIDoS-Framework

The Offensive Manual Web Application Penetration Testing Framework.
GNU General Public License v3.0
1.76k stars 388 forks source link

False [-] Site seems to be down... #109

Closed ghost closed 3 years ago

ghost commented 4 years ago

error

If there is /index.php' orlogin.php` or extension after .domain it will give false site down to. Error to this is in line 40 in inputin.py, to avoid this you can replace

if str(web).endswith('/'):
            web = po[:-1]
            po = po[:-1]

with

if "/" in po:
            po = po.split("/")[0]
VainlyStrain commented 3 years ago

Added to the 2.0 checklist, thanks for reporting!

VainlyStrain commented 3 years ago

This should be fixed in the latest release. I am closing this issue now. If you encounter more problems, be sure to let me know, and I'll reopen it. Greetings!