HTTP Proxy Override
Set up a HTTP proxy forwarding for your app. Usually with combination of Burp Suite web proxy.
OS Linux - Terminal
The app or a library has to be coded to reflect these specific environment variables. Otherwise, explore a specific app configuration or CLI parameters for HTTP proxy features.
export http_proxy='127.0.0.1:8080'
export https_proxy='127.0.0.1:8080'You can unset back the variables by
unset http_proxy
unset https_proxyMetasploit
msf> set Proxies http:127.0.0.1:8080There are different types of proxies you can define.
set Proxies socks4:127.0.0.1:5555
set Proxies socks5:127.0.0.1:5555Java (VM)
Forward HTTP/HTTPS traffic for your Java app to Burp Suite Proxy. The same analogy applies to FTP, explore the following Java documentation.
HTTP
Before you start your java application, add the following parameters to JVM.
HTTP & HTTPS
Create Java Keystore
Briefly, Java Key Store (JKS) is a secured storage protected by password (trustStorePassword).
Import certificate (CER or DER)
Visual Studio 2015|2019
Find VS software home (installation directory)
%ProgramFiles%\Microsoft Visual Studio\2019\Enterprise\Common7\IDE%
edit devenv.exe.config file
with authentication option
Last updated
Was this helpful?