Skip to content

Instantly share code, notes, and snippets.

View panzertime's full-sized avatar
💭
possibly online or even offline

RT Hatfield panzertime

💭
possibly online or even offline
View GitHub Profile
@panzertime
panzertime / SimpleHTTPServerWithUpload.py
Created April 29, 2021 15:26 — forked from UniIsland/SimpleHTTPServerWithUpload.py
Simple Python Http Server with Upload
#!/usr/bin/env python
"""Simple HTTP Server With Upload.
This module builds on BaseHTTPServer by implementing the standard GET
and HEAD requests in a fairly straightforward manner.
"""
@panzertime
panzertime / debaser.py
Created June 5, 2019 17:45 — forked from netspooky/debaser.py
Quickly create permutations of fragmented base64
import sys, base64, hexdump, textwrap
from itertools import permutations
# pip3 install textwrap hexdump
# Create file full of base64 fragments, each one on a new line
# Usage:
# python3 debaser.py <file>
def getLines():
with open(sys.argv[1],"r") as f: