├── LICENSE ├── README.md ├── agent ├── agent.py ├── agent_config.py ├── com.mcarmanize.esfriend_agent.plist ├── database.py ├── eslogger.py ├── eslogger_close.py ├── eslogger_exec.py ├── log.py ├── tcpdump.py └── utility.py ├── esfriend ├── analyze.py ├── config.py ├── database.py ├── esfriend.py ├── goodlist.py ├── machine.py ├── mitm.py ├── process_list.py ├── save_headers.py ├── static │ └── css │ │ └── main.css ├── submit.py ├── templates │ ├── base.html │ ├── events.html │ ├── logstream_messages.html │ ├── logstream_subsystems.html │ ├── proc_events.html │ ├── processes.html │ ├── report.html │ └── table.html ├── utility.py └── web.py └── requirements.txt /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcarmanize/esfriend/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcarmanize/esfriend/HEAD/README.md -------------------------------------------------------------------------------- /agent/agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcarmanize/esfriend/HEAD/agent/agent.py -------------------------------------------------------------------------------- /agent/agent_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcarmanize/esfriend/HEAD/agent/agent_config.py -------------------------------------------------------------------------------- /agent/com.mcarmanize.esfriend_agent.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcarmanize/esfriend/HEAD/agent/com.mcarmanize.esfriend_agent.plist -------------------------------------------------------------------------------- /agent/database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcarmanize/esfriend/HEAD/agent/database.py -------------------------------------------------------------------------------- /agent/eslogger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcarmanize/esfriend/HEAD/agent/eslogger.py -------------------------------------------------------------------------------- /agent/eslogger_close.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcarmanize/esfriend/HEAD/agent/eslogger_close.py -------------------------------------------------------------------------------- /agent/eslogger_exec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcarmanize/esfriend/HEAD/agent/eslogger_exec.py -------------------------------------------------------------------------------- /agent/log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcarmanize/esfriend/HEAD/agent/log.py -------------------------------------------------------------------------------- /agent/tcpdump.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcarmanize/esfriend/HEAD/agent/tcpdump.py -------------------------------------------------------------------------------- /agent/utility.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcarmanize/esfriend/HEAD/agent/utility.py -------------------------------------------------------------------------------- /esfriend/analyze.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcarmanize/esfriend/HEAD/esfriend/analyze.py -------------------------------------------------------------------------------- /esfriend/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcarmanize/esfriend/HEAD/esfriend/config.py -------------------------------------------------------------------------------- /esfriend/database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcarmanize/esfriend/HEAD/esfriend/database.py -------------------------------------------------------------------------------- /esfriend/esfriend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcarmanize/esfriend/HEAD/esfriend/esfriend.py -------------------------------------------------------------------------------- /esfriend/goodlist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcarmanize/esfriend/HEAD/esfriend/goodlist.py -------------------------------------------------------------------------------- /esfriend/machine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcarmanize/esfriend/HEAD/esfriend/machine.py -------------------------------------------------------------------------------- /esfriend/mitm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcarmanize/esfriend/HEAD/esfriend/mitm.py -------------------------------------------------------------------------------- /esfriend/process_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcarmanize/esfriend/HEAD/esfriend/process_list.py -------------------------------------------------------------------------------- /esfriend/save_headers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcarmanize/esfriend/HEAD/esfriend/save_headers.py -------------------------------------------------------------------------------- /esfriend/static/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcarmanize/esfriend/HEAD/esfriend/static/css/main.css -------------------------------------------------------------------------------- /esfriend/submit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcarmanize/esfriend/HEAD/esfriend/submit.py -------------------------------------------------------------------------------- /esfriend/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcarmanize/esfriend/HEAD/esfriend/templates/base.html -------------------------------------------------------------------------------- /esfriend/templates/events.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcarmanize/esfriend/HEAD/esfriend/templates/events.html -------------------------------------------------------------------------------- /esfriend/templates/logstream_messages.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcarmanize/esfriend/HEAD/esfriend/templates/logstream_messages.html -------------------------------------------------------------------------------- /esfriend/templates/logstream_subsystems.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcarmanize/esfriend/HEAD/esfriend/templates/logstream_subsystems.html -------------------------------------------------------------------------------- /esfriend/templates/proc_events.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcarmanize/esfriend/HEAD/esfriend/templates/proc_events.html -------------------------------------------------------------------------------- /esfriend/templates/processes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcarmanize/esfriend/HEAD/esfriend/templates/processes.html -------------------------------------------------------------------------------- /esfriend/templates/report.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcarmanize/esfriend/HEAD/esfriend/templates/report.html -------------------------------------------------------------------------------- /esfriend/templates/table.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcarmanize/esfriend/HEAD/esfriend/templates/table.html -------------------------------------------------------------------------------- /esfriend/utility.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcarmanize/esfriend/HEAD/esfriend/utility.py -------------------------------------------------------------------------------- /esfriend/web.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcarmanize/esfriend/HEAD/esfriend/web.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcarmanize/esfriend/HEAD/requirements.txt --------------------------------------------------------------------------------