Skip to content

Commit 1d9d2d6

Browse files
Update Proxychains-Nmap.py
1 parent 1d6d8f3 commit 1d9d2d6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Proxychains-Nmap.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import multiprocessing
2-
import argparse
2+
from argparse import RawTextHelpFormatter
33
import Queue
44
import threading
55
import os
@@ -13,7 +13,7 @@ def cli_parser():
1313
\n\t(1) You will find out that when routing nmap through a Proxychain connection that Timing performace is out the window.
1414
\n\t(2) This is do to the nature of a SOCKS proxy and SYN->SYN/ACK connection is already established in NMAPS Eyes.
1515
\n\t(3) It out puts random (#) of .gnmap file for each IP for parsing. (MAKE A FOLDER) :)
16-
''')
16+
''', formatter_class=RawTextHelpFormatter)
1717
parser.add_argument("-i", metavar="iplist.txt", help="Set Ip List of IPs Delimited by line")
1818
parser.add_argument('-h', '-?', '--h', '-help', '--help', action="store_true", help=argparse.SUPPRESS)
1919
args = parser.parse_args()

0 commit comments

Comments
 (0)