Skip to content

Instantly share code, notes, and snippets.

View sanderDijkxhoorn's full-sized avatar
🎯
Focusing

Sander Dijkxhoorn sanderDijkxhoorn

🎯
Focusing
  • ClickHere
  • Netherlands
View GitHub Profile
@AICDEV
AICDEV / flutter_ios.js
Last active June 4, 2024 23:41
Frida trace Flutter Functions on iOS
/**
* run the script to a running app: frida -U "appName" -l flutter_ios.js --no-pause
* start app direct with the script: frida -Uf bundleIdentifier -l flutter_ios.js --no-pause
*/
// #############################################
// HELPER SECTION START
var colors = {
"resetColor": "\x1b[0m",
"green": "\x1b[32m",
"yellow": "\x1b[33m",
@pwlin
pwlin / gist:8a0d01e6428b7a96e2eb
Last active October 18, 2024 14:20
Android : add cert to system store
https://code.google.com/p/android/issues/detail?id=32696#c5
If you have a certificate that is not
trusted by Android, when you add it, it goes in the personal cert store.
When you add a cert in this personal cert store, the system requires a
higher security level to unlock the device. But if you manage to add your
cert to the system store then you don't have this requirement. Obviously,
root is required to add a certificate to the system store, but it is quiet
easy.