All Projects → nowsecure → frida-uiwebview

nowsecure / frida-uiwebview

Licence: MIT license
Inspect and manipulate UIWebView-hosted GUIs through Frida.

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to frida-uiwebview

tiktok-gorgon-bridge
Express server with a Frida bridge to sign TikTok API requests
Stars: ✭ 83 (+130.56%)
Mutual labels:  frida
webview flutter plus
An extension of webview_flutter to load HTML,CSS and Javascript even from Assets or Strings.
Stars: ✭ 45 (+25%)
Mutual labels:  webview
react-native-web-view
An implementation of React Native's WebView that allows for postMessage on iOS devices.
Stars: ✭ 13 (-63.89%)
Mutual labels:  webview
MkBrowser
🌐 一个简易的 Android 网页浏览器 A simple Android web browser
Stars: ✭ 55 (+52.78%)
Mutual labels:  webview
topframe
Local webpage screen overlay for customizing your computing experience
Stars: ✭ 321 (+791.67%)
Mutual labels:  webview
react-native-codeditor
React Native component to display code editor using WebView and CodeMirror
Stars: ✭ 21 (-41.67%)
Mutual labels:  webview
RobustWebView
Android WebView H5 秒开方案总结
Stars: ✭ 38 (+5.56%)
Mutual labels:  webview
WeBer
Android x5 内核 WebView 的 Helper 完美兼容 AndroidX 和 android 库,欢迎使用~~~
Stars: ✭ 20 (-44.44%)
Mutual labels:  webview
react-native-fblogin
📦 A React Native 'Facebook Login' component without wrapping any Facebook Native/Web SDK
Stars: ✭ 19 (-47.22%)
Mutual labels:  webview
fpicker
fpicker is a Frida-based fuzzing suite supporting various modes (including AFL++ in-process fuzzing)
Stars: ✭ 175 (+386.11%)
Mutual labels:  frida
autojs-webView
autojs的webView实现,支持初始化脚本注入、jsBridge两端互调
Stars: ✭ 38 (+5.56%)
Mutual labels:  webview
webview-cs
C# Bindings to https://github.com/zserge/webview
Stars: ✭ 110 (+205.56%)
Mutual labels:  webview
AnyWebView
Any WebView is OK!
Stars: ✭ 64 (+77.78%)
Mutual labels:  webview
VHLWebView
微信/支付宝样式的网络浏览器控件。WKwebview 封装,js bridge和拦截url方式两种方法实现 oc和js交互
Stars: ✭ 14 (-61.11%)
Mutual labels:  webview
iNote
个人学习研究笔记,OC、iOS 逆向、Python、汇编、Bash等等!
Stars: ✭ 87 (+141.67%)
Mutual labels:  frida
flutter examples
Random flutter examples
Stars: ✭ 18 (-50%)
Mutual labels:  webview
FastWebView
自定义本地缓存策略和资源加载策略,突破原生WebView缓存限制,实现多种缓存模式,支持离线加载和预加载,可大幅提升加载速度。
Stars: ✭ 211 (+486.11%)
Mutual labels:  webview
mocxx
A versatile C++ function mocking framework.
Stars: ✭ 103 (+186.11%)
Mutual labels:  frida
CefGlue
.NET binding for The Chromium Embedded Framework (CEF)
Stars: ✭ 44 (+22.22%)
Mutual labels:  webview
Web Vuw
A Web View for flutter
Stars: ✭ 40 (+11.11%)
Mutual labels:  webview

frida-uiwebview

Inspect and manipulate UIWebView-hosted GUIs through Frida.

Example

const ui = require('frida-uikit');
const web = require('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();
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].