cybersecurity · beginner · ~15 min · safe pentest lab
Match against a known-tool list.
Implement int is_kali_tool(const char *name) returning 1 for "nmap", "metasploit", "wireshark", "burpsuite", "hydra", "john", else 0.
#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.