How a -Year-Old Became a Cybersecurity Researcher

Listen to this Post

Bandana Kaur’s journey into cybersecurity began at 14 after facing cyberbullying while participating in competitive programming on platforms like CodeChef, GeeksforGeeks, and earning certifications via HackerRank. Her passion led her to collaborate with the NIST | NICE Cybersecurity Career Ambassadors Community, where mentors like Gaurav Singh and Rasha Horn guided her. She later contributed to securing organizations like NASA, the U.S. Department of Education, and India’s NCIIPC (a unit of NTRO).

You Should Know:

Here are key steps, tools, and commands to start your cybersecurity journey:

1. Foundations in Programming & Cybersecurity

  • Learn Python for security scripting:
    Simple port scanner in Python
    import socket
    target = "example.com"
    for port in range(1, 100):
    s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
    if s.connect_ex((target, port)) == 0:
    print(f"Port {port} is open")
    s.close()
    
  • Practice on platforms:
  • HackerRank
  • CodeChef

2. Certifications & Training

3. Hands-On Security Tools

  • Linux Commands for Security:
    Network scanning with nmap
    nmap -sV -A target.com
    Analyzing logs with grep
    grep "Failed password" /var/log/auth.log
    
  • Windows Security Checks:
    Check active network connections
    netstat -ano
    List scheduled tasks (malware checks)
    schtasks /query /fo LIST
    

4. Engage in Communities

  • Join Women in Tech (WomenTech Network) and NIST Ambassadors for mentorship.

What Undercode Say:

Bandana’s story proves that passion and persistence break barriers. Key takeaways:
– Start with programming fundamentals (Python, C).
– Master OS internals (Linux/Windows commands).
– Participate in bug bounty programs (HackerOne, Bugcrowd).
– Leverage free certifications (NIST, Cisco CyberOps).

Expected Output:

A structured cybersecurity learning path with verified commands, tools, and community resources.

Relevant URLs:

References:

Reported By: Hackwither Witday – Hackers Feeds
Extra Hub: Undercode MoN
Basic Verification: Pass ✅

Join Our Cyber World:

💬 Whatsapp | 💬 TelegramFeatured Image