Skip to content

Instantly share code, notes, and snippets.

@Maple38
Maple38 / resign_the_shit_uwu.sh
Created March 3, 2025 11:22
Resign MacOS apps with com.apple.security.get-task-allow entitlement for dynamic analysis with IDA Pro's debugger or others
#!/bin/bash
# This script creates an entitlements file with com.apple.security.get-task-allow enabled
# and re-signs the specified binary using an ad hoc signature.
# Mostly written by chatgpt. It works though :)
# Usage: run it on an app idk it's pretty simple
if [ "$#" -ne 1 ]; then
echo "Usage: $0 /Path/To/YourBinary"
exit 1
@Maple38
Maple38 / remove-mau.zsh
Created March 15, 2026 01:34
Here's a Zsh script to remove Microsoft AutoUpdate from your MacOS device :)
echo "Beginning Microslop AutoUpdate elimination process..."
echo "\n1. Checking if MAU is running:"
pkill -f "Microsoft AutoUpdate" && echo " - It was— so I shot it!" || echo " - Nope! It knows to hide."
echo "\n2. Removing MAU application folders:"
if [[ -d "/Library/Application Support/Microsoft/MAU" ]]; then
echo " - Legacy folder found— DISINTEGRATE!"
sudo rm -rf "/Library/Application Support/Microsoft/MAU"