- Open HexEditor.
- Search for
80 79 05 00 0F 94 C2
. - Replace it with
C6 41 05 01 B2 00 90
.
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): |