EXXETA / EXXETA/Flutter-Security-Toolkit
Using Frida to bypass checks
Open
- Dominant language
- Dart
- Stars
- 6
- Forks
- 3
- PR merge metrics
- No merged PRs in 30d
Description
I could create a simple Frida script that hooks on this package returns, which allowed me to have all checks show "SAFE".
a simple script does the following in your code:
```
public static boolean b(){
new Socket().connect(new InetSocketAddress("127.0.0.1", 0x69a2), 200);
boolean b = true;
return b; // hook on this and return false
}
```
this will hook the return and show hooks as `SAFE`
hope you can improve/add more checks to prevent this.
good luck!
Contributor guide
Assessment
This issue has not been assessed yet.