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
| # This script extracts operations from the statement (saved from online.otpbank.ru), | |
| # and prints only the ones with bonuses | |
| # Setup: | |
| # a) install Python3 | |
| # b) pip install BeautifulSoup4 | |
| # Guide: | |
| # 1. Go to online.otpbank.ru | |
| # 2. Select the card |
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
| # V4 (c) https://chatgpt.com/share/6991a15b-fb88-8001-bf63-7fb85a816328 | |
| # Patch 1: less androguard diagnostics messages | |
| # Patch 2: better splits detection | |
| # pip install androguard | |
| import os | |
| import argparse | |
| from androguard.core.apk import APK | |
| from androguard.util import set_log |