MAMuhammad Ardivan Satrio Nugrohoinbonestealer.xyz·Jun 24, 2025 · 2 min readDebug GCP CloudBuild via Reverse ShellMotivation When attempting to debug an issue, it can be challenging to reproduce the problem on the machine used in the CI/CD process, especially if it is different from the local development environment. Because there is no direct access to the runn...00
MAMuhammad Ardivan Satrio Nugrohoinbonestealer.xyz·Jan 3, 2024 · 2 min readInstall NGINX Ingress on K3S1. Install K3S To install K3S, execute the following command with an explanation for INSTALL_K3S_EXEC: --disable traefik, servicelb: Remove traefik and servicelb --tls-san: Add additional hostnames or IPv4/IPv6 addresses as Subject Alternative Name...00
MAMuhammad Ardivan Satrio Nugrohoinbonestealer.xyz·Sep 4, 2022 · 1 min readDon't use MAC Address for VPN filteringA little background story. I forgot to bring my laptop that have been registered to connect to the office network (through VPN). But, there's flaws in it, they used MAC address to register the person who wants to use the network, so I just need to bo...00
MAMuhammad Ardivan Satrio Nugrohoinbonestealer.xyz·Aug 30, 2022 · 1 min readCount total objects in S3 bucketThere are several ways to count the objects in S3 bucket. But, there is deficiency regarding the API calls which has its own price. So here are some ways that I usually do to count the objects. 1. By using aws cli I know this is the programmatical...00
MAMuhammad Ardivan Satrio Nugrohoinbonestealer.xyz·Aug 24, 2022 · 1 min readSetup SSH Passwordless Login1. Create ssh-keygen keys $ ssh-keygen -t rsa 2. Copy the ssh key using ssh-copy-id command $ ssh-copy-id user@192.168.10.10 3. If there's a prompt password, you need to enter the password $ ssh-copy-id user@192.168.10.10 $ user@192.168.10.10's pas...00