Reverse Shell — Quick Guide

🔁 What is a Reverse Shell? A reverse shell is a connection initiated from the target back to the attacker. Useful in cases where the target is behind NAT or a firewall. 📥 Step 1: Start a Listener On your attacker machine (Kali, VPS, Oracle Cloud, etc.), open a port to receive the connection: nc -lvnp 12345 -l → listen mode -v → verbose -n → skip DNS -p 12345 → port to listen on ✅ Important: If you’re using Oracle Cloud, AWS, or any VPS, you must manually open the port (e....

March 29, 2025 · Marcin M

Argocd With Kind  [draft]

Introduction In this tutorial, I will show you how to install Argo CD locally on Kali Linux using a Kind environment. Argo CD is a declarative, GitOps continuous delivery tool for Kubernetes, which simplifies managing and deploying applications. Prerequisites Before you begin, ensure you have the following: A system running Kali Linux or any other Linux distribution. Kubernetes in Docker (Kind) installed and configured on your Kali Linux system. A foundational understanding of Linux, Kubernetes, and Argo CD....

October 10, 2024 · Marcin M

Deploying PrestaShop with NGINX and SSL on AWS EKS  [draft]

This is a file that contains cmd I run in the terminal The purpose of this file is to deploy PrestaShop on AWS EKS using NGINX Ingress, cert-manager and best practices for cost-effective, production-ready setups. Update kubeconfig aws eks update-kubeconfig --region eu-central-1 --name myr-eks Aws get user, to check if the user is the one we expect aws iam get-user Verify Configuration, to check if the configuration is correct...

September 26, 2024 · Marcin M

PrestaShop With Nginx  [draft]

Useful links:

September 26, 2024 · Marcin M

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