Categories: Kali Linux

Vproxy – Forward HTTP/S Traffic To Proxy Instance

Vproxy tool is used to forward HTTP/S traffic to proxy instance. The WIFI proxy option in your mobile device doesn’t make you capture all of the HTTP/S traffic using your favorite proxy program ? use this tool to solve this issue and capture the whole HTTP/S traffic.

Vproxy System Requirements

  • Linux
  • Python 2.x

Also Read Win-PortFwd : Powershell Script To Setup Windows Port Forwarding Using Native Netsh Client

Prerequisites

pip install termcolor

Usage

  • Setup VPN server on localip and redirect traffic sent from the device to proxy instance
  • Setup VPN server on localip and monitor traffic from devices
  • Setup VPN server on localip and redirect traffic sent to 192.168.1.0/24 to proxy instance
$sudo python vproxy.py -ip [LOCALIP] -port [PORTLIST] -proxy [PROXYHOST:PROXYPORT] -mode Redirect
$sudo python vproxy.py -ip [LOCALIP]  -port [PORTLIST] -mode Monitor
$sudo python vproxy.py -ip [LOCALIP] -port [PORTLIST] -proxy [PROXYHOST:PROXYPORT] -int 192.168.1.0/24 -mode Redirect

Limitations

Certificate Pinning

Configuring VPN Videos

iOS

Android

R K

Recent Posts

Install Mono on Ubuntu 18.04: C# Compiler and Runtime Guide

Running programs built for Microsoft's framework on a Linux system is easier than you think. Mono is…

15 hours ago

Install OpenCV on Ubuntu 18.04: Step-by-Step Setup Guide

Computer vision technology powers many modern applications, from image editors to facial scanners. OpenCV (Open Source Computer…

15 hours ago

Install VNC on Ubuntu 18.04: Step-by-Step TigerVNC Setup

A remote desktop interface makes it easy to manage a remote computer. VNC (Virtual Network Computing) is…

16 hours ago

Install Gitea on Ubuntu 18.04: Self-Hosted Git Service Guide

Hosting your own code repositories is a great way to keep your projects private. Gitea is a…

16 hours ago

Install Java on Ubuntu 18.04: OpenJDK 11 and OpenJDK 8

Many modern programs require Java to run. From development tools like Eclipse to search systems…

16 hours ago

Configure a Static IP Address on Ubuntu 18.04: Netplan Guide

Setting a static IP address on your server is a smart move. It ensures your…

2 days ago