├── .gitignore ├── INSTALL ├── LICENSE ├── README.md ├── SecurityOnionCon-ArmingSmallSecurityPrograms-Bropy.pptx ├── bropy.py ├── etc ├── baseline.data ├── baselinereport.bro └── bropy.cfg ├── modules ├── __init__.py ├── bropy_conparse.py ├── bropy_install.py ├── bropy_logs.py ├── bropy_menus.py └── bropy_rules.py └── output └── .empty /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | *.txt 3 | bropy.cfg 4 | -------------------------------------------------------------------------------- /INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashtagcyber/bropy/HEAD/INSTALL -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashtagcyber/bropy/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashtagcyber/bropy/HEAD/README.md -------------------------------------------------------------------------------- /SecurityOnionCon-ArmingSmallSecurityPrograms-Bropy.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashtagcyber/bropy/HEAD/SecurityOnionCon-ArmingSmallSecurityPrograms-Bropy.pptx -------------------------------------------------------------------------------- /bropy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashtagcyber/bropy/HEAD/bropy.py -------------------------------------------------------------------------------- /etc/baseline.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashtagcyber/bropy/HEAD/etc/baseline.data -------------------------------------------------------------------------------- /etc/baselinereport.bro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashtagcyber/bropy/HEAD/etc/baselinereport.bro -------------------------------------------------------------------------------- /etc/bropy.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashtagcyber/bropy/HEAD/etc/bropy.cfg -------------------------------------------------------------------------------- /modules/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/bropy_conparse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashtagcyber/bropy/HEAD/modules/bropy_conparse.py -------------------------------------------------------------------------------- /modules/bropy_install.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashtagcyber/bropy/HEAD/modules/bropy_install.py -------------------------------------------------------------------------------- /modules/bropy_logs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashtagcyber/bropy/HEAD/modules/bropy_logs.py -------------------------------------------------------------------------------- /modules/bropy_menus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashtagcyber/bropy/HEAD/modules/bropy_menus.py -------------------------------------------------------------------------------- /modules/bropy_rules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashtagcyber/bropy/HEAD/modules/bropy_rules.py -------------------------------------------------------------------------------- /output/.empty: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------