forked from archerysec/archerysec
-
Notifications
You must be signed in to change notification settings - Fork 1
/
PyArachniapi.py
203 lines (178 loc) · 6.33 KB
/
PyArachniapi.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
#!/usr/bin/env python
__author__ = "Anand Tiwari (http://twitter.com/anandtiwarics)"
__contributors__ = ["Anand Tiwari"]
__status__ = "Production"
__license__ = "MIT"
import requests
import json
class arachniAPI(object):
def __init__(self, host, port):
self.host = host
self.port = port
def scan(self):
"""
:return: Information about all active scans, grouped by their id.
"""
return self._request('GET', '/scans')
def scan_launch(self, data):
"""
:param data: Ex. {"url": "http://example.com"}
Default options are:
{
"url" : null,
"http" : {
"user_agent" : "Arachni/v2.0dev",
"request_timeout" : 10000,
"request_redirect_limit" : 5,
"request_concurrency" : 20,
"request_queue_size" : 100,
"request_headers" : {},
"response_max_size" : 500000,
"cookies" : {}
},
"audit" : {
"parameter_values" : true,
"exclude_vector_patterns" : [],
"include_vector_patterns" : [],
"link_templates" : []
},
"input" : {
"values" : {},
"default_values" : {
"(?i-mx:name)" : "arachni_name",
"(?i-mx:user)" : "arachni_user",
"(?i-mx:usr)" : "arachni_user",
"(?i-mx:pass)" : "5543!%arachni_secret",
"(?i-mx:txt)" : "arachni_text",
"(?i-mx:num)" : "132",
"(?i-mx:amount)" : "100",
"(?i-mx:mail)" : "[email protected]",
"(?i-mx:account)" : "12",
"(?i-mx:id)" : "1"
},
"without_defaults" : false,
"force" : false
},
"browser_cluster" : {
"wait_for_elements" : {},
"pool_size" : 6,
"job_timeout" : 25,
"worker_time_to_live" : 100,
"ignore_images" : false,
"screen_width" : 1600,
"screen_height" : 1200
},
"scope" : {
"redundant_path_patterns" : {},
"dom_depth_limit" : 5,
"exclude_path_patterns" : [],
"exclude_content_patterns" : [],
"include_path_patterns" : [],
"restrict_paths" : [],
"extend_paths" : [],
"url_rewrites" : {}
},
"session" : {},
"checks" : [],
"platforms" : [],
"plugins" : {},
"no_fingerprinting" : false,
"authorized_by" : null
}
:return: Perform a new scan
"""
return self._request('POST', '/scans', data=data)
def scan_status(self, id):
"""
Monitor scan progress
:param id:
:return:
"""
return self._request('GET', '/scans/%s' % id)
def scan_summary(self, id):
"""
Summary
:param id:
:return:
"""
return self._request('GET', '/scans/%s/summary' % id)
def scan_pause(self, id):
"""
Pause a scan
:param id:
:return:
"""
return self._request('PUT', '/scans/%s/pause' % id)
def scan_resume(self, id):
"""
:param id:
:return:
"""
return self._request('PUT', '/scans/%s/resume' % id)
def scan_xml_report(self, id):
"""
:return:
"""
return self._request('GET', '/scans/%s/report.xml' % id)
def stop_scan(self, id):
"""
Abort or shutdown a scan
:param id:
:return:
"""
return self._request('DELETE', '/scans/%s', id)
def _request(self, method, url, params=None, headers=None, data=None):
"""Common handler for all the HTTP requests."""
if not params:
params = {}
# set default headers
if not headers:
headers = {
'accept': '*/*'
}
if method == 'POST' or method == 'PUT':
headers.update({'Content-Type': 'application/json'})
try:
response = requests.request(method=method, url=self.host + ':' + self.port + url, params=params,
headers=headers, data=data)
try:
response.raise_for_status()
response_code = response.status_code
success = True if response_code // 100 == 2 else False
if response.text:
try:
data = response.json()
except ValueError:
data = response.content
else:
data = ''
return arachniResponse(success=success, response_code=response_code, data=data)
except ValueError as e:
return arachniResponse(success=False, message="JSON response could not be decoded {}.".format(e))
except requests.exceptions.HTTPError as e:
if response.status_code == 400:
return arachniResponse(success=False, response_code=400, message='Bad Request')
else:
return arachniResponse(
message='There was an error while handling the request. {}'.format(response.content),
success=False)
except Exception as e:
return arachniResponse(success=False, message='Eerror is %s' % e)
class arachniResponse(object):
"""Container for all arachni REST API response, even errors."""
def __init__(self, success, message='OK', response_code=-1, data=None):
self.message = message
self.success = success
self.response_code = response_code
self.data = data
def __str__(self):
if self.data:
return str(self.data)
else:
return self.message
def data_json(self, pintu=False):
"""Returns the data as a valid JSON String."""
if pintu:
return json.dumps(self.data, sort_keys=True, indent=4, separators=(',', ': '))
else:
return json.dumps(self.data)