enygma / expose

An Intrusion Detection System library loosely based on PHP IDS
MIT License
266 stars 55 forks source link

Allow "offline" processing of data #9

Open enygma opened 11 years ago

enygma commented 11 years ago

Instead of trying to process all data at runtime, give the option to "queue" up the requests and analyze them by a cron job or some other monitoring process.

To implement:

  1. Store incoming data (serialized maybe?) into the data storage (Mongo right now)
  2. Create a console command to pull out the items not marked as processed and evaluate
  3. Report these back to an admin user or some other alerting system
enygma commented 11 years ago

This is currently implemented except for number 3 on the list - this is related to #12