1
0
mirror of https://github.com/ivRodriguezCA/RE-iOS-Apps synced 2026-01-09 02:22:48 +00:00

Fix Frida set userdefaults command

This commit is contained in:
Izabella Melo
2022-01-20 11:19:05 -03:00
committed by GitHub
parent 305245390d
commit 44c66531ba

View File

@@ -467,8 +467,8 @@ If you've played around with the `CoinZa` application, you've probably noticed t
- Up until this point all you've done is following the same steps that you did with `Cydia` but with `Frida`'s interactive console. But you have one step left, enabling the pro version:
```javascript
function setProVersion() {
var userDefaultsClass = ObjC.classes.NSUserDefaults;
userDefaultsClass.setObject_forKey_(true,'isProVersion');
var userDefaultsClass = ObjC.classes.NSUserDefaults.standardUserDefaults();
userDefaultsClass.setObject_forKey_('YES', 'isProVersion');
}
```
- Now if you increase the balance of any wallet you'll get an extra 20% for free!