├── .gitignore ├── README ├── Vagrantfile ├── debian-8.2.0-amd64.json ├── installconfig ├── debian │ └── preseed.cfg └── windows │ ├── Autounattend.xml │ └── enablewinrm.ps1 ├── scripts ├── common │ └── vagrantkey.sh ├── debian │ ├── cleanup.sh │ ├── installtools.sh │ ├── setnetwork.sh │ ├── update.sh │ └── vmtools.sh └── windows │ ├── enablerdp.ps1 │ ├── installtools.ps1 │ └── vmtools.ps1 ├── vagrantfiles ├── debian-8.2.0-amd64.rb └── windows-10-malware.rb └── windows-10-victim.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-dwyer/packer-malware/HEAD/.gitignore -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-dwyer/packer-malware/HEAD/README -------------------------------------------------------------------------------- /Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-dwyer/packer-malware/HEAD/Vagrantfile -------------------------------------------------------------------------------- /debian-8.2.0-amd64.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-dwyer/packer-malware/HEAD/debian-8.2.0-amd64.json -------------------------------------------------------------------------------- /installconfig/debian/preseed.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-dwyer/packer-malware/HEAD/installconfig/debian/preseed.cfg -------------------------------------------------------------------------------- /installconfig/windows/Autounattend.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-dwyer/packer-malware/HEAD/installconfig/windows/Autounattend.xml -------------------------------------------------------------------------------- /installconfig/windows/enablewinrm.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-dwyer/packer-malware/HEAD/installconfig/windows/enablewinrm.ps1 -------------------------------------------------------------------------------- /scripts/common/vagrantkey.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-dwyer/packer-malware/HEAD/scripts/common/vagrantkey.sh -------------------------------------------------------------------------------- /scripts/debian/cleanup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-dwyer/packer-malware/HEAD/scripts/debian/cleanup.sh -------------------------------------------------------------------------------- /scripts/debian/installtools.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-dwyer/packer-malware/HEAD/scripts/debian/installtools.sh -------------------------------------------------------------------------------- /scripts/debian/setnetwork.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-dwyer/packer-malware/HEAD/scripts/debian/setnetwork.sh -------------------------------------------------------------------------------- /scripts/debian/update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-dwyer/packer-malware/HEAD/scripts/debian/update.sh -------------------------------------------------------------------------------- /scripts/debian/vmtools.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-dwyer/packer-malware/HEAD/scripts/debian/vmtools.sh -------------------------------------------------------------------------------- /scripts/windows/enablerdp.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-dwyer/packer-malware/HEAD/scripts/windows/enablerdp.ps1 -------------------------------------------------------------------------------- /scripts/windows/installtools.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-dwyer/packer-malware/HEAD/scripts/windows/installtools.ps1 -------------------------------------------------------------------------------- /scripts/windows/vmtools.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-dwyer/packer-malware/HEAD/scripts/windows/vmtools.ps1 -------------------------------------------------------------------------------- /vagrantfiles/debian-8.2.0-amd64.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-dwyer/packer-malware/HEAD/vagrantfiles/debian-8.2.0-amd64.rb -------------------------------------------------------------------------------- /vagrantfiles/windows-10-malware.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-dwyer/packer-malware/HEAD/vagrantfiles/windows-10-malware.rb -------------------------------------------------------------------------------- /windows-10-victim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-dwyer/packer-malware/HEAD/windows-10-victim.json --------------------------------------------------------------------------------