Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/nowsecure/frida-uikit
Inspect and manipulate UIKit-based GUIs through Frida.
https://github.com/nowsecure/frida-uikit
Last synced: 3 months ago
JSON representation
Inspect and manipulate UIKit-based GUIs through Frida.
- Host: GitHub
- URL: https://github.com/nowsecure/frida-uikit
- Owner: nowsecure
- License: mit
- Created: 2016-02-17T23:25:58.000Z (over 8 years ago)
- Default Branch: main
- Last Pushed: 2024-01-22T10:42:05.000Z (10 months ago)
- Last Synced: 2024-04-23T21:32:20.033Z (7 months ago)
- Language: JavaScript
- Homepage:
- Size: 59.6 KB
- Stars: 49
- Watchers: 10
- Forks: 10
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
- awesome-frida - frida-uikit - Inspect and manipulate UIKit-based GUIs (Libraries)
README
# frida-uikit
Inspect and manipulate UIKit-based GUIs through [Frida](https://www.frida.re).
## Example
```js
const ui = require('frida-uikit');const username = await ui.get(node => node.type === 'UITextField');
username.setText('john.doe');
```