Skip to content

Instantly share code, notes, and snippets.

View vaaas's full-sized avatar
🤔
TFW no js

vas vaaas

🤔
TFW no js
View GitHub Profile
@vaaas
vaaas / simple-auth-http-server
Last active April 12, 2022 07:04 — forked from fxsjy/SimpleAuthServer.py
simple-auth-http-server: simple http server with basic authentication (works with python3!)
#!/usr/bin/env python3
import http.server
from http.server import SimpleHTTPRequestHandler
import sys
import base64
key = ''
class AuthHandler(SimpleHTTPRequestHandler):