Skip to content

Instantly share code, notes, and snippets.

View mateofumis's full-sized avatar
🎯
Working on it

Mateo Fumis (hackermater) mateofumis

🎯
Working on it
View GitHub Profile
@mateofumis
mateofumis / .zshrc
Created December 18, 2025 01:04
proxyadb() function for .zshrc - Automated Android Proxy Management
# NOTE: Add this inside your .zshrc file
# Author: Mateo Fumis
proxyadb() {
if [[ "$1" == "--connect" ]]; then
if [[ -n "$2" && -n "$3" ]]; then
adb shell settings put global http_proxy "$2:$3"
echo "Proxy set to $2:$3"
else
echo "Please provide an IP address and a port."
fi