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 / mx.go
Created January 6, 2023 22:14
Checking for dead mx hosts
package main
import (
"fmt"
"net"
"time"
)
func main() {
// Set the domain to check
@random-robbie
random-robbie / letter.txt
Created January 6, 2023 22:00
Chat gpt letter to say you wish to keep your rights under the working time directive.
Dear [Employer],
I am writing to inform you that I wish to exercise my rights under the Working Time Directive. Specifically, I wish to confirm that I will be taking my full entitlement of paid annual leave, as well as any other entitlements such as rest breaks and rest periods.
I understand that the Working Time Directive is a set of EU regulations that aim to protect the health and safety of workers by establishing minimum standards for working time, including the amount of paid leave to which workers are entitled. These rights have been incorporated into UK law, and I believe it is important for me to take advantage of them in order to maintain my health and well-being.
I hope that this letter will serve as sufficient notification of my intention to exercise my rights under the Working Time Directive. If you have any questions or concerns, please do not hesitate to contact me.
Sincerely,
http://ameritascorp.account.box.com
http://amplifiedoffice.account.box.com
http://arcadvisorygroup.account.box.com
http://archigate.account.box.com
http://baylor.account.box.com
http://buffalo.account.box.com
http://cisco.account.box.com
http://clemson.account.box.com
http://cotterservices.app.box.com
http://cwru.account.box.com
@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
https://10fastfingers.com/
http://soccersuck.com/
https://detran.mg.gov.br/
https://www.smart-gsm.com/
http://camvault.xyz/
https://sphere.social/hello/
https://www.sitejabber.com/
https://musiczum.com/
https://schnaeppchenfuchs.com/
https://xatonline.in/
#!/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 [*]"
cat urls.txt | while read url; do gobuster -u https://"$url" -q -e -k -w content_discovery_all.txt; done > sub_url.txt; cat sub_url.txt| cut -d ' ' -f 1 > /opt/parameth/params.txt;cd /opt/parameth;cat params.txt | while read url; do python /opt/parameth/parameth.py -u http://"$url"; done
0
1
11
12
13
14
15
16
17
2
@random-robbie
random-robbie / Dockerfile
Created August 6, 2019 14:20
Burp Browser Docker
FROM ubuntu:latest
ENV DEBIAN_FRONTEND noninteractive
RUN apt-get update -y && \
apt-get install -y \
git \
xvfb \
x11vnc \
wget \
@random-robbie
random-robbie / install_go_pi.sh
Created April 26, 2018 14:16
Install Go Lang 1.10.1 on Raspberry Pi 3
wget https://storage.googleapis.com/golang/go1.10.1.linux-armv6l.tar.gz
sudo tar -C /usr/local -xvf go1.10.1.linux-armv6l.tar.gz
cat >> ~/.bashrc << 'EOF'
export GOPATH=$HOME/go
export PATH=/usr/local/go/bin:$PATH:$GOPATH/bin
EOF
source ~/.bashrc