-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathquick_test.py
More file actions
41 lines (35 loc) · 1.09 KB
/
quick_test.py
File metadata and controls
41 lines (35 loc) · 1.09 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
#!/usr/bin/env python3
"""Quick test to show IntelProbe is working"""
print("🚀 INTELLIPROBE STATUS CHECK")
print("=" * 50)
# Test 1: Core Import
try:
import core
print("✅ Core module: WORKING")
print(f" 📧 Author: {core.__author__}")
print(f" 📄 License: {core.__license__}")
except Exception as e:
print(f"❌ Core module: {e}")
# Test 2: Scanner Import
try:
from core.scanner import EnhancedScanner
print("✅ Enhanced Scanner: WORKING")
except Exception as e:
print(f"❌ Enhanced Scanner: {e}")
# Test 3: AI Engine Import
try:
from core.ai_engine import AIEngine
print("✅ AI Engine: WORKING")
except Exception as e:
print(f"❌ AI Engine: {e}")
# Test 4: Gemini AI
try:
import google.generativeai as genai
print("✅ Google Gemini AI: WORKING")
except Exception as e:
print(f"❌ Google Gemini AI: {e}")
print("\n🎉 INTELLIPROBE IS READY!")
print("🛡️ Your AI-powered network security scanner is operational!")
print("🤖 Gemini AI integration: ACTIVE")
print("📊 Multi-threaded scanning: ENABLED")
print("⚡ All systems: GO!")