Skip to content

Instantly share code, notes, and snippets.

View thgoebel's full-sized avatar

Thore Goebel thgoebel

View GitHub Profile
@thgoebel
thgoebel / find-apps-with-permission.py
Created June 21, 2022 10:37
Script to find Android apps that have a given permission
#!/usr/bin/python3
# Script to find all installed Android apps that request a given permission
#
# Author: Thore Goebel <hello@thore.io>
# Version: 2022-06-21
import shlex, subprocess
PERMISSION = "android.permission.READ_LOGS"
@thgoebel
thgoebel / Cargo.toml
Created November 4, 2021 22:49
Adhoc script to inspect bytes of encoded data in EU DCC QR Codes
[package]
name = "barcode-inspector"
version = "0.1.0"
authors = ["Thore"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
bardecoder = "0.3.0"