Skip to content

Instantly share code, notes, and snippets.

View RaDeleon's full-sized avatar
🥊
Focusing

Angelo De Leon RaDeleon

🥊
Focusing
View GitHub Profile
@RaDeleon
RaDeleon / 0_reuse_code.js
Created March 22, 2016 02:34
Here are some things you can do with Gists in GistBox.
// Use Gists to store code you would like to remember later on
console.log(window); // log the "window" object to the console
@RaDeleon
RaDeleon / getBlockLists.sh
Last active November 9, 2017 03:12 — forked from johntyree/getBlockLists.sh
For use with Transmission for Mac OSX torrent app. Make one large blocklist from the bluetack lists on iblocklist.com. Keeps updating the blocklist to block ips known to serve malware infected torrent files.
#!/usr/bin/env sh
# Download lists, unpack and filter, write to stdout
curl -s https://www.iblocklist.com/lists.php \
| sed -n "s/.*value='\(http:.*=bt_.*\)'.*/\1/p" \
| xargs wget -O - \
| gunzip \
| egrep -v '^#'
@RaDeleon
RaDeleon / lild4d-kali-2.0-auto-up-dateload.sh
Last active October 28, 2019 19:33
Kali Linux 2.0 Auto Update and Upgrade script to apt-get update and upgrade in one shot and run apt-autoclean.
#!/bin/bash
clear
echo -e "K@l1 L1N4X upd4t3 $cr1pt"
echo "Press ENTER to continue, CTRL+C to abort."
read input
echo -e "\e[1;36m[+] Updating Kali. Please wait.\e[0m"
apt-get update -y > /dev/null && apt-get upgrade -y > /dev/null && apt-get dist-upgrade -y > /dev/null