Skip to content

Instantly share code, notes, and snippets.

View ylt's full-sized avatar
🕳️
2>&1 > /dev/null

Joe Carter ylt

🕳️
2>&1 > /dev/null
View GitHub Profile
@ylt
ylt / get-rcs.sh
Last active February 24, 2016 02:44 — forked from goto-bus-stop/get-rcs.sh
RCS deobf
#!/bin/sh
mkdir rcs/$(date '+%m%d')
curl https://code.radiant.dj/rs.min.js -o rcs/$(date '+%m%d')/rs.min.js
node unobfuscate rcs/$(date '+%m%d')/rs.min.js
@ylt
ylt / sapaths.py
Created October 2, 2016 23:14 — forked from l1am9111/sapaths.py
Python GTA: SA Path Reader
from struct import unpack
from cStringIO import StringIO
class SAPath():
def __init__(self, node):
self.path = StringIO(open(node, "rb").read())
self.header = {}
self.pathnodes = []
self.navinodes = []
@ylt
ylt / add_cloudflare_ips.sh
Created January 10, 2018 15:24 — forked from dduvnjak/add_cloudflare_ips.sh
Add CloudFlare IP addresses to an EC2 Security Group using awscli
# first we download the list of IP ranges from CloudFlare
wget https://www.cloudflare.com/ips-v4
# iterate over the lines in the downloaded file
# make sure to set `--group-id` and `--port`; more details at http://docs.aws.amazon.com/cli/latest/reference/ec2/authorize-security-group-ingress.html
while read p; do aws ec2 authorize-security-group-ingress --group-id sg-e0000000 --protocol tcp --port 80 --cidr $p; done< ips-v4