Skip to content

Instantly share code, notes, and snippets.

View LiamRandall's full-sized avatar

Liam Randall LiamRandall

View GitHub Profile
@Neo23x0
Neo23x0 / Base64_CheatSheet.md
Last active May 23, 2024 08:25
Learning Aid - Top Base64 Encodings Table

Base64 Patterns - Learning Aid

Base64 Code Mnemonic Aid Decoded* Description
JAB 🗣 Jabber $. Variable declaration (UTF-16), e.g. JABlAG4AdgA for $env:
TVq 📺 Television MZ MZ header
SUVY 🚙 SUV IEX PowerShell Invoke Expression
SQBFAF 🐣 Squab favorite I.E. PowerShell Invoke Expression (UTF-16)
SQBuAH 🐣 Squab uahhh I.n. PowerShell Invoke string (UTF-16) e.g. Invoke-Mimikatz
PAA 💪 "Pah!" <. Often used by Emotet (UTF-16)
@glynnforrest
glynnforrest / Dockerfile
Created October 16, 2016 19:36
Http hello world docker container
FROM elyase/staticpython
COPY ./serve.py /
EXPOSE 8080
ENTRYPOINT ["/serve.py"]
@ipl31
ipl31 / poc.py
Created November 5, 2012 19:42
poc.py
#!/usr/bin/env python
import netaddr
from fabric import api
from fabric.network import disconnect_all
USER = "ubuntu"
PASS = "ubuntu"
NETWORK = "172.16.0.0/12"
CMD = "uptime"