How to Install OpenVPN on Ubuntu 22.04  [draft]

Prerequisites An Ubuntu server 22.04 SSH root access or regular user with root privileges Step 1. Log in to the Server First, log in to your Ubuntu 22.04 VPS through SSH as the root user: ssh root@IP_Address -p Port_number Replace root with a user that has sudo privileges, and IP_Address and Port_number with your server’s IP address and SSH port number. Verify you are on Ubuntu 22.04: lsb_release -a Expected output:...

June 7, 2024 · Marcin M

How to Install OpenVPN on Ubuntu 22.04-AWS-EC2  [draft]

Prerequisites An Ubuntu 24.04 server running on AWS EC2 in your desired region. SSH access with root privileges or a user account with sudo capabilities. Step 1. Log in to the Server First, log in to your Ubuntu 24.04 VPS through SSH as the root user: In the case of AWS, the user is ubuntu. ssh ubuntu@IP_Address -p Port_number Replace root with a user that has sudo privileges, and IP_Address and Port_number with your server’s IP address and SSH port number....

June 7, 2024 · Marcin M

Evilginx  [draft]

evilginx2 is a man-in-the-middle attack framework used for phishing login credentials along with session cookies, which in turn allows to bypass 2-factor authentication protection. This tool is a successor to Evilginx , released in 2017, which used a custom version of nginx HTTP server to provide man-in-the-middle functionality to act as a proxy between a browser and phished website. Present version is fully written in GO as a standalone application, which implements its own HTTP and DNS server, making it extremely easy to set up and use....

May 31, 2024 · Marcin M

Evilginx Phishing Commands Tutorial  [draft]

Install Dependencies Update and upgrade repo and install make sudo apt update sudo apt install git make -y sudo apt install gcc libpcap-dev libnetfilter-queue-dev -y Steps to Install Go and Build Evilginx Install Go First, you need to install the Go programming language. You can do this by downloading and installing the latest version of Go. sudo apt install -y golang-go -y Ensure that Go is installed correctly by checking its version....

May 31, 2024 · Marcin M

How to Install Docker Desktop on Kali Linux  [draft]

Prerequisites Check the requirements for installing Docker Desktop before you can proceed. 1. Update your system packages sudo apt update 2. Install required packages sudo apt -y install apt-transport-https ca-certificates curl software-properties-common 3. Download Docker GPG Key curl -fsSL https://download.docker.com/linux/debian/gpg | \ sudo gpg --dearmor -o /etc/apt/trusted.gpg.d/docker-archive-keyring.gpg 4. Add Docker Repository echo \ "deb [arch=amd64] https://download.docker.com/linux/debian bullseye stable" | \ sudo tee /etc/apt/sources.list.d/docker.list 5. Update your system packages again sudo apt update 6....

November 6, 2023 · Marcin M