Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/igio90/frida-onload
Frida module to hook module initializations on android
https://github.com/igio90/frida-onload
Last synced: about 2 months ago
JSON representation
Frida module to hook module initializations on android
- Host: GitHub
- URL: https://github.com/igio90/frida-onload
- Owner: iGio90
- License: mit
- Created: 2019-06-24T21:16:08.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2021-01-04T22:41:01.000Z (almost 4 years ago)
- Last Synced: 2023-04-02T12:27:49.774Z (over 1 year ago)
- Language: TypeScript
- Size: 12.7 KB
- Stars: 63
- Watchers: 4
- Forks: 14
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# Frida onload
A frida module to get a callback when module are being initialized.
Only for android at the moment
## install
```$xslt
git clone https://github.com/iGio90/frida-onload.git
npm install
npm link
```### try it out
```$xslt
cd example
npm link frida-onload
npm install
npm run watch# make your edits to index.ts
# inject the agent (quick att.py)
```example code
```typescript
import {OnLoadInterceptor} from "frida-onload";OnLoadInterceptor.attach((modulePath: string, base: NativePointer) => {
console.log('hit module loading! @name ' + modulePath + ' @' + base);
});OnLoadInterceptor.attachJava((clazz: string) => {
console.log('hit java class loader! @' + clazz)
});
```## changelog
**2019.06.28**
* added support for windows module loading: thanks @PinkiePieStyle
* added support for Java ClassLoader loading class**2019.06.24**
* push---
```
Copyright (c) 2019 Giovanni (iGio90) RoccaPermission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
```