Skip to content

Instantly share code, notes, and snippets.

View newball2814's full-sized avatar
😴
zzzzzzzzzzzzzzz

n3r0_ newball2814

😴
zzzzzzzzzzzzzzz
View GitHub Profile
@newball2814
newball2814 / brute_force_size.py
Created June 24, 2024 02:52
Brute force jpeg's width and height
import struct
import sys
def find_sof0_marker(data):
for i in range(len(data) - 9):
if data[i] == 0xFF and data[i+1] == 0xC0:
return i
return None
def modify_jpeg_dimensions(data, width, height):
@newball2814
newball2814 / custom.css
Last active April 21, 2024 02:43
VSCode logo
.editor-group-watermark > .letterpress{
background-image: url("https://raw.githubusercontent.com/Aikoyori/ProgrammingVTuberLogos/main/VSCode/VSCode.png") !important;
opacity: .95;
}
@newball2814
newball2814 / find_email.py
Created February 21, 2024 01:35
Check for existing email
#!/bin/python3
import httpx
import trio
from ghunt.helpers.gmail import is_email_registered
def gen_email():
email_list = []
for dd in range(1, 32):