cybersecurity · beginner · ~15 min · safe pentest lab

Is it a known Kali tool?

Match against a known-tool list.

Challenge

Implement int is_kali_tool(const char *name) returning 1 for "nmap", "metasploit", "wireshark", "burpsuite", "hydra", "john", else 0.

Starter code

#include <string.h>

int is_kali_tool(const char *name) {
    /* TODO */
    return 0;
}

Solve this exercise in the browser editor — compile and run against the test harness, no setup required.