Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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.

Awesome Lists containing this project

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');
```