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 August 24, 2025 04:52
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 / ffmpeg-install.sh
Created October 22, 2016 07:13
Raspberry Pi 2 FFMPEG install
#!/bin/bash
# Compile and install (or install via Apt) FFmpeg Codecs
# Compile and install FFmpeg suite
echo "Begining Installation of FFmpeg Suite"
#Update APT Repository
echo "Updating the APT repository information"
apt-get update
@random-robbie
random-robbie / default
Created November 1, 2016 16:58
stalker
# You may add here your
# server {
# ...
# }
# statements for each of your virtual hosts to this file
##
# You should look at the following URL's in order to grasp a solid understanding
# of Nginx configuration files in order to fully unleash the power of Nginx.
# http://wiki.nginx.org/Pitfalls
<VirtualHost *:2095>
ServerAdmin webmaster@localhost
DocumentRoot /var/www/html
<Directory /var/www//html/stalker_portal/>
Options -Indexes -MultiViews
AllowOverride ALL
Require all granted
</Directory>
ErrorLog ${APACHE_LOG_DIR}/error.log
CustomLog ${APACHE_LOG_DIR}/access.log combined
@random-robbie
random-robbie / uktvnow
Created November 10, 2016 15:36
uktvnow
package com.livetv.android.apps.uktvnow.utils;
import javax.crypto.spec.IvParameterSpec;
import javax.crypto.spec.SecretKeySpec;
import javax.crypto.Cipher;
import java.security.NoSuchAlgorithmException;
import javax.crypto.NoSuchPaddingException;
import java.security.Key;
import java.security.spec.AlgorithmParameterSpec;
@random-robbie
random-robbie / vb.py
Created November 17, 2016 12:52
CVE-2016-6483
#!/usr/bin/python
intro = """
vBulletin <= 5.2.2 SSRF PoC Exploit (portscan / zabbix agent RCE)
This PoC exploits an SSRF vulnerability in vBulletin to scan internal services
installed on the web server that is hosting the vBulletin forum.
After the scan, the exploit also checks for a Zabbix Agent (10050) port and
gives an option to execute a reverse shell (Remote Commands) that will connect
back to the attacker's host on port 8080 by default.
Coded by:
#!/bin/bash
#Script by OliverK
#Downloads _every_ wordlist in the packet storm security site.
#April 18th, 2011
# Updated Oct , 2th, 2012
mkdir common
cd common
wget http://dl.packetstormsecurity.net/Crackers/wordlists/common-4
wget http://dl.packetstormsecurity.net/Crackers/wordlists/common-3
wget http://dl.packetstormsecurity.net/Crackers/wordlists/common-2
@random-robbie
random-robbie / torblock.sh
Created November 24, 2016 08:41
block tor exit nodes hitting your website
# create a new set for individual IP addresses
ipset -N tor iphash
# get a list of Tor exit nodes that can access $YOUR_IP, skip the comments and read line by line
wget -q https://check.torproject.org/cgi-bin/TorBulkExitList.py?ip=$YOUR_IP -O -|sed '/^#/d' |while read IP
do
# add each IP address to the new set, silencing the warnings for IPs that have already been added
ipset -q -A tor $IP
done
# filter our new set in iptables
iptables -A INPUT -m set --match-set tor src -j DROP
@random-robbie
random-robbie / blocktor.sh
Last active December 9, 2016 11:47
torblock via iptables
# # # # # # # # # # # # #
#Authors: Blake Self & #
# Shawn Burrel #
# #
# Modified by LukeBob #
# # # # # # # # # # # # #
#!/bin/bash
#Block tor exit nodes
@random-robbie
random-robbie / blockrussia.sh
Last active November 29, 2016 20:09
Block Russia via iptables
#!/bin/bash
WORKDIR="/root"
#######################################
cd $WORKDIR
wget --no-check-certificate -c --output-document=iptables-blocklist.txt https://gist.githubusercontent.com/txt3rob/c122b29639c2507079e0ed2a797c75da/raw/russia.txt
if [ -f iptables-blocklist.txt ]; then
iptables -F
BLOCKDB="iptables-blocklist.txt"
IPS=$(grep -Ev "^#" $BLOCKDB)
for i in $IPS