Skip to content

Instantly share code, notes, and snippets.

View SalehDehqanpour's full-sized avatar
💭
in dev

Saleh Dehqanpour SalehDehqanpour

💭
in dev
View GitHub Profile
@jasdeepkhalsa
jasdeepkhalsa / socks.txt
Last active January 22, 2025 22:00
Configuring a SOCKS proxy server in Chrome
From: http://www.chromium.org/developers/design-documents/network-stack/socks-proxy
To configure chrome to proxy traffic through the SOCKS v5 proxy server myproxy:8080, launch chrome with these two command-line flags:
--proxy-server="socks5://myproxy:8080"
--host-resolver-rules="MAP * 0.0.0.0 , EXCLUDE myproxy"
The first thing to check when debugging is look at the Proxy tab on about:net-internals, and verify what the effective proxy settings are:
chrome://net-internals/#proxy
1- Write a plugin for django which acts as a middleware and does the job of obfuscating **js** variables and function and **css** class names.
2- When we decompile an APK, the JADX output has all resources (e.g. stuff like R.string.*) by their numeric IDs. These make hard to build the APK.
Write a software which finds "ids" all over the code and replaces them by appropiate R. value.
I think you can use some more advanced android decompiling tool like JEB, JADX. Some of them can automatically parses the resource id and symbolize them :)
3- A plugin for PyCharm which removes unused resources (static files and/or templates)