This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
~ ⮀ sudo nmap -sT -T Insane -P0 -A 192.168.1.2 192.168.1.66 192.168.1.79 192.168.1.80 192.168.1.117 192.168.1.213 192.168.1.214 192.168.1.254 -v -v --privileged | |
Starting Nmap 6.25 ( http://nmap.org ) at 2013-05-27 14:58 EDT | |
NSE: Loaded 106 scripts for scanning. | |
NSE: Script Pre-scanning. | |
NSE: Starting runlevel 1 (of 2) scan. | |
NSE: Starting runlevel 2 (of 2) scan. | |
Initiating Parallel DNS resolution of 8 hosts. at 14:58 | |
Completed Parallel DNS resolution of 8 hosts. at 14:58, 0.74s elapsed | |
Initiating Connect Scan at 14:58 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Leading Tabs, align with tabs | |
print "Hello" # Comment | |
print "Hello, world" # Comment | |
# Leading tabs, align with space | |
print "Hello" # Comment | |
print "Hello, world" # Comment |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/python | |
import md5, sys | |
h = '\x8b\x07Y\x98!\n\x1a\xc8\x86\xe8G\x0f\x9a\x8b[\xc0'.encode('hex') | |
def chk(s): | |
print s | |
if (md5.new(s).hexdigest() == h): | |
sys.exit() |
NewerOlder