Skip to content

Instantly share code, notes, and snippets.

View SuperZombi's full-sized avatar
🇺🇦
Searching for bf in line 53

Super Zombi SuperZombi

🇺🇦
Searching for bf in line 53
View GitHub Profile
@SuperZombi
SuperZombi / sublime_text.md
Created January 15, 2025 15:25
sublime_text
  1. Open HexEditor.
  2. Search for 80 79 05 00 0F 94 C2.
  3. Replace it with C6 41 05 01 B2 00 90.
@SuperZombi
SuperZombi / bulk_email.py
Last active December 31, 2024 17:52
Sending emails
# https://myaccount.google.com/u/0/lesssecureapps
import time
import smtplib
from email.mime.multipart import MIMEMultipart
from email.mime.text import MIMEText
sender_email = '[email protected]'
sender_password = '123456789'
recipients = [
@SuperZombi
SuperZombi / fast_server.py
Last active October 4, 2024 10:24
Flask fast server
import os
from flask import Flask, send_from_directory, redirect, abort
app = Flask(__name__)
@app.route('/')
@app.route('/<path:filepath>')
def data(filepath="index"):
p = os.path.join("data", filepath)
if os.path.exists(p):
if os.path.isfile(p):