Skip to content

Instantly share code, notes, and snippets.

View jthack's full-sized avatar
😊
Hackin'

Joseph Thacker jthack

😊
Hackin'
View GitHub Profile
@jthack
jthack / d2vsd2r.md
Last active January 14, 2025 16:38
d2vsd2r.md

Differences Between Diablo II and Diablo II: Resurrected

This markdown outlines the key differences between Diablo II (LOD) and Diablo II: Resurrected (D2R), categorized as presented in the original audio from MrLlamaSC's videos here:

Game

  1. Graphics Update: Resolution increased to 1920x1080, resulting in increased teleport range and wider field of vision. While some item art is subjectively less appealing, the overall visual improvement is significant.
@jthack
jthack / info_disc_silver_bullet.sh
Created September 22, 2022 18:11
Info disclosure scanner
# Before the first run, read the comments and change the script for your company
# Before anything, install ffuf with `go install github.com/ffuf/ffuf@latest`
# Change the WEBROOT variable below to the location of the webroot
WEBROOT=/var/www/html/CHANGE/ME
# This changes to the webroot directory
cd $WEBROOT
# This makes a directory for storing the files used for this script. Change it to be whatever path you want.
PROJPATH=/home/changeme/project
mkdir -p $PROJPATH
import requests
import re
import sys
from multiprocessing.dummy import Pool
def robots(host):
r = requests.get(
'https://web.archive.org/cdx/search/cdx\
?url=%s/robots.txt&output=json&fl=timestamp,original&filter=statuscode:200&collapse=digest' % host)
import requests
import sys
import json
def waybackurls(host, with_subs):
if with_subs:
url = 'http://web.archive.org/cdx/search/cdx?url=*.%s/*&output=json&fl=original&collapse=urlkey' % host
else:
url = 'http://web.archive.org/cdx/search/cdx?url=%s/*&output=json&fl=original&collapse=urlkey' % host