File tree Expand file tree Collapse file tree 2 files changed +22
-8
lines changed Expand file tree Collapse file tree 2 files changed +22
-8
lines changed Original file line number Diff line number Diff line change 16
16
from serbugsban import *
17
17
from lfi import *
18
18
from rfi import *
19
+ from ldap import *
19
20
from rce import *
20
21
from csrf import *
21
22
from vulnban1 import *
@@ -78,24 +79,30 @@ def serbugs(web):
78
79
serbugs (web )
79
80
80
81
elif v == '8' :
82
+ print ' Type Selected : LDAP Injection'
83
+ ldap (web )
84
+ time .sleep (1 )
85
+ serbugs (web )
86
+
87
+ elif v == '9' :
81
88
print ' Type Selected : HTTP Response Splitting'
82
89
crlf (web )
83
90
time .sleep (1 )
84
91
serbugs (web )
85
92
86
- elif v == '9 ' :
93
+ elif v == '10 ' :
87
94
print ' Type Selected : Host Header Injection'
88
95
hhi (web )
89
96
time .sleep (1 )
90
97
serbugs (web )
91
98
92
- elif v == '10 ' :
99
+ elif v == '11 ' :
93
100
print ' Type Selected : Shellshock'
94
101
shellshock (web )
95
102
time .sleep (1 )
96
103
serbugs (web )
97
104
98
- elif v == '11 ' :
105
+ elif v == '12 ' :
99
106
print ' Type Selected : URL Validation'
100
107
redirect (web )
101
108
time .sleep (1 )
@@ -140,6 +147,11 @@ def serbugs(web):
140
147
print ' [!] Module Completed --> SQLi\n '
141
148
time .sleep (1 )
142
149
150
+ print ' [*] Firing up module --> LDAPi'
151
+ ldap (web )
152
+ print ' [!] Module Completed --> LDAPi\n '
153
+ time .sleep (1 )
154
+
143
155
print ' [*] Firing up module --> CRLF'
144
156
crlf (web )
145
157
print ' [!] Module Completed --> CRLF\n '
Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ def serbugsban():
21
21
22
22
\033 [1;34m
23
23
______________________________________________________
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|
25
25
| ---------------------------------------------------- |
26
26
\033 [1;36m | |
27
27
| \033 [1;33mTIDoS has detected that you want to hunt for bugs! \033 [1;36m |
@@ -48,13 +48,15 @@ def serbugsban():
48
48
# time.sleep(0.1)
49
49
print B + ' [7]' + C + ' SQL Injection '
50
50
time .sleep (0.1 )
51
- print B + ' [8]' + C + ' HTTP Response Splitting '
51
+ print B + ' [8]' + C + ' LDAP Injection '
52
52
time .sleep (0.1 )
53
- print B + ' [9]' + C + ' Host Header Injection '
53
+ print B + ' [9]' + C + ' HTTP Response Splitting '
54
54
time .sleep (0.1 )
55
- print B + ' [10]' + C + ' Shellshock Vulnerabilities '
55
+ print B + ' [10]' + C + ' Host Header Injection '
56
56
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 '
58
60
time .sleep (0.1 )
59
61
print B + ' [A]' + C + ' Load all the modules 1 by 1\n '
60
62
time .sleep (0.1 )
You can’t perform that action at this time.
0 commit comments