- Implement export-malicious-ips task that queries distinct IPs flagged
as is_suspicious from database and writes to exports/malicious_ips.txt
- Add exports volume mount to docker-compose.yaml for host persistence
- Update entrypoint.sh to fix ownership of exports directory for krawl user
- Update Dockerfile to create /app/exports directory during build
Other tasks can be added by creating them in the tasks dir using the same setup as this task.
All tasks *MUST* include a TASK_CONFIG dict and a main method in the file to work correctly.
11 lines
181 B
Plaintext
11 lines
181 B
Plaintext
# Krawl Honeypot Dependencies
|
|
# Install with: pip install -r requirements.txt
|
|
|
|
# Configuration
|
|
PyYAML>=6.0
|
|
|
|
# Database ORM
|
|
SQLAlchemy>=2.0.0,<3.0.0
|
|
|
|
# Scheduling
|
|
APScheduler>=3.11.2 |