-
Notifications
You must be signed in to change notification settings - Fork 3
/
Options.conf
83 lines (83 loc) · 2.55 KB
/
Options.conf
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
[
{
"option" : "http",
"help" : "Scan for open HTTP ports, and get the titles.",
"commands" : {
"network": "IP range to scan",
"port": "Port to Scan -> 80,443,8080",
"verbose": "Show verbose output -> true",
"filename": "Set filename Full path"
}
},
{
"option" : "telnet",
"help" : "Scan for open telnet instances, and check if they are password protected.",
"commands" : {
"network": "IP range to scan",
"port": "Port to Scan -> 23",
"verbose": "Show verbose output -> true",
"filename": "Set filename Full path",
"bruteforce": "Set bruteforce -> true",
"userFile" : "Set username file -> /files/users.txt",
"passFile" : "Set passwords file ->/files/pass.txt"
}
},
{
"option" : "mysql",
"help" : "Scan for open MySQL servers, and try to log in with the default credentials.",
"commands" : {
"network": "IP range to scan",
"port": "Port to Scan -> 3306,3307",
"verbose": "Show verbose output -> true",
"filename": "Set filename Full path",
"bruteforce": "Set bruteforce -> false"
}
},
{
"option" : "ssh",
"help" : "Scan for open SSH ports.",
"commands" : {
"network": "IP range to scan",
"port": "Port to Scan -> 22",
"verbose": "Show verbose output -> true",
"filename": "Set filename Full path",
"bruteforce": "Set bruteforce -> false",
"userFile" : "Set username file -> /files/users.txt",
"passFile" : "Set passwords file ->/files/pass.txt"
}
},
{
"option" : "ftp",
"help" : "Scan for open FTP ports.",
"commands" : {
"network": "IP range to scan",
"port": "Port to Scan -> 21",
"verbose": "Show verbose output -> true",
"filename": "Set filename Full path",
"bruteforce": "Set bruteforce -> true",
"userFile" : "Set username file -> /files/users.txt",
"passFile" : "Set passwords file ->/files/pass.txt"
}
},
{
"option" : "printer",
"help" : "Scan for open printer ports and websites.",
"commands" : {
"network": "IP range to scan",
"port": "Port to Scan -> 515,9100",
"verbose": "Show verbose output -> false",
"filename": "Set filename Full path"
}
},
{
"option" : "fullscan",
"help" : "Scan custom ports.",
"commands" : {
"network": "IP range to scan",
"port" : "Port to Scan -> ",
"verbose": "Show verbose output -> true",
"filename": "Set filename Full path",
"bruteforce": "Set bruteforce -> false"
}
}
]