Skip to content

Instantly share code, notes, and snippets.

@izadgot
Created April 23, 2019 15:46
Show Gist options
  • Save izadgot/f9c5832ae1305799e468d64f6749abbb to your computer and use it in GitHub Desktop.
Save izadgot/f9c5832ae1305799e468d64f6749abbb to your computer and use it in GitHub Desktop.
example Cycript script for hooking iGoat
@import com.saurik.substrate.MS
var old_method_pointer = {}
MS.hookMessage(PersonalPhotoStorageVC, @selector(viewDidLoad), function(){
old_method_pointer->call(this);
this.theTextField.text = this->_pw;
this.theTextField.textColor = [UIColor redColor];
},old_method_pointer)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment