Task (required)
Deliverables
Generate
Copy
Save to Library
Scan for Security
Generated prompt
🎮 SecureBank - AI Security Training Game
Interactive cybersecurity training with 60 AI-powered NPCs and progressive security challenges. Master prompt injection defense, social engineering detection, and security operations.
Game Features
🎯 Interactive Training
Talk with AI security analysts, SOC engineers, and compliance officers
🛡️ Prompt Injection Defense
Learn to detect and prevent 10+ attack types
🎨 AI-Generated Graphics
Cyberpunk-themed UI with unique NPC avatars
📈 Progressive Difficulty
From tutorial to master level challenges
🏆 Skill Development
XP system, leaderboards, and achievements
🔬 Educational Simulator
Test attack patterns in a safe environment
Departments & NPCs
Security Operations - 15 NPCs
Cloud Engineering - 12 NPCs
Network Security - 10 NPCs
IT Support - 8 NPCs
Compliance - 6 NPCs
Fraud Detection - 5 NPCs
Customer Service - 4 NPCs
🎮 Launch SecureBank Game
API Health Check
View API Docs
API Endpoints
GET
/api/v1/health - Game health & statistics
/api/v1/npcs - All 60 AI NPCs
/api/v1/injection/detect - Detect prompt injection attacks
/api/v1/injection/examples - Educational attack examples
POST
/api/v1/players/register - Create player account
/api/v1/challenges/start - Begin security challenge
/api/v1/npcs/interact - Chat with AI NPCs
🔒 Packet Scrubber
Enterprise packet analysis & threat intelligence platform
Features
🔍 DLP Scanning
Detect credit cards, SSNs, API keys, passwords
📁 File Extraction
Carve files from TCP streams
🌐 Protocol ID
Identify HTTP, DNS, FTP, SSH, and more
🔥 Firewall Detection
Track L2/L3 firewall responses
⚠️ Threat Intel
Check IPs against threat feeds
🌑 Streaming Feeds
Real-time threat intelligence
Open Packet Scrubber Web App
View on GitHub
CLI Tool
# Clone repository
git clone https://github.com/afterdarksys/packetscrubber.git
# Install dependencies
cd packetscrubber && pip install -r requirements.txt
# Analyze capture with all features
./packetscrubber.py capture.pcap -l -x -7 -b -v
API Integration
Integrate packet analysis into your applications
// Upload and analyze PCAP
const response = await fetch('/api/analyze', {
method: 'POST',
body: formData
});