Credits to @TheOnlyAnil-@Firelord[^stackoverflow]
-
Requirements: a) stock recovery + rooted phone b) custom recovery
-
Files changed:
| 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 |
| #!/usr/bin/env python3 | |
| import os | |
| import sys | |
| import time | |
| import termcolor | |
| import feedparser | |
| # Usage: | |
| # anews [number of headlines (optional)] | |
| # e.g. "anews 6" or "anews" |
| @ECHO OFF | |
| SETLOCAL | |
| ECHO ASLR Enable / Diable Batch Script - Please run as admin | |
| set /p Choice=Want to Enable or Disable ASLR? (e or d):%=% | |
| if "%Choice%"=="e" goto :ENABLE | |
| if "%Choice%"=="d" goto :DISABLE | |
| :ENABLE |
| #include <stdio.h> |
| # -*- coding: utf-8 -*- | |
| """ | |
| Sample client script for PNF Software's JEB2. | |
| More samples are available on our website and within the scripts/ folder. | |
| Refer to SCRIPTS.TXT for more information. | |
| """ | |
| """ | |
| IDAPython Script to highlight function calls. | |
| Re-implemented by jthuraisamy (not the original author). | |
| Install to %IDADIR%\plugins\highlight_calls.py. | |
| Run by pressing Ctrl+Alt+H or go to Options -> Highlight Call Instructions. | |
| """ | |
| class HighlightHandler(idaapi.action_handler_t): |
| #!/bin/sh | |
| # proxychains wrapper | |
| # Choose pre-supposed profile with -1,-2,-3 OR appoint by -n proxy(Node)_ip(hostname):port and -p proxy_protocol and -q as quiet mode | |
| # Default profile | |
| proxy_hostname=127.0.0.1 | |
| proxy_port=1080 | |
| protocol=socks5 | |
| # profile 1 | |
| proxy_hostname_1=127.0.0.1 |
| /* | |
| ================================ Compile as a .Net DLL ============================== | |
| C:\Windows\Microsoft.NET\Framework64\v4.0.30319\csc.exe /target:library /out:TestAssembly.dll TestAssembly.cs | |
| */ | |
| using System.Windows.Forms; | |
| namespace TestNamespace |