├── .gitignore ├── README.md ├── Vagrantfile ├── bootstrap.sh └── resources ├── disablesid.conf ├── pulledpork.conf └── suricata.yaml /.gitignore: -------------------------------------------------------------------------------- 1 | .vagrant 2 | .DS_Store 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clong/vagrant-ids/HEAD/README.md -------------------------------------------------------------------------------- /Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clong/vagrant-ids/HEAD/Vagrantfile -------------------------------------------------------------------------------- /bootstrap.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clong/vagrant-ids/HEAD/bootstrap.sh -------------------------------------------------------------------------------- /resources/disablesid.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clong/vagrant-ids/HEAD/resources/disablesid.conf -------------------------------------------------------------------------------- /resources/pulledpork.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clong/vagrant-ids/HEAD/resources/pulledpork.conf -------------------------------------------------------------------------------- /resources/suricata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clong/vagrant-ids/HEAD/resources/suricata.yaml --------------------------------------------------------------------------------