Skip to content

Commit fc32117

Browse files
committed
Improvements to recursion modules
1 parent 1577d50 commit fc32117

File tree

2 files changed

+22
-8
lines changed

2 files changed

+22
-8
lines changed

core/serbugs.py

Lines changed: 15 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616
from serbugsban import *
1717
from lfi import *
1818
from rfi import *
19+
from ldap import *
1920
from rce import *
2021
from csrf import *
2122
from vulnban1 import *
@@ -78,24 +79,30 @@ def serbugs(web):
7879
serbugs(web)
7980

8081
elif v == '8':
82+
print ' Type Selected : LDAP Injection'
83+
ldap(web)
84+
time.sleep(1)
85+
serbugs(web)
86+
87+
elif v == '9':
8188
print ' Type Selected : HTTP Response Splitting'
8289
crlf(web)
8390
time.sleep(1)
8491
serbugs(web)
8592

86-
elif v == '9':
93+
elif v == '10':
8794
print ' Type Selected : Host Header Injection'
8895
hhi(web)
8996
time.sleep(1)
9097
serbugs(web)
9198

92-
elif v == '10':
99+
elif v == '11':
93100
print ' Type Selected : Shellshock'
94101
shellshock(web)
95102
time.sleep(1)
96103
serbugs(web)
97104

98-
elif v == '11':
105+
elif v == '12':
99106
print ' Type Selected : URL Validation'
100107
redirect(web)
101108
time.sleep(1)
@@ -140,6 +147,11 @@ def serbugs(web):
140147
print ' [!] Module Completed --> SQLi\n'
141148
time.sleep(1)
142149

150+
print ' [*] Firing up module --> LDAPi'
151+
ldap(web)
152+
print ' [!] Module Completed --> LDAPi\n'
153+
time.sleep(1)
154+
143155
print ' [*] Firing up module --> CRLF'
144156
crlf(web)
145157
print ' [!] Module Completed --> CRLF\n'

core/serbugsban.py

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ def serbugsban():
2121
2222
\033[1;34m
2323
______________________________________________________
24-
| \033[1;37mTIDoS Dialog (v2.1.0) \033[1;33m[-] [口] [×] \033[1;34m|
24+
| \033[1;37mTIDoS Dialog \033[1;33m[-] [口] [×] \033[1;34m|
2525
| ---------------------------------------------------- |
2626
\033[1;36m | |
2727
| \033[1;33mTIDoS has detected that you want to hunt for bugs! \033[1;36m |
@@ -48,13 +48,15 @@ def serbugsban():
4848
# time.sleep(0.1)
4949
print B+' [7]'+C+' SQL Injection '
5050
time.sleep(0.1)
51-
print B+' [8]'+C+' HTTP Response Splitting '
51+
print B+' [8]'+C+' LDAP Injection '
5252
time.sleep(0.1)
53-
print B+' [9]'+C+' Host Header Injection '
53+
print B+' [9]'+C+' HTTP Response Splitting '
5454
time.sleep(0.1)
55-
print B+' [10]'+C+' Shellshock Vulnerabilities'
55+
print B+' [10]'+C+' Host Header Injection '
5656
time.sleep(0.1)
57-
print B+' [11]'+C+' Unvalidated Redirects\n'
57+
print B+' [11]'+C+' Shellshock Vulnerabilities'
58+
time.sleep(0.1)
59+
print B+' [12]'+C+' Unvalidated URL Redirects\n'
5860
time.sleep(0.1)
5961
print B+' [A]'+C+' Load all the modules 1 by 1\n'
6062
time.sleep(0.1)

0 commit comments

Comments
 (0)