Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/nowsecure/frida-uiwebview
Inspect and manipulate UIWebView-hosted GUIs through Frida.
https://github.com/nowsecure/frida-uiwebview
frida nowsecure webview
Last synced: about 2 months ago
JSON representation
Inspect and manipulate UIWebView-hosted GUIs through Frida.
- Host: GitHub
- URL: https://github.com/nowsecure/frida-uiwebview
- Owner: nowsecure
- License: mit
- Created: 2016-02-17T23:26:16.000Z (almost 9 years ago)
- Default Branch: main
- Last Pushed: 2024-01-22T10:28:04.000Z (12 months ago)
- Last Synced: 2024-04-24T13:36:28.390Z (9 months ago)
- Topics: frida, nowsecure, webview
- Language: JavaScript
- Homepage:
- Size: 49.8 KB
- Stars: 44
- Watchers: 12
- Forks: 9
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
- awesome-frida - frida-uiwebview - Inspect and manipulate UIWebView-hosted GUIs (Libraries)
README
# frida-uiwebview
Inspect and manipulate UIWebView-hosted GUIs through [Frida](https://www.frida.re).
## Example
```js
import ui from 'frida-uikit';
import web from 'frida-uiwebview';const webView = await ui.get(node => node.type === 'UIWebView');
const loginButton = await web.get(webView, node => node.text === 'Log in to Spotify');
loginButton.click();
```