-
-
Save Zuckonit/f3a4655f5b13bce4859e4304ce57c703 to your computer and use it in GitHub Desktop.
Crack software in mac
- install
gdb
binary 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-cert
in the example), setIdentity Type
toSelf Signed Root
, setCertificate Type
toCode Signing
and select theLet me override defaults
. Click several times onContinue
until you get to theSpecify a Location For The Certificate
screen, then setKeychain
toSystem
. - using the contextual menu for the certificate, select
Get Info
, open theTrust
item, and setCode Signing
toAlways Trust
. - You must quit Keychain Access application in order to use the certificate and restart
taskgated
service 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