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
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) |
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
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 |