Browse Source

minor modifications to fix privacy script

pull/2/head
Alex Hirsch 9 years ago
parent
commit
7265a45b76
  1. 72
      scripts/fix-privacy-settings.ps1

72
scripts/fix-privacy-settings.ps1

@ -3,7 +3,7 @@
# is work in progress! # is work in progress!
function regimport($reg) { function Import-Registry($reg) {
# add reg file hander # add reg file hander
$reg = "Windows Registry Editor Version 5.00`r`n`r`n" + $reg $reg = "Windows Registry Editor Version 5.00`r`n`r`n" + $reg
@ -14,42 +14,62 @@ function regimport($reg) {
rm $regfile rm $regfile
} }
function Takeown-Registry($key) {
# TODO works only for LocalMachine for now
$key = $key.substring(19)
# set owner
$key = [Microsoft.Win32.Registry]::LocalMachine.OpenSubKey("SOFTWARE\Microsoft\Windows Defender\Spynet", "ReadWriteSubTree", "TakeOwnership")
$owner = [Security.Principal.NTAccount]"Administrators"
$acl = $key.GetAccessControl()
$acl.SetOwner($owner)
$key.SetAccessControl($acl)
# set FullControl
$acl = $key.GetAccessControl()
$rule = New-Object System.Security.AccessControl.RegistryAccessRule("Administrators", "FullControl", "Allow")
$acl.SetAccessRule($rule)
$key.SetAccessControl($acl)
}
function Enable-Privilege { function Enable-Privilege {
param($Privilege) param($Privilege)
$Definition = @" $Definition = @"
using System; using System;
using System.Runtime.InteropServices; using System.Runtime.InteropServices;
public class AdjPriv { public class AdjPriv {
[DllImport("advapi32.dll", ExactSpelling = true, SetLastError = true)] [DllImport("advapi32.dll", ExactSpelling = true, SetLastError = true)]
internal static extern bool AdjustTokenPrivileges(IntPtr htok, bool disall, internal static extern bool AdjustTokenPrivileges(IntPtr htok, bool disall, ref TokPriv1Luid newst, int len, IntPtr prev, IntPtr rele);
ref TokPriv1Luid newst, int len, IntPtr prev, IntPtr rele);
[DllImport("advapi32.dll", ExactSpelling = true, SetLastError = true)] [DllImport("advapi32.dll", ExactSpelling = true, SetLastError = true)]
internal static extern bool OpenProcessToken(IntPtr h, int acc, ref IntPtr phtok); internal static extern bool OpenProcessToken(IntPtr h, int acc, ref IntPtr phtok);
[DllImport("advapi32.dll", SetLastError = true)] [DllImport("advapi32.dll", SetLastError = true)]
internal static extern bool LookupPrivilegeValue(string host, string name, internal static extern bool LookupPrivilegeValue(string host, string name, ref long pluid);
ref long pluid);
[StructLayout(LayoutKind.Sequential, Pack = 1)] [StructLayout(LayoutKind.Sequential, Pack = 1)]
internal struct TokPriv1Luid { internal struct TokPriv1Luid {
public int Count; public int Count;
public long Luid; public long Luid;
public int Attr; public int Attr;
} }
internal const int SE_PRIVILEGE_ENABLED = 0x00000002; internal const int SE_PRIVILEGE_ENABLED = 0x00000002;
internal const int TOKEN_QUERY = 0x00000008; internal const int TOKEN_QUERY = 0x00000008;
internal const int TOKEN_ADJUST_PRIVILEGES = 0x00000020; internal const int TOKEN_ADJUST_PRIVILEGES = 0x00000020;
public static bool EnablePrivilege(long processHandle, string privilege) { public static bool EnablePrivilege(long processHandle, string privilege) {
bool retVal; bool retVal;
TokPriv1Luid tp; TokPriv1Luid tp;
IntPtr hproc = new IntPtr(processHandle); IntPtr hproc = new IntPtr(processHandle);
IntPtr htok = IntPtr.Zero; IntPtr htok = IntPtr.Zero;
retVal = OpenProcessToken(hproc, TOKEN_ADJUST_PRIVILEGES | TOKEN_QUERY, retVal = OpenProcessToken(hproc, TOKEN_ADJUST_PRIVILEGES | TOKEN_QUERY, ref htok);
ref htok);
tp.Count = 1; tp.Count = 1;
tp.Luid = 0; tp.Luid = 0;
tp.Attr = SE_PRIVILEGE_ENABLED; tp.Attr = SE_PRIVILEGE_ENABLED;
retVal = LookupPrivilegeValue(null, privilege, ref tp.Luid); retVal = LookupPrivilegeValue(null, privilege, ref tp.Luid);
retVal = AdjustTokenPrivileges(htok, false, ref tp, 0, IntPtr.Zero, retVal = AdjustTokenPrivileges(htok, false, ref tp, 0, IntPtr.Zero, IntPtr.Zero);
IntPtr.Zero);
return retVal; return retVal;
} }
} }
@ -60,11 +80,14 @@ function Enable-Privilege {
} }
echo "Elevating priviledges for this process"
do {} until (Enable-Privilege SeTakeOwnershipPrivilege)
echo "Defuse Windows search settings" echo "Defuse Windows search settings"
Set-WindowsSearchSetting -EnableWebResultsSetting $false Set-WindowsSearchSetting -EnableWebResultsSetting $false
echo "Set general privacy options" echo "Set general privacy options"
regimport(@" Import-Registry(@"
[HKEY_CURRENT_USER\Control Panel\International\User Profile] [HKEY_CURRENT_USER\Control Panel\International\User Profile]
"HttpAcceptLanguageOptOut"=dword:00000001 "HttpAcceptLanguageOptOut"=dword:00000001
@ -84,7 +107,7 @@ regimport(@"
"@) "@)
echo "Disable synchronisation of settings" echo "Disable synchronisation of settings"
regimport(@" Import-Registry(@"
[HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\SettingSync] [HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\SettingSync]
"BackupPolicy"=dword:0000003c "BackupPolicy"=dword:0000003c
"DeviceMetadataUploaded"=dword:00000000 "DeviceMetadataUploaded"=dword:00000000
@ -138,7 +161,7 @@ regimport(@"
"@) "@)
echo "Set privacy policy accepted state to 0" echo "Set privacy policy accepted state to 0"
regimport(@" Import-Registry(@"
[HKEY_CURRENT_USER\SOFTWARE\Microsoft\Personalization] [HKEY_CURRENT_USER\SOFTWARE\Microsoft\Personalization]
[HKEY_CURRENT_USER\SOFTWARE\Microsoft\Personalization\Settings] [HKEY_CURRENT_USER\SOFTWARE\Microsoft\Personalization\Settings]
@ -146,13 +169,13 @@ regimport(@"
"@) "@)
echo "Do not scan contact informations" echo "Do not scan contact informations"
regimport(@" Import-Registry(@"
[HKEY_CURRENT_USER\SOFTWARE\Microsoft\InputPersonalization\TrainedDataStore] [HKEY_CURRENT_USER\SOFTWARE\Microsoft\InputPersonalization\TrainedDataStore]
"HarvestContacts"=dword:00000000 "HarvestContacts"=dword:00000000
"@) "@)
echo "Disable background access of default apps" echo "Disable background access of default apps"
regimport(@" Import-Registry(@"
[HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\BackgroundAccessApplications\Microsoft.Office.OneNote_17.4229.10061.0_x64__8wekyb3d8bbwe] [HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\BackgroundAccessApplications\Microsoft.Office.OneNote_17.4229.10061.0_x64__8wekyb3d8bbwe]
"Disabled"=dword:00000001 "Disabled"=dword:00000001
@ -212,7 +235,7 @@ regimport(@"
"@) "@)
echo "Denying device access" echo "Denying device access"
regimport(@" Import-Registry(@"
[HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\DeviceAccess] [HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\DeviceAccess]
[HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\DeviceAccess\Global] [HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\DeviceAccess\Global]
@ -309,7 +332,7 @@ regimport(@"
"@) "@)
echo "Disable location sensor" echo "Disable location sensor"
regimport(@" Import-Registry(@"
[HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Sensor] [HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Sensor]
[HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Sensor\Permissions] [HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Sensor\Permissions]
@ -319,19 +342,8 @@ regimport(@"
"@) "@)
echo "Disable submission of Windows Defender findings" echo "Disable submission of Windows Defender findings"
do {} until (Enable-Privilege SeTakeOwnershipPrivilege) Takeown-Registry("HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows Defender\Spynet")
$key = [Microsoft.Win32.Registry]::LocalMachine.OpenSubKey("SOFTWARE\Microsoft\Windows Defender\Spynet", "ReadWriteSubTree", "TakeOwnership") Import-Registry(@"
$owner = [Security.Principal.NTAccount]"Administrators"
$acl = $key.GetAccessControl()
$acl.SetOwner($owner)
$key.SetAccessControl($acl)
$acl = $key.GetAccessControl()
$rule = New-Object System.Security.AccessControl.RegistryAccessRule("Administrators", "FullControl", "Allow")
$acl.SetAccessRule($rule)
$key.SetAccessControl($acl)
regimport(@"
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows Defender\Spynet] [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows Defender\Spynet]
"SpyNetReporting"=dword:00000000 "SpyNetReporting"=dword:00000000
"SubmitSamplesConsent"=dword:00000000 "SubmitSamplesConsent"=dword:00000000
@ -340,7 +352,7 @@ regimport(@"
echo "Do not share wifi networks" echo "Do not share wifi networks"
$user = New-Object System.Security.Principal.NTAccount($env:UserName) $user = New-Object System.Security.Principal.NTAccount($env:UserName)
$sid = $user.Translate([System.Security.Principal.SecurityIdentifier]).value $sid = $user.Translate([System.Security.Principal.SecurityIdentifier]).value
regimport(@" Import-Registry(@"
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\WcmSvc\wifinetworkmanager\features\$sid] [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\WcmSvc\wifinetworkmanager\features\$sid]
"FeatureStates"=dword:0000033c "FeatureStates"=dword:0000033c
"@) "@)

Loading…
Cancel
Save