├── README.md ├── config.json ├── data └── formatted_reports │ ├── asset_tags.csv │ ├── asset_vulnerabilities.csv │ └── indicators.csv ├── plugin ├── profile │ ├── decode_as_entries │ ├── disabled_protos │ ├── enabled_protos │ ├── heuristic_protos │ ├── io_graphs │ ├── preferences │ └── recent └── wireshark_forensics_toolkit.lua ├── wft.exe └── wft.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjbhide/wireshark-forensics-plugin/HEAD/README.md -------------------------------------------------------------------------------- /config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjbhide/wireshark-forensics-plugin/HEAD/config.json -------------------------------------------------------------------------------- /data/formatted_reports/asset_tags.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjbhide/wireshark-forensics-plugin/HEAD/data/formatted_reports/asset_tags.csv -------------------------------------------------------------------------------- /data/formatted_reports/asset_vulnerabilities.csv: -------------------------------------------------------------------------------- 1 | ip,os,top_cvss_score,cve_ids 2 | -------------------------------------------------------------------------------- /data/formatted_reports/indicators.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjbhide/wireshark-forensics-plugin/HEAD/data/formatted_reports/indicators.csv -------------------------------------------------------------------------------- /plugin/profile/decode_as_entries: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjbhide/wireshark-forensics-plugin/HEAD/plugin/profile/decode_as_entries -------------------------------------------------------------------------------- /plugin/profile/disabled_protos: -------------------------------------------------------------------------------- 1 | prp 2 | stcsig 3 | transum 4 | -------------------------------------------------------------------------------- /plugin/profile/enabled_protos: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugin/profile/heuristic_protos: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjbhide/wireshark-forensics-plugin/HEAD/plugin/profile/heuristic_protos -------------------------------------------------------------------------------- /plugin/profile/io_graphs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjbhide/wireshark-forensics-plugin/HEAD/plugin/profile/io_graphs -------------------------------------------------------------------------------- /plugin/profile/preferences: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjbhide/wireshark-forensics-plugin/HEAD/plugin/profile/preferences -------------------------------------------------------------------------------- /plugin/profile/recent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjbhide/wireshark-forensics-plugin/HEAD/plugin/profile/recent -------------------------------------------------------------------------------- /plugin/wireshark_forensics_toolkit.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjbhide/wireshark-forensics-plugin/HEAD/plugin/wireshark_forensics_toolkit.lua -------------------------------------------------------------------------------- /wft.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjbhide/wireshark-forensics-plugin/HEAD/wft.exe -------------------------------------------------------------------------------- /wft.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjbhide/wireshark-forensics-plugin/HEAD/wft.py --------------------------------------------------------------------------------