-
Notifications
You must be signed in to change notification settings - Fork 1
/
wp_ninja.py
225 lines (191 loc) · 5.79 KB
/
wp_ninja.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
import bane, sys, requests
if sys.version_info < (3, 0):
from urlparse import urlparse
else:
from urllib.parse import urlparse
msg = """
Usage: python wp_ninja.py -u http://www.example.com
Options:
-h , --help : show help message
-u , --url : target URL
-t , --timeout : set timeout (default: 15 seconds)
-x , --xmlrcp-path : set xmlrpc's path (default: /xmlrpc.php )
-ua , --user-agent : set User-Agent
-c , --cookie : set Cookies
-p , --proxy : set HTTP Proxy
-d , --disable : disable any feature:
general : themes and plugins scan
enumeration : users enumeration
users : retrieving users from REST-API
xmlrpc : retrieving xmlrpc methods (xmlrpc)
pingback : pingback exploit check (xmlrpc)
bruteforce : bruteforce exploit (xmlrpc)
multibruteforce : multi-bruteforce exploit (xmlrpc)
"""
print(
"""
__ ______ _ _ _ _
\ \ / / _ \ | \ | (_)_ __ (_) __ _
\ \ /\ / /| |_) |____| \| | | '_ \ | |/ _` |
\ V V / | __/_____| |\ | | | | || | (_| |
\_/\_/ |_| |_| \_|_|_| |_|/ |\__,_|
|__/
Version: 1.0.0
Author: Ala Bouali
Github: https://github.com/AlaBouali/wp_ninja
"""
)
args = sys.argv
if len(args) <= 2:
print(msg)
sys.exit()
domain = ""
url = ""
user_agent = None
cookie = None
timeout = 15
xmlrcp_path = "/xmlrpc.php"
proxy = None
general_scan = True
enumeration = True
rest_api = True
xmlrpc_methods = True
pingback_method = True
bruteforce = True
multi_bruteforce = True
i = 0
while i < (len(args)):
x = args[i]
if (x == "-h") or (x == "--help"):
print(msg)
sys.exit()
if (x == "-d") or (x == "--disable"):
disabled = args[i + 1]
if disabled == "general":
general_scan = False
if disabled == "enumeration":
enumeration = False
if disabled == "users":
rest_api = False
if disabled == "xmlrpc":
xmlrpc_methods = False
if disabled == "pingback":
pingback_method = False
if disabled == "bruteforce":
bruteforce = False
if disabled == "multibruteforce":
multi_bruteforce = False
i += 1
if (x == "-u") or (x == "--url"):
url = args[i + 1]
i += 1
if (x == "-ua") or (x == "--user-agent"):
user_agent = args[i + 1]
i += 1
if (x == "-c") or (x == "--cookie"):
cookie = args[i + 1]
i += 1
if (x == "-t") or (x == "--timeout"):
timeout = args[i + 1]
i += 1
if (x == "-p") or (x == "--proxy"):
proxy = args[i + 1]
i += 1
if (x == "-x") or (x == "--xmlrcp-path"):
xmlrcp_path = int(args[i + 1])
i += 1
i += 1
print("[~] Testing connection to the target...")
try:
requests.get(url)
print("[+] Connection established")
except Exception as ex:
print("[-] {}".format(ex))
sys.exit()
# get the domain
domain = urlparse(url).netloc
# starting with themes and plugins scan
if general_scan == True:
bane.wp_scan(
domain, proxy=proxy, user_agent=user_agent, cookie=cookie, timeout=timeout
)
# getting all xml-rpc's methods
if xmlrpc_methods == True:
print("\n\n")
print("[~] Getting available xml-rpc methods..")
methods = bane.wp_xmlrpc_methods(
url,
path=xmlrcp_path,
proxy=proxy,
user_agent=user_agent,
cookie=cookie,
timeout=timeout,
)
print("\n\n")
for x in methods:
print("[*] {}".format(x))
print("\n\n")
# check if bruteforce is available
if bruteforce == True:
if (
bane.wp_xmlrpc_bruteforce(
url,
path=xmlrcp_path,
proxy=proxy,
user_agent=user_agent,
cookie=cookie,
timeout=timeout,
)
== True
):
print("[+] Target vulnerable to xml-rpc bruteforce")
else:
print("[-] Target not vulnerable to xml-rpc bruteforce")
if multi_bruteforce == True:
if (
bane.wp_xmlrpc_mass_bruteforce(
url,
path=xmlrcp_path,
proxy=proxy,
user_agent=user_agent,
cookie=cookie,
timeout=timeout,
)
== True
):
print("[+] Target vulnerable to xml-rpc multi-bruteforce")
else:
print("[-] Target not vulnerable to xml-rpc multi-bruteforce")
# pingback exploit
if pingback_method == True:
if (
bane.wp_xmlrpc_pingback(
url, proxy=proxy, user_agent=user_agent, cookie=cookie, timeout=timeout
)
== True
):
print("[+] Target vulnerable to xml-rpc pingback")
else:
print("[-] Target not vulnerable to xml-rpc pingback")
# now the last thing is getting all users
# enumerating users
if enumeration == True:
print("\n\n")
print("[~] Enumerating users..")
bane.wp_users_enumeration(
url, proxy=proxy, user_agent=user_agent, cookie=cookie, timeout=timeout
)
print("\n\n")
if rest_api == True:
print("[~] Retrieving users from REST-API..")
print("\n\n")
users_list = bane.wp_users(
url, proxy=proxy, user_agent=user_agent, cookie=cookie, timeout=timeout
)
if users_list:
for x in users_list:
print(
"[+] ID: {} | NAME: {} | SLUG: {}".format(
x["id"], x["name"].encode("utf-8"), x["slug"].encode("utf-8")
)
)