Skip to content

Instantly share code, notes, and snippets.

View wellingtonlee's full-sized avatar

Wellington Lee wellingtonlee

View GitHub Profile
https://raw.githubusercontent.com/StevenBlack/hosts/master/hosts
https://reddestdream.github.io/Projects/MinimalHosts/etc/MinimalHostsBlocker/minimalhosts
https://raw.githubusercontent.com/StevenBlack/hosts/master/data/KADhosts/hosts
https://raw.githubusercontent.com/StevenBlack/hosts/master/data/add.Spam/hosts
https://v.firebog.net/hosts/static/w3kbl.txt
https://adaway.org/hosts.txt
https://v.firebog.net/hosts/AdguardDNS.txt
https://raw.githubusercontent.com/anudeepND/blacklist/master/adservers.txt
https://s3.amazonaws.com/lists.disconnect.me/simple_ad.txt
https://v.firebog.net/hosts/Easylist.txt
{
"license" : ["Copyright (C) 2020 Micah Hoffman",
"This work is licensed under the Creative Commons Attribution-ShareAlike",
"4.0 International License. To view a copy of this license, visit",
"http://creativecommons.org/licenses/by-sa/4.0/ or send a letter to",
"Creative Commons, PO Box 1866, Mountain View, CA 94042, USA."],
"authors" : ["WebBreacher","Munchko","L0r3m1p5um","lehuff","janbinx","bcoles","Sector035",
"arnydo","mccartney","salaheldinaz"],
"sites" : [
{
@wellingtonlee
wellingtonlee / boxstartertest.txt
Last active July 7, 2019 19:22
Test BoxStarter Script
Set-WindowsExplorerOptions -EnableShowHiddenFilesFoldersDrives -EnableShowProtectedOSFiles -EnableShowFileExtensions
New-Item -Path "C:\" -Name "Reversing" -ItemType "directory"
cinst ida-free explorersuite 7zip.install hxd sysinternals regshot notepadplusplus.install sublimetext3 upx wireshark googlechrome git adobereader
cinst peinsider -s .
cinst pdfstreamdumper -s .
cinst capturebat -s .
cinst visualstudio2008 -s .
# Missing packages:
@wellingtonlee
wellingtonlee / index.php
Created November 27, 2016 20:49
Vulnerable Web Page
<!DOCTYPE html>
<html>
<body>
<form action="vuln.php" method="get">
Username:<br>
<input type="text" name="username" value="">
<br>
Password:<br>
@wellingtonlee
wellingtonlee / vuln.php
Created November 27, 2016 20:47
SQL Injection Vulnerable PHP
$sql_username = "root";
$sql_password = "forensics";
$db_name = "vuln";
if (isset($_GET['username']))
{
$username = $_GET['username'];
$password = $_GET['password'];
}
@wellingtonlee
wellingtonlee / bro-conf-dl.sh
Last active November 29, 2016 17:03
Downloads Logstash Configuration Files for Bro
cd ~/stack/logstash/conf
sudo rm logstash.conf
sudo wget -N https://raw.githubusercontent.com/timmolter/logstash-dfir/master/conf_files/bro/bro-conn_log.conf
sudo wget -N https://raw.githubusercontent.com/timmolter/logstash-dfir/master/conf_files/bro/bro-dns_log.conf
sudo wget -N https://raw.githubusercontent.com/timmolter/logstash-dfir/master/conf_files/bro/bro-files_log.conf
sudo wget -N https://raw.githubusercontent.com/timmolter/logstash-dfir/master/conf_files/bro/bro-http_log.conf
sudo wget -N https://raw.githubusercontent.com/timmolter/logstash-dfir/master/conf_files/bro/bro-notice_log.conf
sudo wget -N https://raw.githubusercontent.com/timmolter/logstash-dfir/master/conf_files/bro/bro-ssh_log.conf
sudo wget -N https://raw.githubusercontent.com/timmolter/logstash-dfir/master/conf_files/bro/bro-ssl_log.conf
sudo wget -N https://raw.githubusercontent.com/timmolter/logstash-dfir/master/conf_files/bro/bro-weird_log.conf