Tag: linux
-
Tracking Multiple Requests Over a Single Connection with eBPF
Why capturing HTTP Traffic is Crucial for Network Security? Capturing HTTP traffic is like having a digital security camera at your network’s entrance, and it’s essential for keeping your network safe. This ‘camera’ helps you monitor who’s accessing your online space, allowing you to detect and prevent potential security threats, such as cyberattacks and unauthorized…
-
Top Alternatives to the Zsh ls Command
The Zsh shell is a powerful and versatile command-line interface that enhances user productivity with its advanced features and customization options. Among the essential commands in any shell environment is the ‘ls’ command, which lists directory contents. However, users often seek alternatives to the default ‘ls’ command to overcome its limitations and enhance their workflow.…
-
BitBucket Self-Hosting : Running ebpf/Privileged programs
Bitbucket is a robust tool for source code management and continuous integration/continuous deployment (CI/CD). It offers flexibility in setting up pipelines, but there are limitations, particularly around root privileges and mounting volumes. This blog explores these limitations and provides detailed solutions using Docker-in-Docker (DinD) and Linux shell scripts. What is Bitbucket? Bitbucket is a Git…
-
Managing Go Processes
Introduction: The Challenge of Managing Blocking Processes While working on an application that required executing a command to run a blocking program, such as a TCP/HTTP server, I encountered an interesting challenge. I needed a way to stop the application and its child processes when a signal was sent to the main program, such as…