Skip to content

Instantly share code, notes, and snippets.

View 3m3x's full-sized avatar

3m3x 3m3x

View GitHub Profile
@3m3x
3m3x / README.md
Last active February 12, 2025 04:44
Update proxy list in proxychains config

What?

A thin Python script to update the proxy list in proxychains.conf with output from proxybroker.

Why?

Well, the proxies pulled down by proxybroker are often stale or useless for our purposes.

And updating proxychains.conf with new proxies is a pain in the ass.

Ok

Just run it in the background and never be without usable proxies again (⌐■_■)

@3m3x
3m3x / wifi-info.py
Created October 19, 2019 14:18
Show detailed info about the surrounding wifi networks
#!/usr/bin/env python
#
# Needs root priv to run
#
from pprint import pprint as pp
import re
import subprocess
import sys
@3m3x
3m3x / cli.go
Last active December 16, 2019 04:24
Poor-man's CLI in Go
/*
Objective:
- to dynamically and arbitrarily call functions of varying signature
- to look up help info stored against a function
Example:
- given the command "func1" and parameter "abc"
- call the function by that name (if present), passing in "abc"
- given a non-existent function name, return an error message