How to Install Kubernetes Cluster OnOracle Always Free Ubuntu 22.04  [draft]

Kubernetes is a powerful container orchestration platform used for automating the deployment, scaling, and management of containerised applications. In this guide, we will walk you through the step-by-step process of installing Kubernetes on Ubuntu 22.04. This cluster configuration includes a master node and worker nodes, allowing you to harness the full power of Kubernetes. Kubernetes Nodes In a Kubernetes cluster, you will encounter two distinct categories of nodes: Master Nodes: These nodes play a crucial role in managing the control API calls for various components within the Kubernetes cluster....

July 28, 2024 · Marcin M

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]

Introduction This tutorial will guide you through the installation of OpenVPN on Ubuntu 22.04. OpenVPN is a popular open-source VPN server and client software. It allows you to create a secure connection to another network over the internet. In this tutorial, we will install OpenVPN on an Ubuntu 22.04 server running on AWS EC2. Prerequisites An Ubuntu 22.04 server running on AWS EC2 in your desired region. SSH access with root privileges or a user account with sudo capabilities....

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