Skip to content

Instantly share code, notes, and snippets.

View ConzZah's full-sized avatar
🎃
🍻

ConzZah ConzZah

🎃
🍻
View GitHub Profile
@ConzZah
ConzZah / Xbox360TitleIDs.txt
Last active October 6, 2025 15:42 — forked from AnthroHeader/Xbox360TitleIDs.json
Xbox 360 TitleIDs list, forked for easy use with grep. delimiter: ~
## F1: = ID ## F2: = GAME ##
545408B5~NBA 2K15
5752084D~LEGO Jurassic World
585509D5~Flowrider
41560870~Jurassic - The Hunted
5553083F~Csi - Deadly Intent
585508EB~Ace Of Dynamites
585509B6~Oto
58550A02~Pingvinas
58410909~Blazing Birds
@0xdevalias
0xdevalias / reverse-engineering-macos.md
Last active December 24, 2025 15:05
Some notes, tools, and techniques for reverse engineering macOS binaries
@akpoff
akpoff / curl_imap_query_commands.md
Created January 2, 2018 17:29
curl commands to query imap servers

curl commands to query imap servers

Based on https://busylog.net/telnet-imap-commands-note/

curl options

  • -k -- don't verify certificate (optional)
  • -n -- use .netrc for username and password (optional)
  • -X -- request to send to server
@simonw
simonw / wget.md
Created December 9, 2016 06:38
Recursive wget ignoring robots
$ wget -e robots=off -r -np 'http://example.com/folder/'
  • -e robots=off causes it to ignore robots.txt for that domain
  • -r makes it recursive
  • -np = no parents, so it doesn't follow links up to the parent folder