This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Usage : frida -U -f bundle_id -l cordova-enable-webview-debug.js --no-pause | |
Java.perform(function() { | |
var Webview = Java.use("android.webkit.WebView") | |
Webview.loadUrl.overload("java.lang.String").implementation = function(url) { | |
console.log("[+]Loading URL from", url); | |
this.setWebContentsDebuggingEnabled(true); | |
this.loadUrl.overload("java.lang.String").call(this, url); | |
} | |
}); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
query IntrospectionQuery { | |
__schema { | |
queryType { name } | |
mutationType { name } | |
types { | |
...FullType | |
} | |
directives { | |
name | |
description |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# update go | |
git clone https://github.com/udhos/update-golang | |
cd update-golang | |
sudo ./update-golang.sh |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#Modifying tmux configurations : | |
#nano ~/.tmux.conf (If you can't find one create one) | |
#Source the file to apply changes | |
#tmux source-file ~/.tmux.conf | |
# remap prefix from 'C-b' to 'C-a' | |
unbind C-b | |
set-option -g prefix C-a | |
bind-key C-a send-prefix |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
XSS Post exploitation: | |
https://excess-xss.com/ | |
https://labs.detectify.com/2012/11/07/how-to-exploit-an-xss/ | |
https://medium.com/@hakluke/upgrade-xss-from-medium-to-critical-cb96597b6cc4 | |
https://github.com/hakluke/weaponised-XSS-payloads | |
https://www.exploit-db.com/exploits/20009 | |
http://www.xssed.com/xssinfo | |
https://security.stackexchange.com/questions/49185/xss-cookie-stealing-without-redirecting-to-another-page | |
https://github.com/JohnHoder/Javascript-Keylogger |