diff --git a/DISCLAIMER b/DISCLAIMER index 9222945f..9f208e41 100644 --- a/DISCLAIMER +++ b/DISCLAIMER @@ -1,3 +1,4 @@ + ===================================================== T I D O S F R A M E W O R K v1.0 ===================================================== diff --git a/core/tidos_main.py b/core/tidos_main.py index 4db64eff..0113f8f4 100644 --- a/core/tidos_main.py +++ b/core/tidos_main.py @@ -82,7 +82,7 @@ def tidosmain(web): print C+' [+] Alvida, see ya!\n' sys.exit(0) - #except Exception as e: + except Exception as e: print R+' [-] Something happened! :(' print R+' [!] Error : '+str(e) diff --git a/modules/VulnLysis/MiscBugs/cloudflare.py b/modules/VulnLysis/MiscBugs/cloudflare.py index b43f4c24..3ed6c11c 100644 --- a/modules/VulnLysis/MiscBugs/cloudflare.py +++ b/modules/VulnLysis/MiscBugs/cloudflare.py @@ -19,17 +19,14 @@ from colors import * br = mechanize.Browser() -# Cookie Jar cj = cookielib.LWPCookieJar() br.set_cookiejar(cj) -# Browser options br.set_handle_equiv(True) br.set_handle_redirect(True) br.set_handle_referer(True) br.set_handle_robots(False) -# Follows refresh 0 but not hangs on refresh > 0 br.set_handle_refresh(mechanize._http.HTTPRefreshProcessor(), max_time=1) br.addheaders = [ ('User-agent', 'Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9.0.1) Gecko/2008071615 Fedora/3.0.1-1.fc9 Firefox/3.0.1')]