You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
parser.add_argument('-whois', metavar='--whois', type=str, help='Using it you can get information about a domain. '
16
+
parser.add_argument('-w', metavar='--whois', type=str, help='Using it you can get information about a domain. '
19
17
'Usage: <domain> options: <-f --file>.')
20
18
21
19
# Argument for shodan search function
22
-
23
-
parser.add_argument('-shodan', metavar='--shodan', type=str, help='Using it you can get information about the devices and services connected in a network.'
parser.add_argument('-bgrabber', metavar='--bgrabber', type=str, help='Using it you can get information about some services in the specified ports and IP.'
24
+
parser.add_argument('-b', metavar='--bgrabber', type=str, help='Using it you can get information about some services in the specified ports and IP.'
29
25
'Usage: <ip> -p <ports>(separated by \":\") options: <-file --file>.')
30
26
27
+
# Argument for flooder function
28
+
parser.add_argument('-o', metavar='--flooder', type=int, help='Using it you can do a DOS Attack (Ping of death) or generate the PCAP file for do it.'
29
+
'Usage: <number of packets (generator mode) or sends(flooder mode)> -f <filename> options: <-g --generator>.')
30
+
31
+
#Argument for fuzzer function
32
+
parser.add_argument('-z', metavar='--fuzzer', type=str, help='Using it you can do a fuzzing test and write a PCAP with results. Please read documentation for know about the PCAP format.'
33
+
'Usage:<ip> -ng <number of generations> -n <number of packets> -l <layer (UDP, TCP, ICMP)> -f <PCAP file name>')
34
+
31
35
# Optionals
36
+
parser.add_argument('-l', metavar='--layer', required='-z'insys.argvor'--fuzzer'insys.argv, help='Layer that you want to use.')
parser.add_argument('-u', action='store_true', help='Specify if you want the complete information or just the IP on shodan search.')
47
+
48
+
parser.add_argument('-r', metavar='--record', required='-d'insys.argvor'--DNS'insys.argv, type=str, help='Record of a specific domain.')
42
49
50
+
parser.add_argument('-f', metavar='--file', required='-o'insys.argvor'--flooder'insys.argv, type=str, help='Filename where you want to save the result.')
0 commit comments