-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathwindows-10-victim.json
61 lines (49 loc) · 1.46 KB
/
windows-10-victim.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"variables": {
"winrm_user": "vagrant",
"winrm_pass": "vagrant",
"name": "win10victim"
},
"builders": [{
"type": "virtualbox-iso",
"guest_os_type": "Windows10_64",
"guest_additions_mode": "attach",
"headless": "false",
"communicator": "winrm",
"vboxmanage": [
["modifyvm", "{{.Name}}", "--memory", "4096"],
["modifyvm", "{{.Name}}", "--cpus", "1"]
],
"vboxmanage_post": [
["modifyvm", "{{.Name}}", "--nic1", "intnet"],
["modifyvm", "{{.Name}}", "--intnet1", "malwarelab"]
],
"disk_size": "15360",
"output_directory": "builds",
"iso_url": "http://care.dlservice.microsoft.com/dl/download/C/3/9/C399EEA8-135D-4207-92C9-6AAB3259F6EF/10240.16384.150709-1700.TH1_CLIENTENTERPRISEEVAL_OEMRET_X64FRE_EN-US.ISO",
"iso_checksum": "56ab095075be28a90bc0b510835280975c6bb2ce",
"iso_checksum_type": "sha1",
"winrm_username": "{{user `winrm_user`}}",
"winrm_password": "{{user `winrm_pass`}}",
"winrm_timeout": "30m",
"shutdown_command": "shutdown /s /f /t 10",
"boot_wait": "10s",
"floppy_files": [
"installconfig/windows/Autounattend.xml",
"installconfig/windows/enablewinrm.ps1"
]
}],
"post-processors": [{
"type": "vagrant",
"output": "boxes/{{user `name`}}.box",
"vagrantfile_template": "vagrantfiles/windows-10-malware.rb"
}],
"provisioners": [{
"type": "powershell",
"scripts": [
"scripts/windows/vmtools.ps1",
"scripts/windows/enablerdp.ps1",
"scripts/windows/installtools.ps1"
]
}]
}