DEV Community

Czax225
Czax225

Posted on

I Built a Cybersecurity Programming Language in Go (Cyber+)

I’m experimenting with a small domain-specific language for ethical cyber security tasks
(recon, DNS, OSINT, HTTP inspection).

The idea is to reduce reliance on Bash scripts and multiple tools
by offering a minimal, command-based syntax.

Example usage:
Recon("example.com");
Phone_Info("+91XXXXXXXXXX");
Scan_Port("8.8.8.8", 53);

I’m mainly looking for feedback on:
• Syntax readability
• Whether this feels more like a language or a wrapper
• What features you’d expect in a security DSL

Here is the repo link -- https://github.com/TanmayCzax/Cyber-Programming-language

Top comments (0)