Skip to content

Instantly share code, notes, and snippets.

View bryanseah234's full-sized avatar
🍤
You can't spell 'seah' without 'ah'

b bryanseah234

🍤
You can't spell 'seah' without 'ah'
View GitHub Profile
@bryanseah234
bryanseah234 / email.py
Created October 26, 2021 08:47
email-client-code (code to send an email using SMTP from Gmail)
import os
import datetime
from datetime import datetime
import smtplib, ssl
from email import encoders
from email.mime.text import MIMEText
from email.mime.base import MIMEBase
from email.mime.multipart import MIMEMultipart
try:
@bryanseah234
bryanseah234 / dino.js
Created October 26, 2021 08:46
chrome-dino-hack (code to auto run chrome dinosaur game)
/// to start:
var original = Runner.prototype.gameOver
Runner.prototype.gameOver = function(){}
/// to stop:
Runner.prototype.gameOver = original
/// to set speed:
Runner.instance_.setSpeed(1000)
@bryanseah234
bryanseah234 / bruteforce.py
Created October 26, 2021 08:44
attack-password-code (code to crack passwords for zip files)
import zipfile
charlist = 'abcdefghijklmnopqrstuvwxyz0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ' #ALPHANUMERICAL ONLY (CAN ADD MORE)
complete = []
for current in range(4): #MAX PASSWORD LENGTH = 4
a = [i for i in charlist]
for x in range(current):
a = [y + i for i in charlist for y in a]
complete = complete + a