top of page



Top 10 Malware Analysis Tools: From Beginner to Advanced (Static, Dynamic & Hybrid)
Malware analysis is a critical skill in cybersecurity, helping analysts understand how malicious software works, how it spreads, and how to defend against it. Whether you are a beginner , SOC analyst , or an aspiring reverse engineer , choosing the right tools at each stage of learning is essential. In this article, we explore the Top 10 malware analysis tools , categorized by Static , Dynamic , and Hybrid analysis , and arranged from beginner to advanced level . What Is Malw
Guna Dhondwad
Dec 16, 20252 min read
How to Create Jenkins Pipeline directly in the Jenkins Web UI or using a Jenkinsfile from Source Control.
Creating a Jenkins Pipeline can be done in two ways: directly in the Jenkins Web UI (good for testing) or using a Jenkinsfile from Source Control (Best Practice). Here is the step-by-step guide to setting up your first Declarative Pipeline. Phase 1: Create the Job in Jenkins Login to your Jenkins Dashboard. Click on New Item in the top-left menu. Enter a name for your pipeline (e.g., My-First-Pipeline). Select Pipeline from the list of project types. Click OK at the bott

Sharon Rajendra Manmothe
Dec 5, 20254 min read
How to Create a simple Python “Hello World” project - Dockerize it -Push it to GitHub using VS Code.
Step 1 — Create project folder in VS Code Open VS Code Go to File → Open Folder Create/open a folder named: hello-docker-python Step 2 — Create files Inside VS Code, create these files: 📄 1. hello.py print("Hello from Dockerized Python!") 📄 2. Dockerfile FROM python:3.11-slim WORKDIR /app COPY hello.py . CMD ["python", "hello.py"] 📄 3. .dockerignore __pycache__ *.pyc .git 📄 4. README.md Simple Python Docker demo. Run: docker build -t hello-python . docker run --rm hello-

Sharon Rajendra Manmothe
Dec 3, 20251 min read
bottom of page