DEV Community

Czax225
Czax225

Posted on

Just Built a Cybersecurity Scripting Language – Here's Why

Spectator v2.0 is out. No Python. No Electron. Just one binary.


target = "scanme.nmap.org"
do  PortScan(target, 1, 1024)
do  SSLInfo(target)
do  HeaderAudit(target)
Enter fullscreen mode Exit fullscreen mode

What makes it different:

Security primitives built-in – PortScan, SQLiTest, PayloadGen, SubTakeover. No pip install rabbit holes.

Native GUI – Real desktop tools without Electron's 100MB overhead. Windows/Linux/Mac.

Space package manager – SHA-256 verified libraries. Supply-chain attacks? Blocked.

Standalone builds – spectator build tool.str to scanner.exe for windows. No runtime needed.

Example – Build a GUI scanner in 15 lines:

#Import Spec.GUI
open.window({"title": "Recon", "bg": "#070b14"})
GUI.input("target", "Enter IP or domain")
GUI.button("Scan", "run", {"color": "#00d4aa"})
GUI.output("out")

GUI.on("run", func() {
  t = GUI.get("target")
  ips = resolve(t)
  GUI.print("out", "→ "  join(ips, ", "))
})
end()
Enter fullscreen mode Exit fullscreen mode

Try it:

spectator run scan.str
spectator space get coffee  
Enter fullscreen mode Exit fullscreen mode

Built for pentesters, red teamers, and security researchers who are tired of gluing tools together.

GitHub: https://github.com/CzaxStudio/Spectator
Website: https://spectatorcyber.pages.dev/
Docs: https://github.com/CzaxStudio/SpectatorDocs/

See Everything. Miss Nothing.

Top comments (0)