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
| # pip install apkutils2 | |
| import os | |
| import sys | |
| from apkutils2 import APK | |
| def check_apk(apk_path): | |
| apk = APK(apk_path) | |
| manifest = apk.get_manifest() |