Security Research · Language Design · Systems Engineering

bad-antics

Independent security researcher building open-source tools, a programming language, and a Linux distribution. Contributing to the security community across 17 major projects.

732Repos
140+Tools
81Merged PRs
1M+Reach
// Data flows left-to-right
let report = transactions
    |> filter(|t| t.amount > 20.0)
    |> group_by(|t| t.category)
    |> map_entries(|cat, txns| {
        let total = txns |> sum()
        (cat, total)
    })
    |> sort_by(|e| e.1, descending)

// Pattern matching with guards
match shape {
    Circle(r) if r > 100 => "Large",
    Circle(r)              => "Circle",
    Rect(w, h)              => "Rect",
}

Lateralus Programming Language

A compiled language where data flows left-to-right. Pipeline operators, pattern matching, async/await, and zero dependencies.

  • Pipeline operator |> — first-class data flow
  • Exhaustive pattern matching with guards
  • Async/await with spawn concurrency
  • try/recover/ensure error handling
  • 22 repos · 2,400+ .ltl files · full ecosystem
  • VS Code extension on the marketplace
▶ Try in Browser Website GitHub

Featured Projects

From a programming language to a Linux distribution to mobile security frameworks.

🐧
NullSec Linux v5.0
Distribution · ⭐ 36

Security-focused Linux distribution with 140+ pre-installed tools, AI assistant, and 5 specialized editions.

140+ ToolsAI Assistant5 Editions
View Repository →
🌐
Marshall Browser v3.0
Rust · ⭐ 13

Privacy-focused security browser with Dr. Marshall AI assistant and built-in exploit tools.

Dr. Marshall AIPrivacyRust
View Repository →
📱
NullKia v3.0
Mobile Security

Mobile security framework supporting 18 manufacturers with baseband and 5G/LTE testing.

18 VendorsBaseband5G/LTE
View Repository →
🪓
LogReaper
C · ⭐ 72

High-speed log analysis & forensics engine with blazing fast pattern matching and timeline reconstruction.

Log AnalysisForensics
View Repository →
🚗
BlackFlag
Automotive Security

Automotive & ECU security — CAN bus, OBD-II, UDS protocols, key fob analysis, ECU fuzzing & tuning.

CAN BusOBD-IIECU
View Repository →
🍍
Pineapple Suite
Hak5 · ⭐ 31

96+ WiFi Pineapple Pager payloads across 13 categories with auto-installer.

96 Payloads13 Categories
View Repository →
🐬
Flipper Suite
Hardware · ⭐ 24

430+ Flipper Zero files — 80 BadUSB payloads, 40 SubGHz signals, 16 IR remotes, NFC, RFID, animations.

BadUSBSubGHzNFC
View Repository →
🛡️
RCE Shield
PC Security

RCE hardening for gamers — game launcher scanning, anti-cheat auditing, mod & overlay vulnerability checks.

GamingRCE Prevention
View Repository →

GitHub Stats

Open-source contributions and project metrics.

732
Repositories
140+
Security Tools
81
PRs Merged
223
Followers
1M+
Reach
22
Lateralus Repos
GitHub Stats Streak

Community Contributions

80 merged PRs across 51 repos — 1M+ combined stars.

Security Tool Suites

Specialized tools organized by domain.

☁️ Cloud Security

🤖 AI/ML Security

🔌 Hardware Hacking

🔮 Julia Security Suite

🌐 Web Security

🖥️ N01D Desktop Suite

Blog

Technical deep-dives, project announcements, and security research.