Nytro Posted January 30, 2015 Report Posted January 30, 2015 (edited) NSCAN: FAST INTERNET WIDE SCANNERNSCAN: FAST INTERNET WIDE SCANNERNscan is a fast Network scanner optimized for internet-wide scanning purposes and inspired by Masscan and Zmap. It has it's own tiny TCP/IP stack and uses Raw sockets to send TCP SYN probes. It doesn't need to set SYN Cookies so it doesn't wastes time checking if a received packet is a result of it's own scan, that makes Nscan faster than other similar scanners.Nscan has a cool feature that allows you to extend your scan by chaining found ip:port to another scripts where they might check for vulnerabilities, exploit targets, look for Proxies/VPNs... Nscan is a free tool, but consider donating here: 1Gi5Rpz5RBEUpGknSwyRgqzk7b5bQ7Abp2Getting Nscan to WorkInstalling Nscan on Debian/Ubuntu boxes: ?[TABLE=width: 592][TR][TD=class: gutter]123[/TD][TD=class: code]$ git clone https://github.com/OffensivePython/Nscan$ cd Nscan/nscan$ chmod +x nscan.py[/TD][/TR][/TABLE]Check if Nscan executes:?[TABLE=width: 592][TR][TD=class: gutter]12345678910111213141516171819202122[/TD][TD=class: code]$ ./nscan.pyUsage: nscan.py x.x.x.x/x [options]nscan.py iface load/unload : Load/Unload Nscan alias interfacenscan.py resume filename.conf: resume previous scanOptions: -h, --help show this help message and exit -p PORTS, --port=PORTS Port(s) number (e.g. -p21-25,80) -t THREADS, --threads=THREADS Threads used to send packets (default=1) --import=IMPORTS Nscan scripts to import (e.g. --import=ssh_key:22+check_proxy:80-85,8080) -b, --banner Fetch banners -n COUNT Number of results to get -o FILE, --output=FILE Output file -c N,T, --cooldown=N,T Every N (int) packets sent sleep P (float) (Default=1000,1)[/TD][/TR][/TABLE]UsageNscan is simple to use, it works just the way you expect.If this your first run, you need to load nscan alias interface before launching a Scan?[TABLE=width: 948][TR][TD=class: gutter]123456[/TD][TD=class: code]$ ./nscan.py iface loadPress enter key to load nscan alias interface[....] Running /etc/init.d/networking restart is deprecated because it may not [warnable some interfaces ... (warning).[ ok ] Reconfiguring network interfaces...done.Nscan alias interface loaded: 10.0.2.16[/TD][/TR][/TABLE]Simple ScanTo scan your local network for port 22,80:?[TABLE=width: 592][TR][TD=class: gutter]12345678910111213[/TD][TD=class: code]$ ./nscan.py 192.168.0.0/16 -p22,80 _ __ / | / /_____________ _____ / |/ / ___/ ___/ __ `/ __ \ / /| (__ ) /__/ /_/ / / / //_/ |_/____/\___/\__,_/_/ /_/ @offensivePython 1.0URL: https://github.com/OffensivePython/NscanScanning [192.168.0.0 -> 192.169.0.0] (65536 hosts/2 ports)[MAIN] Starting the scan (Fri Jan 30 07:11:02 2015)...[/TD][/TR][/TABLE]This scans the 65536 hosts in your local networkScanning the Entire InternetScan the entire IPv4 address space for port 80?[TABLE=width: 592][TR][TD=class: gutter]1[/TD][TD=class: code]$ ./nscan.py 0.0.0.0/0 -p80[/TD][/TR][/TABLE]Multithreading the Scanuse '-t' to specify how many sending thread you want to use, it decreases the elapsed time of the scan by n times:?[TABLE=width: 592][TR][TD=class: gutter]1[/TD][TD=class: code]$ ./nscan.py 192.168.0.0/16 -p3389,5900-5910 -t3[/TD][/TR][/TABLE]This splits the 65536 hosts in 3 ranges (3 threads), every thread is going to scan 21845 hostGrabbing banners and Saving logs in a fileuse '-b' to grab banners and '-o' to save logs in a file?[TABLE=width: 592][TR][TD=class: gutter]1[/TD][TD=class: code]$ ./nscan.py 192.168.0.0/16 -p3389,5900-5910 -t3 -b -o nscan.log[/TD][/TR][/TABLE]Scanning to find N resultsIn order to stop the scan after receiving 10 results:?[TABLE=width: 592][TR][TD=class: gutter]1[/TD][TD=class: code]$ ./nscan.py 192.168.0.0/16 -p443 -b -n10[/TD][/TR][/TABLE]Importing NscriptsTo import Nscripts, use '--import' with filename (without extension '.py') and specify the port and/or range of ports?[TABLE=width: 592][TR][TD=class: gutter]1234567891011121314151617181920212223242526272829[/TD][TD=class: code]$ ./nscan.py xxx.xxx.161.152/24 -p1080 --import=proxy:1080 _ __ / | / /_____________ _____ / |/ / ___/ ___/ __ `/ __ \ / /| (__ ) /__/ /_/ / / / //_/ |_/____/\___/\__,_/_/ /_/ @offensivePython 1.0URL: https://github.com/OffensivePython/NscanScanning [xxx.xxx.161.152 -> xxx.xxx.162.0] (104 hosts/1 ports)[MAIN] Starting the scan (Fri Jan 30 09:14:14 2015)[sEND] Sent: 104 packets[RECV] Received: 7 packets[MAIN] xxx.xxx.161.152:1080[MAIN] xxx.xxx.161.173:1080[MAIN] xxx.xxx.161.195:1080[MAIN] xxx.xxx.161.196:1080[MAIN] xxx.xxx.161.194:1080[MAIN] xxx.xxx.161.239:1080[MAIN] xxx.xxx.161.193:1080[PROXY] xxx.xxx.161.152:1080 | SOCKS4[PROXY] xxx.xxx.161.195:1080 | SOCKS4[PROXY] xxx.xxx.161.196:1080 | SOCKS4[PROXY] xxx.xxx.161.194:1080 | SOCKS4[PROXY] xxx.xxx.161.193:1080 | SOCKS4[MAIN] Packets sent in 0.0 minutes[MAIN] Total elapsed time: 0.7 minutes[MAIN] Done (Fri Jan 30 09:14:58 2015)[/TD][/TR][/TABLE]Every ip has the port 1080 open, will be chained to the Nscript proxy, which checks if a SOCKS service is running behind it.This will chain every ip:port that has the port 1080,3127,3128,3129 open:?[TABLE=width: 679][TR][TD=class: gutter]1[/TD][TD=class: code]$ ./nscan.py xxx.xxx.xxx.xxx/xx -p8080,1080,3127-3129 --import=proxy:1080,3127-3129[/TD][/TR][/TABLE]P.S: Port 8080 will not be chained to the script, since it's not specifiedSuspending/Resuming a ScanIf you have a large range of hosts to scan, and your bandwidth can't finish the scan really quick, You can suspend a scan and resume it later where it's stopped.To suspend a running scan, hit [CTRL]+C, Nscan will save where it's paused in 'resume.conf'. The resume configuration file looks something like this:?[TABLE=width: 592][TR][TD=class: gutter]1234567891011[/TD][TD=class: code]$ cat resume.conf[NSCAN]hosts = [167772160, 184549376L]ports = [[80, 81]]threads = 1imports = Nonebanner = Truecount = Noneoutput = Noneindexes = [(16777216L, 4194304L, -249, 16776967L, 249)]cooldown = (1000, 1.0)[/TD][/TR][/TABLE]To resume a previous scan, simply type:?[TABLE=width: 592][TR][TD=class: gutter]1[/TD][TD=class: code]$ ./nscan.py resume resume.conf[/TD][/TR][/TABLE]Cooling Down the Transfer rateThis is a very important option to regulate Nscan with your bandwidth, If you don't choose this properly, Nscan will probably knock off your router and force it to restart since it sends more traffic than your router could handle. You can specify the number of packets that needs to be sent before Nscan should cool down and sleep for a while?[TABLE=width: 592][TR][TD=class: gutter]1[/TD][TD=class: code]$ ./nscan.py 10.0.0.0./16 -p21-25,8080 --cooldown=100,0.1[/TD][/TR][/TABLE]This tells Nscan, "for every 100 packets sent, sleep for 0.1 second(s)" P.S: The size of one packet is 54 bytesIf you have a gigabit Ethernet connection, you probably want to disable this:?[TABLE=width: 592][TR][TD=class: gutter]1[/TD][TD=class: code]$ ./nscan.py 0.0.0.0./0 -p21-25,8080 --cooldown=[ANY],0[/TD][/TR][/TABLE]Write Your Own NscriptsEvery nscan script should have a run() function, that takes two arguments:queue: queue where your script receives ip:portevent: This tells your script that Nscan is completed the scan, and waiting for your script to finsish before it exitsMake sure that your script is under '~/nscan/nscripts' folder.Every Nscript has this simple skeleton:?[TABLE=width: 657][TR][TD=class: gutter]1234567891011121314151617[/TD][TD=class: code]import Queueimport logging# Import any module you need heredef run(queue, event): while True: if queue.empty() and event.isSet(): # If the Scan is completed and the queue is empty (no more results) break else: try: ip, port = queue.get(False, TIMEOUT) # Should be non-blocking # Do something useful with IP:PORT except KeyboardInterrupt: # Scan suspended, should exit break except Queue.Empty: # No results pass[/TD][/TR][/TABLE]Use the logging module to output your results:?[TABLE=width: 592][TR][TD=class: gutter]12[/TD][TD=class: code]SCRIPT = 'MYSCRIPT'logging.info('[{}] {}:{} | {}'.format(SCRIPT, IP, PORT, 'MY RESULTS'))[/TD][/TR][/TABLE]Fork me on GithubHere is repository: https://github.com/OffensivePython/NscanContribute and Share your NscriptsTips, Requests, Improvements to make Nscan more stable and faster are always welcome.If you want to share your Nscripts with everybody, tweet me at @offensivePython #Nscan with a link of your script, and i will add it under the nscript folder hereSursa: http://www.pythonforpentesting.com/2015/01/nscan-fast-internet-wide-scanner.html Edited January 30, 2015 by Nytro Quote
devianc3 Posted January 30, 2015 Report Posted January 30, 2015 Eu l-am bagat intr-un VM cu ubuntu si nu-mi gaseste nimic, niciodata. Quote