From c20e2135edc4d709999ddd0fe69752e12f73a861 Mon Sep 17 00:00:00 2001 From: Makenzie Schwartz Date: Mon, 20 Jan 2020 20:40:06 -0800 Subject: [PATCH] Fix incorrect reg value type (#780) --- atomics/T1015/T1015.yaml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/atomics/T1015/T1015.yaml b/atomics/T1015/T1015.yaml index 3c984d0d..24754b05 100644 --- a/atomics/T1015/T1015.yaml +++ b/atomics/T1015/T1015.yaml @@ -25,7 +25,7 @@ atomic_tests: IF(!(Test-Path $registryPath)) { New-Item -Path $registryPath -Force - New-ItemProperty -Path $registryPath -Name $name -Value $Value -PropertyType DWORD -Force + New-ItemProperty -Path $registryPath -Name $name -Value $Value -PropertyType STRING -Force } ELSE { @@ -57,7 +57,7 @@ atomic_tests: IF(!(Test-Path $registryPath)) { New-Item -Path $registryPath -Force - New-ItemProperty -Path $registryPath -Name $name -Value $Value -PropertyType DWORD -Force + New-ItemProperty -Path $registryPath -Name $name -Value $Value -PropertyType STRING -Force } ELSE { @@ -88,7 +88,7 @@ atomic_tests: IF(!(Test-Path $registryPath)) { New-Item -Path $registryPath -Force - New-ItemProperty -Path $registryPath -Name $name -Value $Value -PropertyType DWORD -Force + New-ItemProperty -Path $registryPath -Name $name -Value $Value -PropertyType STRING -Force } ELSE { @@ -119,7 +119,7 @@ atomic_tests: IF(!(Test-Path $registryPath)) { New-Item -Path $registryPath -Force - New-ItemProperty -Path $registryPath -Name $name -Value $Value -PropertyType DWORD -Force + New-ItemProperty -Path $registryPath -Name $name -Value $Value -PropertyType STRING -Force } ELSE { @@ -150,7 +150,7 @@ atomic_tests: IF(!(Test-Path $registryPath)) { New-Item -Path $registryPath -Force - New-ItemProperty -Path $registryPath -Name $name -Value $Value -PropertyType DWORD -Force + New-ItemProperty -Path $registryPath -Name $name -Value $Value -PropertyType STRING -Force } ELSE { @@ -182,7 +182,7 @@ atomic_tests: IF(!(Test-Path $registryPath)) { New-Item -Path $registryPath -Force - New-ItemProperty -Path $registryPath -Name $name -Value $Value -PropertyType DWORD -Force + New-ItemProperty -Path $registryPath -Name $name -Value $Value -PropertyType STRING -Force } ELSE { @@ -214,7 +214,7 @@ atomic_tests: IF(!(Test-Path $registryPath)) { New-Item -Path $registryPath -Force | Out-Null - New-ItemProperty -Path $registryPath -Name $name -Value $Value -PropertyType DWORD -Force + New-ItemProperty -Path $registryPath -Name $name -Value $Value -PropertyType STRING -Force } ELSE {