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
#!/bin/env python3 | |
import argparse | |
import datetime | |
import re | |
import sys | |
import uuid | |
############################################################################### | |
# Based off of Daniel Thatcher's guid tool |
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
console.log("[*] SSL Pinning Bypasses"); | |
console.log(`[*] Your frida version: ${Frida.version}`); | |
console.log(`[*] Your script runtime: ${Script.runtime}`); | |
/** | |
* by incogbyte | |
* Common functions | |
* thx apkunpacker, NVISOsecurity, TheDauntless | |
* Remember that sslpinning can be custom, and sometimes u need to reversing using ghidra,IDA or something like that. | |
* !!! THIS SCRIPT IS NOT A SILVER BULLET !! |
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
BALANCE_RAILPLUS = new byte[] { -112, 76, 0, 0, 4 }; | |
BALANCE_CASHBEE = new byte[] { -112, 76, 0, 0, 4 }; | |
BALANCE_HIPASS = new byte[] { -112, 92, 0, 0, 4 }; | |
BALANCE_MASTER = new byte[] { -112, 76, 0, 0, 4 }; | |
BALANCE_TMONEY = new byte[] { -112, 76, 0, 0, 4 }; | |
BALANCE_HANPAY = new byte[] { -112, 76, 0, 0, 4 }; | |
CARDINFO_CASHBEE = new byte[] { 0, -78, 1, 20, 51 }; | |
CARDINFO_HIPASS = new byte[] { 0, -80, -120, 0, 12 }; | |
CARDINFO_MASTER = new byte[] { 0, -78, 1, 12, 0 }; | |
CARDINFO_TMONEY = new byte[] { 0, -78, 1, 20, 51 }; |
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
//go:build windows | |
package main | |
import ( | |
"flag" | |
"fmt" | |
"log" | |
"os" | |
"path/filepath" |
OlderNewer