diff --git a/Terraform/main.tf b/Terraform/main.tf
index 1e2dcb6..dc30ae6 100644
--- a/Terraform/main.tf
+++ b/Terraform/main.tf
@@ -189,6 +189,17 @@ resource "aws_instance" "logger" {
resource "aws_instance" "dc" {
instance_type = "t2.medium"
+ provisioner "remote-exec" {
+ inline = ["choco install -force -y winpcap"]
+
+ connection {
+ type = "winrm"
+ user = "vagrant"
+ password = "vagrant"
+ host = coalesce(self.public_ip, self.private_ip)
+ }
+ }
+
# Uses the local variable if external data source resolution fails
ami = coalesce(var.dc_ami, data.aws_ami.dc_ami.image_id)
@@ -208,6 +219,17 @@ resource "aws_instance" "dc" {
resource "aws_instance" "wef" {
instance_type = "t2.medium"
+ provisioner "remote-exec" {
+ inline = ["choco install -force -y winpcap"]
+
+ connection {
+ type = "winrm"
+ user = "vagrant"
+ password = "vagrant"
+ host = coalesce(self.public_ip, self.private_ip)
+ }
+ }
+
# Uses the local variable if external data source resolution fails
ami = coalesce(var.wef_ami, data.aws_ami.wef_ami.image_id)
@@ -227,6 +249,17 @@ resource "aws_instance" "wef" {
resource "aws_instance" "win10" {
instance_type = "t2.medium"
+ provisioner "remote-exec" {
+ inline = ["choco install -force -y winpcap"]
+
+ connection {
+ type = "winrm"
+ user = "vagrant"
+ password = "vagrant"
+ host = coalesce(self.public_ip, self.private_ip)
+ }
+ }
+
# Uses the local variable if external data source resolution fails
ami = coalesce(var.win10_ami, data.aws_ami.win10_ami.image_id)
diff --git a/Vagrant/Vagrantfile_Minimum b/Vagrant/Vagrantfile_Minimum
deleted file mode 100644
index 404791f..0000000
--- a/Vagrant/Vagrantfile_Minimum
+++ /dev/null
@@ -1,174 +0,0 @@
-Vagrant.configure("2") do |config|
-
- config.vm.define "logger" do |cfg|
- cfg.vm.box = "bento/ubuntu-16.04"
- cfg.vm.hostname = "logger"
- config.vm.provision :shell, path: "bootstrap.sh"
- cfg.vm.network :private_network, ip: "192.168.38.105", gateway: "192.168.38.1", dns: "8.8.8.8"
-
- cfg.vm.provider "vmware_desktop" do |v, override|
- v.vmx["displayname"] = "logger"
- v.memory = 4096
- v.cpus = 2
- v.gui = true
- end
-
- cfg.vm.provider "virtualbox" do |vb, override|
- vb.gui = true
- vb.name = "logger"
- vb.customize ["modifyvm", :id, "--memory", 4096]
- vb.customize ["modifyvm", :id, "--cpus", 2]
- vb.customize ["modifyvm", :id, "--vram", "32"]
- vb.customize ["modifyvm", :id, "--nicpromisc2", "allow-all"]
- vb.customize ["modifyvm", :id, "--clipboard", "bidirectional"]
- vb.customize ["setextradata", "global", "GUI/SuppressMessages", "all" ]
- end
- end
-
- config.vm.define "dc" do |cfg|
- cfg.vm.box = "detectionlab/win2016"
- cfg.vm.hostname = "dc"
- cfg.vm.boot_timeout = 600
- cfg.winrm.transport = :plaintext
- cfg.vm.communicator = "winrm"
- cfg.winrm.basic_auth_only = true
- cfg.winrm.timeout = 300
- cfg.winrm.retry_limit = 20
- cfg.vm.network :private_network, ip: "192.168.38.102", gateway: "192.168.38.1"
-
- cfg.vm.provision "shell", path: "scripts/fix-second-network.ps1", privileged: false, args: "192.168.38.102"
- cfg.vm.provision "shell", path: "scripts/provision.ps1", privileged: false
- cfg.vm.provision "reload"
- cfg.vm.provision "shell", path: "scripts/provision.ps1", privileged: false
- cfg.vm.provision "shell", path: "scripts/download_palantir_wef.ps1", privileged: false
- cfg.vm.provision "shell", path: "scripts/download_palantir_osquery.ps1", privileged: false
- cfg.vm.provision "shell", path: "scripts/install-splunkuf.ps1", privileged: false
- cfg.vm.provision "shell", path: "scripts/install-inputsconf.ps1", privileged: false
- cfg.vm.provision "shell", path: "scripts/install-utilities.ps1", privileged: false
- cfg.vm.provision "shell", path: "scripts/install-osquery.ps1", privileged: false
- cfg.vm.provision "shell", path: "scripts/install-sysinternals.ps1", privileged: false
- cfg.vm.provision "shell", path: "scripts/configure-ou.ps1", privileged: false
- cfg.vm.provision "shell", path: "scripts/configure-wef-gpo.ps1", privileged: false
- cfg.vm.provision "shell", path: "scripts/configure-powershelllogging.ps1", privileged: false
- cfg.vm.provision "shell", path: "scripts/configure-AuditingPolicyGPOs.ps1", privileged: false
- cfg.vm.provision "shell", path: "scripts/configure-rdp-user-gpo.ps1", privileged: false
- cfg.vm.provision "shell", path: "scripts/configure-disable-windows-defender-gpo.ps1", privileged: false
- cfg.vm.provision "shell", path: "scripts/install-autorunstowineventlog.ps1", privileged: false
- cfg.vm.provision "shell", inline: 'wevtutil el | Select-String -notmatch "Microsoft-Windows-LiveId" | Foreach-Object {wevtutil cl "$_"}', privileged: false
- cfg.vm.provision "shell", inline: "Set-SmbServerConfiguration -AuditSmb1Access $true -Force", privileged: false
-
- cfg.vm.provider "vmware_desktop" do |v, override|
- v.vmx["displayname"] = "dc.windomain.local"
- v.memory = 3072
- v.cpus = 2
- v.gui = true
- v.enable_vmrun_ip_lookup = false
- end
-
- cfg.vm.provider "virtualbox" do |vb, override|
- vb.gui = true
- vb.name = "dc.windomain.local"
- vb.default_nic_type = "82545EM"
- vb.customize ["modifyvm", :id, "--memory", 3072]
- vb.customize ["modifyvm", :id, "--cpus", 2]
- vb.customize ["modifyvm", :id, "--vram", "32"]
- vb.customize ["modifyvm", :id, "--clipboard", "bidirectional"]
- vb.customize ["setextradata", "global", "GUI/SuppressMessages", "all" ]
- end
- end
-
- config.vm.define "wef" do |cfg|
- cfg.vm.box = "detectionlab/win2016"
- cfg.vm.hostname = "wef"
- cfg.vm.boot_timeout = 600
- cfg.vm.communicator = "winrm"
- cfg.winrm.basic_auth_only = true
- cfg.winrm.timeout = 300
- cfg.winrm.retry_limit = 20
- cfg.vm.network :private_network, ip: "192.168.38.103", gateway: "192.168.38.1", dns: "192.168.38.102"
-
- cfg.vm.provision "shell", path: "scripts/fix-second-network.ps1", privileged: false, args: "-ip 192.168.38.103 -dns 192.168.38.102"
- cfg.vm.provision "shell", path: "scripts/provision.ps1", privileged: false
- cfg.vm.provision "reload"
- cfg.vm.provision "shell", path: "scripts/provision.ps1", privileged: false
- cfg.vm.provision "shell", path: "scripts/download_palantir_wef.ps1", privileged: false
- cfg.vm.provision "shell", path: "scripts/download_palantir_osquery.ps1", privileged: false
- cfg.vm.provision "shell", inline: 'wevtutil el | Select-String -notmatch "Microsoft-Windows-LiveId" | Foreach-Object {wevtutil cl "$_"}', privileged: false
- cfg.vm.provision "shell", path: "scripts/install-wefsubscriptions.ps1", privileged: false
- cfg.vm.provision "shell", path: "scripts/install-splunkuf.ps1", privileged: false
- cfg.vm.provision "shell", path: "scripts/install-windows_ta.ps1", privileged: false
- cfg.vm.provision "shell", path: "scripts/install-inputsconf.ps1", privileged: false
- cfg.vm.provision "shell", path: "scripts/install-utilities.ps1", privileged: false
- cfg.vm.provision "shell", path: "scripts/install-osquery.ps1", privileged: false
- cfg.vm.provision "shell", path: "scripts/install-sysinternals.ps1", privileged: false
- cfg.vm.provision "shell", path: "scripts/configure-pslogstranscriptsshare.ps1", privileged: false
- cfg.vm.provision "shell", path: "scripts/install-autorunstowineventlog.ps1", privileged: false
- cfg.vm.provision "shell", inline: "Set-SmbServerConfiguration -AuditSmb1Access $true -Force", privileged: false
-
- cfg.vm.provider "vmware_desktop" do |v, override|
- v.vmx["displayname"] = "wef.windomain.local"
- v.memory = 2048
- v.cpus = 2
- v.gui = true
- v.enable_vmrun_ip_lookup = false
- end
-
- cfg.vm.provider "virtualbox" do |vb, override|
- vb.gui = true
- vb.name = "wef.windomain.local"
- vb.default_nic_type = "82545EM"
- vb.customize ["modifyvm", :id, "--memory", 2048]
- vb.customize ["modifyvm", :id, "--cpus", 2]
- vb.customize ["modifyvm", :id, "--vram", "32"]
- vb.customize ["modifyvm", :id, "--clipboard", "bidirectional"]
- vb.customize ["setextradata", "global", "GUI/SuppressMessages", "all" ]
- end
- end
-
- config.vm.define "win10" do |cfg|
- cfg.vm.box = "detectionlab/win10"
- cfg.vm.hostname = "win10"
- cfg.vm.boot_timeout = 600
- cfg.vm.communicator = "winrm"
- cfg.winrm.basic_auth_only = true
- cfg.winrm.timeout = 300
- cfg.winrm.retry_limit = 20
- cfg.vm.network :private_network, ip: "192.168.38.104", gateway: "192.168.38.1", dns: "192.168.38.102"
-
- cfg.vm.provision "shell", path: "scripts/fix-second-network.ps1", privileged: false, args: "-ip 192.168.38.104 -dns 192.168.38.102"
- cfg.vm.provision "shell", path: "scripts/MakeWindows10GreatAgain.ps1", privileged: false
- cfg.vm.provision "shell", path: "scripts/provision.ps1", privileged: false
- cfg.vm.provision "reload"
- cfg.vm.provision "shell", path: "scripts/provision.ps1", privileged: false
- cfg.vm.provision "shell", path: "scripts/download_palantir_wef.ps1", privileged: false
- cfg.vm.provision "shell", path: "scripts/download_palantir_osquery.ps1", privileged: false
- cfg.vm.provision "shell", inline: 'wevtutil el | Select-String -notmatch "Microsoft-Windows-LiveId" | Foreach-Object {wevtutil cl "$_"}', privileged: false
- cfg.vm.provision "shell", path: "scripts/install-splunkuf.ps1", privileged: false
- cfg.vm.provision "shell", path: "scripts/install-utilities.ps1", privileged: false
- cfg.vm.provision "shell", path: "scripts/install-osquery.ps1", privileged: false
- cfg.vm.provision "shell", path: "scripts/install-inputsconf.ps1", privileged: false
- cfg.vm.provision "shell", path: "scripts/install-sysinternals.ps1", privileged: false
- cfg.vm.provision "shell", path: "scripts/install-autorunstowineventlog.ps1", privileged: false
-
- cfg.vm.provider "vmware_desktop" do |v, override|
- v.vmx["displayname"] = "win10.windomain.local"
- v.vmx["gui.fullscreenatpoweron"] = "FALSE"
- v.vmx["gui.viewModeAtPowerOn"] = "windowed"
- v.memory = 2048
- v.cpus = 1
- v.gui = true
- v.enable_vmrun_ip_lookup = false
- end
-
- cfg.vm.provider "virtualbox" do |vb, override|
- vb.gui = true
- vb.name = "win10.windomain.local"
- vb.default_nic_type = "82545EM"
- vb.customize ["modifyvm", :id, "--memory", 2048]
- vb.customize ["modifyvm", :id, "--cpus", 1]
- vb.customize ["modifyvm", :id, "--vram", "32"]
- vb.customize ["modifyvm", :id, "--clipboard", "bidirectional"]
- vb.customize ["setextradata", "global", "GUI/SuppressMessages", "all" ]
- end
- end
-end
diff --git a/Vagrant/bootstrap.sh b/Vagrant/bootstrap.sh
index c01d798..1e1279f 100644
--- a/Vagrant/bootstrap.sh
+++ b/Vagrant/bootstrap.sh
@@ -108,7 +108,8 @@ install_splunk() {
/opt/splunk/bin/splunk install app /vagrant/resources/splunk_server/force-directed-app-for-splunk_200.tgz -auth 'admin:changeme'
/opt/splunk/bin/splunk install app /vagrant/resources/splunk_server/punchcard-custom-visualization_130.tgz -auth 'admin:changeme'
/opt/splunk/bin/splunk install app /vagrant/resources/splunk_server/sankey-diagram-custom-visualization_130.tgz -auth 'admin:changeme'
- /opt/splunk/bin/splunk install app /vagrant/resources/splunk_server/threathunting_134.tgz -auth 'admin:changeme'
+ /opt/splunk/bin/splunk install app /vagrant/resources/splunk_server/link-analysis-app-for-splunk_161.tgz -auth 'admin:changeme'
+ /opt/splunk/bin/splunk install app /vagrant/resources/splunk_server/threathunting_141.tgz -auth 'admin:changeme'
# Uncomment the following block to install BOTSv2
# Thanks to @MHaggis for this addition!
diff --git a/Vagrant/resources/GPO/Domain_Controllers_Enhanced_Auditing_Policy/manifest.xml b/Vagrant/resources/GPO/Domain_Controllers_Enhanced_Auditing_Policy/manifest.xml
old mode 100644
new mode 100755
index 9b40820..b4f25f3
--- a/Vagrant/resources/GPO/Domain_Controllers_Enhanced_Auditing_Policy/manifest.xml
+++ b/Vagrant/resources/GPO/Domain_Controllers_Enhanced_Auditing_Policy/manifest.xml
@@ -1 +1 @@
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/Vagrant/resources/GPO/Domain_Controllers_Enhanced_Auditing_Policy/{3F2B9314-2D8F-452F-91CE-F9F13B04BA2C}/Backup.xml b/Vagrant/resources/GPO/Domain_Controllers_Enhanced_Auditing_Policy/{3F2B9314-2D8F-452F-91CE-F9F13B04BA2C}/Backup.xml
deleted file mode 100644
index 42ad845..0000000
--- a/Vagrant/resources/GPO/Domain_Controllers_Enhanced_Auditing_Policy/{3F2B9314-2D8F-452F-91CE-F9F13B04BA2C}/Backup.xml
+++ /dev/null
@@ -1,20 +0,0 @@
-
- 01 00 04 9c 00 00 00 00 00 00 00 00 00 00 00 00 14 00 00 00 04 00 ec 00 08 00 00 00 05 02 28 00 00 01 00 00 01 00 00 00 8f fd ac ed b3 ff d1 11 b4 1d 00 a0 c9 68 f9 39 01 01 00 00 00 00 00 05 0b 00 00 00 00 00 24 00 ff 00 0f 00 01 05 00 00 00 00 00 05 15 00 00 00 db e9 9a d1 f4 b8 d3 7a d7 39 83 51 e8 03 00 00 00 02 24 00 ff 00 0f 00 01 05 00 00 00 00 00 05 15 00 00 00 db e9 9a d1 f4 b8 d3 7a d7 39 83 51 00 02 00 00 00 02 24 00 ff 00 0f 00 01 05 00 00 00 00 00 05 15 00 00 00 db e9 9a d1 f4 b8 d3 7a d7 39 83 51 07 02 00 00 00 02 14 00 94 00 02 00 01 01 00 00 00 00 00 05 09 00 00 00 00 02 14 00 94 00 02 00 01 01 00 00 00 00 00 05 0b 00 00 00 00 02 14 00 ff 00 0f 00 01 01 00 00 00 00 00 05 12 00 00 00 00 0a 14 00 ff 00 0f 00 01 01 00 00 00 00 00 03 00 00 00 00
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/Vagrant/resources/GPO/Domain_Controllers_Enhanced_Auditing_Policy/{3F2B9314-2D8F-452F-91CE-F9F13B04BA2C}/bkupInfo.xml b/Vagrant/resources/GPO/Domain_Controllers_Enhanced_Auditing_Policy/{3F2B9314-2D8F-452F-91CE-F9F13B04BA2C}/bkupInfo.xml
deleted file mode 100644
index 3418a56..0000000
--- a/Vagrant/resources/GPO/Domain_Controllers_Enhanced_Auditing_Policy/{3F2B9314-2D8F-452F-91CE-F9F13B04BA2C}/bkupInfo.xml
+++ /dev/null
@@ -1 +0,0 @@
-
diff --git a/Vagrant/resources/GPO/Domain_Controllers_Enhanced_Auditing_Policy/{3F2B9314-2D8F-452F-91CE-F9F13B04BA2C}/gpreport.xml b/Vagrant/resources/GPO/Domain_Controllers_Enhanced_Auditing_Policy/{3F2B9314-2D8F-452F-91CE-F9F13B04BA2C}/gpreport.xml
deleted file mode 100644
index e187877..0000000
Binary files a/Vagrant/resources/GPO/Domain_Controllers_Enhanced_Auditing_Policy/{3F2B9314-2D8F-452F-91CE-F9F13B04BA2C}/gpreport.xml and /dev/null differ
diff --git a/Vagrant/resources/GPO/Domain_Controllers_Enhanced_Auditing_Policy/{5CCBF08F-6806-4F18-BF5E-AF470F4A6EA3}/Backup.xml b/Vagrant/resources/GPO/Domain_Controllers_Enhanced_Auditing_Policy/{5CCBF08F-6806-4F18-BF5E-AF470F4A6EA3}/Backup.xml
new file mode 100644
index 0000000..d35589a
--- /dev/null
+++ b/Vagrant/resources/GPO/Domain_Controllers_Enhanced_Auditing_Policy/{5CCBF08F-6806-4F18-BF5E-AF470F4A6EA3}/Backup.xml
@@ -0,0 +1,20 @@
+
+ 01 00 04 9c 00 00 00 00 00 00 00 00 00 00 00 00 14 00 00 00 04 00 ec 00 08 00 00 00 05 02 28 00 00 01 00 00 01 00 00 00 8f fd ac ed b3 ff d1 11 b4 1d 00 a0 c9 68 f9 39 01 01 00 00 00 00 00 05 0b 00 00 00 00 00 24 00 ff 00 0f 00 01 05 00 00 00 00 00 05 15 00 00 00 13 3a 2e 03 43 8b 55 48 45 83 43 ed e8 03 00 00 00 02 24 00 ff 00 0f 00 01 05 00 00 00 00 00 05 15 00 00 00 13 3a 2e 03 43 8b 55 48 45 83 43 ed 00 02 00 00 00 02 24 00 ff 00 0f 00 01 05 00 00 00 00 00 05 15 00 00 00 13 3a 2e 03 43 8b 55 48 45 83 43 ed 07 02 00 00 00 02 14 00 94 00 02 00 01 01 00 00 00 00 00 05 09 00 00 00 00 02 14 00 94 00 02 00 01 01 00 00 00 00 00 05 0b 00 00 00 00 02 14 00 ff 00 0f 00 01 01 00 00 00 00 00 05 12 00 00 00 00 0a 14 00 ff 00 0f 00 01 01 00 00 00 00 00 03 00 00 00 00
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Vagrant/resources/GPO/Domain_Controllers_Enhanced_Auditing_Policy/{3F2B9314-2D8F-452F-91CE-F9F13B04BA2C}/DomainSysvol/GPO/Machine/Preferences/Registry/Registry.xml b/Vagrant/resources/GPO/Domain_Controllers_Enhanced_Auditing_Policy/{5CCBF08F-6806-4F18-BF5E-AF470F4A6EA3}/DomainSysvol/GPO/Machine/Preferences/Registry/Registry.xml
similarity index 100%
rename from Vagrant/resources/GPO/Domain_Controllers_Enhanced_Auditing_Policy/{3F2B9314-2D8F-452F-91CE-F9F13B04BA2C}/DomainSysvol/GPO/Machine/Preferences/Registry/Registry.xml
rename to Vagrant/resources/GPO/Domain_Controllers_Enhanced_Auditing_Policy/{5CCBF08F-6806-4F18-BF5E-AF470F4A6EA3}/DomainSysvol/GPO/Machine/Preferences/Registry/Registry.xml
diff --git a/Vagrant/resources/GPO/Domain_Controllers_Enhanced_Auditing_Policy/{3F2B9314-2D8F-452F-91CE-F9F13B04BA2C}/DomainSysvol/GPO/Machine/comment.cmtx b/Vagrant/resources/GPO/Domain_Controllers_Enhanced_Auditing_Policy/{5CCBF08F-6806-4F18-BF5E-AF470F4A6EA3}/DomainSysvol/GPO/Machine/comment.cmtx
similarity index 100%
rename from Vagrant/resources/GPO/Domain_Controllers_Enhanced_Auditing_Policy/{3F2B9314-2D8F-452F-91CE-F9F13B04BA2C}/DomainSysvol/GPO/Machine/comment.cmtx
rename to Vagrant/resources/GPO/Domain_Controllers_Enhanced_Auditing_Policy/{5CCBF08F-6806-4F18-BF5E-AF470F4A6EA3}/DomainSysvol/GPO/Machine/comment.cmtx
diff --git a/Vagrant/resources/GPO/Domain_Controllers_Enhanced_Auditing_Policy/{3F2B9314-2D8F-452F-91CE-F9F13B04BA2C}/DomainSysvol/GPO/Machine/microsoft/windows nt/Audit/audit.csv b/Vagrant/resources/GPO/Domain_Controllers_Enhanced_Auditing_Policy/{5CCBF08F-6806-4F18-BF5E-AF470F4A6EA3}/DomainSysvol/GPO/Machine/microsoft/windows nt/Audit/audit.csv
similarity index 100%
rename from Vagrant/resources/GPO/Domain_Controllers_Enhanced_Auditing_Policy/{3F2B9314-2D8F-452F-91CE-F9F13B04BA2C}/DomainSysvol/GPO/Machine/microsoft/windows nt/Audit/audit.csv
rename to Vagrant/resources/GPO/Domain_Controllers_Enhanced_Auditing_Policy/{5CCBF08F-6806-4F18-BF5E-AF470F4A6EA3}/DomainSysvol/GPO/Machine/microsoft/windows nt/Audit/audit.csv
diff --git a/Vagrant/resources/GPO/Domain_Controllers_Enhanced_Auditing_Policy/{3F2B9314-2D8F-452F-91CE-F9F13B04BA2C}/DomainSysvol/GPO/Machine/microsoft/windows nt/SecEdit/GptTmpl.inf b/Vagrant/resources/GPO/Domain_Controllers_Enhanced_Auditing_Policy/{5CCBF08F-6806-4F18-BF5E-AF470F4A6EA3}/DomainSysvol/GPO/Machine/microsoft/windows nt/SecEdit/GptTmpl.inf
similarity index 91%
rename from Vagrant/resources/GPO/Domain_Controllers_Enhanced_Auditing_Policy/{3F2B9314-2D8F-452F-91CE-F9F13B04BA2C}/DomainSysvol/GPO/Machine/microsoft/windows nt/SecEdit/GptTmpl.inf
rename to Vagrant/resources/GPO/Domain_Controllers_Enhanced_Auditing_Policy/{5CCBF08F-6806-4F18-BF5E-AF470F4A6EA3}/DomainSysvol/GPO/Machine/microsoft/windows nt/SecEdit/GptTmpl.inf
index f44ee35..30730f1 100644
Binary files a/Vagrant/resources/GPO/Domain_Controllers_Enhanced_Auditing_Policy/{3F2B9314-2D8F-452F-91CE-F9F13B04BA2C}/DomainSysvol/GPO/Machine/microsoft/windows nt/SecEdit/GptTmpl.inf and b/Vagrant/resources/GPO/Domain_Controllers_Enhanced_Auditing_Policy/{5CCBF08F-6806-4F18-BF5E-AF470F4A6EA3}/DomainSysvol/GPO/Machine/microsoft/windows nt/SecEdit/GptTmpl.inf differ
diff --git a/Vagrant/resources/GPO/Domain_Controllers_Enhanced_Auditing_Policy/{3F2B9314-2D8F-452F-91CE-F9F13B04BA2C}/DomainSysvol/GPO/Machine/registry.pol b/Vagrant/resources/GPO/Domain_Controllers_Enhanced_Auditing_Policy/{5CCBF08F-6806-4F18-BF5E-AF470F4A6EA3}/DomainSysvol/GPO/Machine/registry.pol
similarity index 100%
rename from Vagrant/resources/GPO/Domain_Controllers_Enhanced_Auditing_Policy/{3F2B9314-2D8F-452F-91CE-F9F13B04BA2C}/DomainSysvol/GPO/Machine/registry.pol
rename to Vagrant/resources/GPO/Domain_Controllers_Enhanced_Auditing_Policy/{5CCBF08F-6806-4F18-BF5E-AF470F4A6EA3}/DomainSysvol/GPO/Machine/registry.pol
diff --git a/Vagrant/resources/GPO/Domain_Controllers_Enhanced_Auditing_Policy/{5CCBF08F-6806-4F18-BF5E-AF470F4A6EA3}/bkupInfo.xml b/Vagrant/resources/GPO/Domain_Controllers_Enhanced_Auditing_Policy/{5CCBF08F-6806-4F18-BF5E-AF470F4A6EA3}/bkupInfo.xml
new file mode 100644
index 0000000..7e2d87c
--- /dev/null
+++ b/Vagrant/resources/GPO/Domain_Controllers_Enhanced_Auditing_Policy/{5CCBF08F-6806-4F18-BF5E-AF470F4A6EA3}/bkupInfo.xml
@@ -0,0 +1 @@
+
diff --git a/Vagrant/resources/GPO/Domain_Controllers_Enhanced_Auditing_Policy/{5CCBF08F-6806-4F18-BF5E-AF470F4A6EA3}/gpreport.xml b/Vagrant/resources/GPO/Domain_Controllers_Enhanced_Auditing_Policy/{5CCBF08F-6806-4F18-BF5E-AF470F4A6EA3}/gpreport.xml
new file mode 100644
index 0000000..00be37a
Binary files /dev/null and b/Vagrant/resources/GPO/Domain_Controllers_Enhanced_Auditing_Policy/{5CCBF08F-6806-4F18-BF5E-AF470F4A6EA3}/gpreport.xml differ
diff --git a/Vagrant/resources/GPO/disable_windows_defender/manifest.xml b/Vagrant/resources/GPO/disable_windows_defender/manifest.xml
index b7030ee..2382df2 100755
--- a/Vagrant/resources/GPO/disable_windows_defender/manifest.xml
+++ b/Vagrant/resources/GPO/disable_windows_defender/manifest.xml
@@ -1 +1 @@
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/Vagrant/resources/splunk_server/link-analysis-app-for-splunk_161.tgz b/Vagrant/resources/splunk_server/link-analysis-app-for-splunk_161.tgz
new file mode 100644
index 0000000..b714760
Binary files /dev/null and b/Vagrant/resources/splunk_server/link-analysis-app-for-splunk_161.tgz differ
diff --git a/Vagrant/resources/splunk_server/threathunting_134.tgz b/Vagrant/resources/splunk_server/threathunting_134.tgz
deleted file mode 100644
index 6474a9d..0000000
Binary files a/Vagrant/resources/splunk_server/threathunting_134.tgz and /dev/null differ
diff --git a/Vagrant/resources/splunk_server/threathunting_141.tgz b/Vagrant/resources/splunk_server/threathunting_141.tgz
new file mode 100644
index 0000000..53343e3
Binary files /dev/null and b/Vagrant/resources/splunk_server/threathunting_141.tgz differ