diff --git a/malboxes/config-example.js b/malboxes/config-example.js index f19a44f..b88b70a 100644 --- a/malboxes/config-example.js +++ b/malboxes/config-example.js @@ -3,9 +3,9 @@ * Malboxes Example Configuration File * * Uncomment a specific section of the file to trigger a particular feature. - * - * Paths should be written using forward slashes even on Windows. - * For ex: C:/Tools + * + * Paths should be written using forward slashes even on Windows. + * For ex: C:/Tools */ // This allows you to use a local filestore for ISOs. diff --git a/malboxes/installconfig/windows_7x64/Autounattend.xml b/malboxes/installconfig/windows7_64/Autounattend.xml similarity index 100% rename from malboxes/installconfig/windows_7x64/Autounattend.xml rename to malboxes/installconfig/windows7_64/Autounattend.xml diff --git a/malboxes/installconfig/windows_7x64/enablewinrm.ps1 b/malboxes/installconfig/windows7_64/enablewinrm.ps1 similarity index 100% rename from malboxes/installconfig/windows_7x64/enablewinrm.ps1 rename to malboxes/installconfig/windows7_64/enablewinrm.ps1 diff --git a/malboxes/profiles/win7_64_analyst.json b/malboxes/profiles/win7_64_analyst.json new file mode 100644 index 0000000..61c3cec --- /dev/null +++ b/malboxes/profiles/win7_64_analyst.json @@ -0,0 +1,31 @@ +{ + "builders": [{ + "guest_os_type": "Windows7_64", + {% include 'snippets/builder_virtualbox_windows.json' %}, + + "iso_url": "file://{{ iso_path }}/en_windows_7_professional_with_sp1_x64_dvd_u_676939.iso", + "iso_checksum": "0bcfc54019ea175b1ee51f6d2b207a3d14dd2b58", + "iso_checksum_type": "sha1", + + "floppy_files": [ + "{{ cache_dir }}/Autounattend.xml", + "{{ dir }}/installconfig/windows7_64/enablewinrm.ps1" + ] + }], + + {% include 'snippets/postprocessor_vagrant.json' %}, + + "provisioners": [ + + {% include 'snippets/provision_powershell.json' %} + + {% if tools_path %}, + {% include 'snippets/tools.json' %} + {% endif %} + {% if ida_path %}, + {% include 'snippets/ida_remote_64.json' %}, + {% include 'snippets/ida_remote_32.json' %} + {% endif %} + + ] +}