This commit is contained in:
pwn
2025-12-14 14:46:45 +03:00
parent d45ca06d07
commit 9b66143f5a
4 changed files with 923 additions and 0 deletions

16
neuralink/run_async.py Executable file
View File

@@ -0,0 +1,16 @@
#!/usr/bin/env python3
"""
Runner script for the async security service with automatic flag submission.
"""
import sys
import os
# Add the build/service directory to the path
sys.path.insert(0, os.path.join(os.path.dirname(__file__), "build", "service"))
from security_service_async import main
import asyncio
if __name__ == "__main__":
asyncio.run(main())