Last active
March 10, 2025 20:58
-
-
Save githubutilities/b3bf0f31d1748f5e9ecf to your computer and use it in GitHub Desktop.
Crack software in mac
- install
gdbbinary using following scripts
$ brew tap homebrew/dupes $ brew install gdb
/Applications/Utilities/Keychain Access.app- Open menu
/Keychain Access/Certificate Assistant/Create a Certificate... - Choose a name (
gdb-certin the example), setIdentity TypetoSelf Signed Root, setCertificate TypetoCode Signingand select theLet me override defaults. Click several times onContinueuntil you get to theSpecify a Location For The Certificatescreen, then setKeychaintoSystem. - using the contextual menu for the certificate, select
Get Info, open theTrustitem, and setCode SigningtoAlways Trust. - You must quit Keychain Access application in order to use the certificate and restart
taskgatedservice by killing the current running taskgated process (so before using gdb).
ps -e | grep taskgated sudo kill -9 <taskgated-id>
- signing the binary using
codesign -s gdb-cert $(which gdb)
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment