Skip to content

Instantly share code, notes, and snippets.

View rickmark's full-sized avatar
🔬
Decoding iOS Formats

Rick Mark rickmark

🔬
Decoding iOS Formats
View GitHub Profile
@niw
niw / download_macos_and_create_install_disk.sh
Last active July 18, 2023 10:44
A script to download macOS install image and create an install disk image
#!/usr/bin/env bash
set -e
VOLUME_PATH=/Volumes/installer
while getopts ":d:h" opts; do
case $opts in
d)
VOLUME_PATH=$OPTARG
;;
@Siguza
Siguza / dsc_syms.c
Last active February 20, 2022 02:19
dyld_shared_cache symbols to r2 flags
// Moved here: https://github.com/Siguza/misc/blob/master/dsc_syms.c
@slavc
slavc / after_wakeup.txt
Created January 27, 2016 02:09
Apple MacBook Air 6,2 SMC keys and their values.
0: Key name.
1: Flags? Keys which have c0 as first byte are usually
writeable. Second byte seems to be the length of value.
2: Key type.
3: More flags?
4: Value. ``x'' means value could not be read.
0 1 2 3 4
#KEY 88040000 ui32 acb20200 00 00 02 31
$Adr 88040000 ui32 20070020 00 00 03 00
@uson1x
uson1x / hack.sh
Last active June 6, 2024 07:41 — forked from erikh/hack.sh
OSX For Hackers
#!/usr/bin/env sh
##
# This is script with usefull tips taken from:
# https://github.com/mathiasbynens/dotfiles/blob/master/.osx
#
# install it:
# curl -sL https://raw.github.com/gist/2275613/hack.sh | sh
#