Install the app
How to install the app on iOS

Follow along with the video below to see how to install our site as a web app on your home screen.

Note: This feature may not be available in some browsers.

Hacxx - Open Sites in a Linux Enviroment on Windows

hacxx

VIP
Joined
May 29, 2021
Messages
1,108
Code:
Run Kali Linux Commands via WSL from Windows Command Prompt (cmd.exe)

:: Install Kali Linux
wsl --install -d kali-linux

:: Open Kali Linux shell
wsl -d kali-linux

:: Update packages inside Kali
wsl -d kali-linux sudo apt update && sudo apt upgrade -y

:: Install Firefox ESR in Kali
wsl -d kali-linux sudo apt install firefox-esr -y

:: Launch Firefox ESR with a website (requires WSLg or X server)
wsl -d kali-linux firefox-esr http://www.google.com

:: Fetch website content using curl
wsl -d kali-linux curl http://www.google.com

:: Run Firefox with a proxy (example proxy address)
wsl -d kali-linux bash -c "http_proxy=http://127.0.0.1:8080 firefox-esr"

:: Install Oniux
wsl -d kali-linux git clone https://github.com/oniux/oniux.git
wsl -d kali-linux sudo apt install tor proxychains -y
wsl -d kali-linux sudo chmod +x oniux/oniux

:: Run Firefox Proxied Through Tor with Oniux
wsl -d kali-linux bash -c "cd oniux && ./oniux firefox-esr"
 
Back
Top