Programming
Programming
Port scanner in python
import socket as sk
for port in range (1, 1024):
try:
s=sk. socket (sk. AF _ INET, sk. SOCK_ STREAM)
s.settimeout(1000)
s. connect ( (' 127. 0. 0. 1 ' , port) )
print '%d:OPEN' % (port)
s.close
except: continueGenerating base64 words in Python
#!/usr/bin/pjthon
import base64
filel=open("pwd.lst","r")
file2=open("b64pwds.lst","w")
for line in file1:
clear= "administrator:"+ str.strip(line)
new= base64.encodestring(clear)
file2.write(new)Convert Windows registry from hex to ascii in Python
Reading all folder files and searching with regex in Python
Building an encrypted web server with ssl in Python
Web server with Python
Sending email in python (* sendmail must be installed)
Get the file from http and run it
Receiving the banner in python (* the range of ip and ports and its delay should be specified)
Scrapy command
Send icmp message on ipv6
udp package and payload
Ntp fuzzer operation
Send message http
Perl language
Port scanner
regex rules
nested extract with bash
Some examples of commonly hooked Windows API functions
Last updated