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

Automating Ubuntu Server Restarts: Never Wait for Manual Commands Again  [draft]

There comes a time when your server requires regular restarts, and it can be a hassle to do it manually every time. However, there is a way to automate this process and make your life easier. Enter Systemd, a powerful init system that provides a convenient solution. With Systemd, you can create a service unit that defines the desired behavior for your server restarts. By configuring a few settings, you can schedule automatic restarts at specific intervals, ensuring your server stays fresh and optimized without any manual intervention....

July 6, 2023 · Marcin M

Build an Awesome Kubernetes Cluster Using Proxmox VE  [draft]

Requirements To complete this tutorial, you’ll need the following: Two instances of Ubuntu Server 22.04 (one for the controller and at least one for a node) The instances should have either a static IP address or a DHCP reservation to prevent IP address changes The controller node should have a minimum of 2GB of RAM and 2 CPU cores The node instances can have 1GB of RAM and 1 CPU core (you can increase these resources as desired) Please note that this tutorial is specifically tailored for Ubuntu Server 22....

June 9, 2023 · Marcin M