https://github.com/nullswan/frida_go
frida golang binding
https://github.com/nullswan/frida_go
Last synced: 6 months ago
JSON representation
frida golang binding
- Host: GitHub
- URL: https://github.com/nullswan/frida_go
- Owner: nullswan
- Created: 2021-05-10T14:52:43.000Z (about 5 years ago)
- Default Branch: main
- Last Pushed: 2021-11-19T23:59:28.000Z (over 4 years ago)
- Last Synced: 2025-04-05T02:33:41.172Z (about 1 year ago)
- Language: Go
- Homepage:
- Size: 334 KB
- Stars: 6
- Watchers: 1
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
```Go
file, _ := ioutil.ReadFile(__file__)
session, _ := frida_go.Attach(ProcessID)
script, _ := session.CreateScriptSync(name, string(file))
_ := script.Load()
```