Skip to content

Instantly share code, notes, and snippets.

View aspenmayer's full-sized avatar
🐇
🐈‍⬛

Aspen Mayer aspenmayer

🐇
🐈‍⬛
View GitHub Profile
@aspenmayer
aspenmayer / sample-slack-coc.md
Created December 29, 2023 10:10 — forked from annalee/sample-slack-coc.md
A sample code of conduct for social slack teams.

[SLACKNAME] Code of Conduct

Welcome!

[BRIEF DESCRIPTION OF THE SLACK AND ITS PURPOSE]

The current admins are:

  • [NAMES]
@aspenmayer
aspenmayer / BIOS_default_passwords.txt
Created October 17, 2022 03:03 — forked from Yousha/BIOS_default_passwords.txt
BIOS default passwords
AWARD BIOS:
01322222
589589
589721
595595
598598
aLLy
aLLY
ALLY
ALFAROME
@aspenmayer
aspenmayer / ios-downgrade-dualboot.md
Created October 3, 2022 09:10 — forked from LukeZGD/ios-downgrade-dualboot.md
Downgrade and dualboot status of almost all iOS devices

Downgrade and dualboot status of almost all iOS devices

UPDATED: 2022-09-13

@aspenmayer
aspenmayer / checkm8_downgrade.md
Created October 3, 2022 08:32 — forked from 0xallie/checkm8_downgrade.md
How to downgrade checkm8 devices from iOS 15/16

Important: Please don't use the comment section to ask for help, I most likely won't respond there as I have it muted due to too many notifications. Join r/jailbreak (#genius-bar) or FDR Bureau (#futurerestore-support) instead.

How to downgrade checkm8 devices from iOS 15/16

This is a guide for downgrading (or upgrading) to unsigned versions with futurerestore on checkm8 devices (A11 and below). You must have blobs for the version you want to go to, and SEP/BB compatibility may limit how far you can go.

Current SEP compatibility

The latest SEP/BB as of right now is iOS 16.0, which is INCOMPATIBLE with anything below. You must use iOS 15.7 SEP (--custom-latest-beta --custom-latest-buildid 19H12).

@aspenmayer
aspenmayer / patch.sh
Created June 2, 2022 08:51 — forked from jakeajames/patch.sh
Make h3lix work when installed not-via-Impactor. To be used with the latest h3lix.
if [ $# != 2 ]; then
echo "Usage: $0 /path/to/input_ipa /path/to/output_ipa"
exit 1
fi
if ! [ -f $1 ]; then
echo "'$1' does not exist"
exit 1
fi
@aspenmayer
aspenmayer / youtube-vanced-alternatives.md
Created April 12, 2022 04:31 — forked from SkyyySi/youtube-vanced-alternatives.md
A list of alternatives after the shutdown of Vanced

NONE OF THESE CLIENTS ARE VERIFIED BY ME FOR SECURITY OR ANYTHING ELSE! USE AT YOUR OWN RISK!

These are the current alternatives (with links when possible):

@aspenmayer
aspenmayer / snapchat_anonymous_screenshots
Created March 6, 2022 08:52 — forked from programminghoch10/snapchat_anonymous_screenshots
Anonymous Snapchat screenshots on LineageOS
appops set com.snapchat.android READ_EXTERNAL_STORAGE deny
appops set com.snapchat.android WRITE_EXTERNAL_STORAGE deny
appops set com.snapchat.android READ_MEDIA_AUDIO ignore
appops set com.snapchat.android WRITE_MEDIA_AUDIO ignore
appops set com.snapchat.android READ_MEDIA_VIDEO ignore
appops set com.snapchat.android WRITE_MEDIA_VIDEO ignore
appops set com.snapchat.android READ_MEDIA_IMAGES ignore
appops set com.snapchat.android WRITE_MEDIA_IMAGES ignore
appops set com.snapchat.android LEGACY_STORAGE ignore
#!/bin/bash
if [[ $(id -u) -ne 0 ]]; then
echo "This script must be run as root"
exit 1
fi
if [ -z $(pm list packages | grep com.snapchat.android) ]; then
echo "Snapchat not found"
exit 1
fi
@aspenmayer
aspenmayer / bl_splash_helper.sh
Created March 6, 2022 08:52 — forked from programminghoch10/bl_splash_helper.sh
Samsung UP_PARAM Bootloader Splash Helper Script
#!/bin/bash
DEVICE="unknown"
PIC_META_FILE="up_param_files_${DEVICE}.txt"
if [ "$1" = "" ]; then
echo "This script helps you create your own up_param file for modifying bootloader splashes on samsung devices."
echo
echo "Download the stock firmware, extract it until you have up_param.bin"
echo "Set your device codename by editing this script. (Currently set to \"$DEVICE\")"
rm -r /storage/emulated/0/whatsapp_exports
mkdir -v /storage/emulated/0/whatsapp_exports
cp -r /data/data/com.whatsapp/files/Stickers /storage/emulated/0/whatsapp_exports
mkdir /storage/emulated/0/whatsapp_exports/Avatars
mkdir /storage/emulated/0/whatsapp_exports/AvatarsThumbnail
cp /data/data/com.whatsapp/files/Avatars/* /storage/emulated/0/whatsapp_exports/AvatarsThumbnail
cp /data/data/com.whatsapp/cache/Profile\ Pictures/* /storage/emulated/0/whatsapp_exports/Avatars
cp /data/data/com.whatsapp/files/me.jpg /storage/emulated/0/whatsapp_exports/Avatars
cp /data/data/com.whatsapp/files/status /storage/emulated/0/whatsapp_exports/status.txt
cp /data/data/com.whatsapp/files/statistics.json /storage/emulated/0/whatsapp_exports