- Open HexEditor.
- Search for
74 06 3B
- Change
74
→EB
- Change
- Search for
89 F8 48 81 C4 38 02
- Change
89 F8
→33 C0
- Change
- Search for
E8 F4 7F 10 00
- Change all by
90 90 90 90 90
- Change all by
- Search for
41 57 41 56 41 54 56 57 53 48 83 EC 38 4C 89 CE 4C 89 C7 48 89 D3 49 89 CE 4C
.- Change
41 57
→90 90
- Change
- Search from
0x00046B80
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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 = [ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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): |