-
-
Notifications
You must be signed in to change notification settings - Fork 343
/
vulnx.py
174 lines (146 loc) · 5.21 KB
/
vulnx.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
#!/usr/bin/env python
from __future__ import (absolute_import, division, print_function)
"""
The vulnx main part.
Author: anouarbensaad
Desc : CMS-Detector and Vulnerability Scanner & exploiter
Copyright (c)
See the file 'LICENSE' for copying permission
"""
from modules.detector import CMS
from modules.dorks.engine import Dork
from modules.dorks.helpers import DorkManual
from modules.cli.cli import CLI
from common.colors import red, green, bg, G, R, W, Y, G, good, bad, run, info, end, que, bannerblue2
from common.requestUp import random_UserAgent
from common.uriParser import parsing_url as hostd
from common.banner import banner
import sys
import argparse
import re
import os
import socket
import common
import warnings
import signal
import requests
HEADERS = {
'User-Agent': random_UserAgent(),
'Content-type' : '*/*',
'Accept': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8',
'Accept-Language': 'en-US,en;q=0.5',
'Connection': 'keep-alive',
}
warnings.filterwarnings(
action="ignore", message=".*was already imported", category=UserWarning)
warnings.filterwarnings(action="ignore", category=DeprecationWarning)
# cleaning screen
banner()
def parser_error(errmsg):
print("Usage: python " + sys.argv[0] + " [Options] use -h for help")
print(R + "Error: " + errmsg + W)
sys.exit()
def parse_args():
parser = argparse.ArgumentParser(
epilog='\tExample: \r\npython ' + sys.argv[0] + " -u google.com")
parser.error = parser_error
parser._optionals.title = "\nOPTIONS"
parser.add_argument('-u', '--url', help="url target to scan")
parser.add_argument(
'-D', '--dorks', help='search webs with dorks', dest='dorks', type=str)
parser.add_argument(
'-o', '--output', help='specify output directory', required=False)
parser.add_argument('-n', '--number-pages',
help='search dorks number page limit', dest='numberpage', type=int)
parser.add_argument('-i', '--input', help='specify input file of domains to scan', dest='input_file', required=False)
parser.add_argument('-l', '--dork-list', help='list names of dorks exploits', dest='dorkslist',
choices=['wordpress', 'prestashop', 'joomla', 'lokomedia', 'drupal', 'all'])
parser.add_argument('-p', '--ports', help='ports to scan',
dest='scanports', type=int)
# Switches
parser.add_argument('-e', '--exploit', help='searching vulnerability & run exploits',
dest='exploit', action='store_true')
parser.add_argument('--it', help='interactive mode.',
dest='cli', action='store_true')
parser.add_argument('--cms', help='search cms info[themes,plugins,user,version..]',
dest='cms', action='store_true')
parser.add_argument('-w', '--web-info', help='web informations gathering',
dest='webinfo', action='store_true')
parser.add_argument('-d', '--domain-info', help='subdomains informations gathering',
dest='subdomains', action='store_true')
parser.add_argument('--dns', help='dns informations gatherings',
dest='dnsdump', action='store_true')
return parser.parse_args()
# args declaration
args = parse_args()
# url arg
url = args.url
# input_file
input_file = args.input_file
# Disable SSL related warnings
warnings.filterwarnings('ignore')
def detection():
instance = CMS(
url,
headers=HEADERS,
exploit=args.exploit,
domain=args.subdomains,
webinfo=args.webinfo,
serveros=True,
cmsinfo=args.cms,
dnsdump=args.dnsdump,
port=args.scanports
)
instance.instanciate()
def dork_engine():
if args.dorks:
DEngine = Dork(
exploit=args.dorks,
headers=HEADERS,
pages=(args.numberpage or 1)
)
DEngine.search()
def dorks_manual():
if args.dorkslist:
DManual = DorkManual(
select=args.dorkslist
)
DManual.list()
def interactive_cli():
if args.cli:
cli = CLI(headers=HEADERS)
cli.general("")
def signal_handler(signal, frame):
print("%s(ID: {}) Cleaning up...\n Exiting...".format(signal) % (W))
exit(0)
signal.signal(signal.SIGINT, signal_handler)
if __name__ == "__main__":
dork_engine()
dorks_manual()
interactive_cli()
if url:
root = url
if root.startswith('http://'):
url = root
elif root.startswith('https://'):
url = root
# url=root.replace('https://','http://')
else:
url = 'https://'+root
print(url)
detection()
if input_file:
with open(input_file,'r') as urls:
u_array = [url.strip('\n') for url in urls]
try:
for url in u_array:
root = url
#url condition entrypoint
if root.startswith('http'):
url = root
else:
url = 'https://'+root
detection()
urls.close()
except Exception as error:
print('error : '+error)