forked from bitlog2/DisableWinTracking
-
Notifications
You must be signed in to change notification settings - Fork 0
/
dwt_util.py
529 lines (462 loc) · 16.5 KB
/
dwt_util.py
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
# Copyright (C) 10se1ucgo 2015-2016
#
# This file is part of DisableWinTracking.
#
# DisableWinTracking is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# DisableWinTracking is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with DisableWinTracking. If not, see <http://www.gnu.org/licenses/>.
import logging
import os
import platform
from collections import OrderedDict
import pywintypes
import shutil
import subprocess
import tempfile
from six.moves import winreg
import shlex
import win32serviceutil
import winerror
logger = logging.getLogger("dwt.util")
class CalledProcessError(Exception):
"""This exception is raised by subprocess_handler() returns a non-zero exit status.
It is a direct copy + paste backport from Python 3, as the Python 2 version does not
include the "stderr" property.
Original docstring:
This exception is raised when a process run by check_call() or
check_output() returns a non-zero exit status.
The exit status will be stored in the returncode attribute;
check_output() will also store the output in the output attribute.
"""
def __init__(self, returncode, cmd, output=None, stderr=None):
self.returncode = returncode
self.cmd = cmd
self.output = output
self.stderr = stderr
def __str__(self):
return "Command '%s' returned non-zero exit status %d" % (
self.cmd,
self.returncode,
)
@property
def stdout(self):
"""Alias for output attribute, to match stderr"""
return self.output
@stdout.setter
def stdout(self, value):
# There's no obvious reason to set this, but allow it anyway so
# .stdout is a transparent alias for .output
self.output = value
def is_64bit():
if os.name == "nt":
os_arch = os.environ["PROCESSOR_ARCHITEW6432"]
return True if os_arch == "AMD64" else False
else:
logger.critical(
"This was only meant to be run on Windows-based system. Specifically, Windows 10."
)
os._exit(0)
return os_arch
def ip_block(ip_list, undo):
for ip in ip_list:
cmd = 'netsh advfirewall firewall {act} rule name="TrackingIP-{ip}"'.format(
act="delete" if undo else "add", ip=ip
)
if not undo:
cmd += (
' dir=out protocol=any remoteip="{ip}" profile=any action=block'.format(
ip=ip
)
)
try:
subprocess_handler(shlex.split(cmd))
logger.info(
"IP Blocker: The IP {ip} was successfully {act}.".format(
ip=ip, act="unblocked" if undo else "blocked"
)
)
except CalledProcessError as e:
logger.exception(
"IP Blocker: Failed to {act} IP {ip}".format(
act="unblock" if undo else "block", ip=ip
)
)
logger.critical(
"IP Blocker: Error output:\n" + e.stdout.decode("ascii", "replace")
)
def clear_diagtrack():
file = os.path.join(
os.environ["SYSTEMDRIVE"],
(
"\\ProgramData\\Microsoft\\Diagnosis\\ETLLogs\\AutoLogger\\AutoLogger-Diagtrack-Listener.etl"
),
)
cmds = [
"sc delete DiagTrack",
"sc delete dmwappushservice",
'echo "" > "{file}"'.format(file=file),
]
i = 0
failed = False
for cmd in cmds:
i += 1
service = cmd.split("sc delete ")
output = subprocess_handler(cmd)
if output[0] in [0, 1060, 1072]:
if output[0] == 0:
if len(service) > 1:
logger.info(
"DiagTrack: Successfully deleted service '{0}'".format(
service[1]
)
)
else:
logger.info("DiagTrack: Successfully erased tracking log.")
if output[0] == 1060:
logger.info(
"DiagTrack: {0} service doesn't exist. This is OK, you likely removed it already.".format(
service[1]
)
)
if output[0] == 1072:
logger.info(
"DiagTrack: {0} service marked for deletion. This is OK, make sure you reboot your machine!".format(
service[1]
)
)
logger.info("DiagTrack: Completed Part {0}/{1}".format(i, len(cmds)))
else:
logger.info("{0}".format(output[0]))
failed = True
logger.exception("DiagTrack: Failed Part {0}/{1}".format(i, len(cmds)))
logger.critical(
"DiagTrack: Error code: {0} - {1}".format(output[0], output[1])
)
if failed:
logger.info("DiagTrack: Complete. Errors were recorded.")
else:
logger.info("DiagTrack: Completed successfully, without errors.")
"""
This is an ORDERED dictionary. It will always run in order, not subject to the devastation
of a standard dictionary, so no worries.
"""
# temporarily removing this code in favor of something that actually works
"""
cmds = OrderedDict()
cmds["takeown /f {0}".format(file)]="Take Ownership"
cmds["icacls {0} /grant administrators:F".format(file)]="Grant Admin Privilege"
cmds["icacls {0} /inheritance:r /deny SYSTEM:F /grant Administrators:F".format(file)]="Deny System Privilege"
i = 0
for x, y in cmds.iteritems():
i += 1
if i == 3:
try:
open(file, 'w').close()
logger.info("DiagTrack: Cleared AutoLogger-Diagtrack-Listener.etl")
except:
logger.exception("DiagTrack: Couldn't open AutoLogger-Diagtrack-Listener.etl for writing")
p = subprocess.Popen(x, stdout=subprocess.PIPE, stderr=subprocess.PIPE, stdin=subprocess.PIPE)
output = p.communicate()
logger.info("DiagTrack: {0} of AutoLogger-Diagtrack-Listener.etl was successful".format(y))
if p.returncode:
logger.exception(p.returncode.decode())
if i == 3:
logger.info("DiagTrack: Successfully cleared and locked DiagTrack log.")
"""
def delete_service(service):
try:
win32serviceutil.RemoveService(service)
logger.info(
"Services: Succesfully removed service '{service}'".format(service=service)
)
except pywintypes.error as e:
errors = (
winerror.ERROR_SERVICE_DOES_NOT_EXIST,
winerror.ERROR_SERVICE_NOT_ACTIVE,
winerror.ERROR_SERVICE_MARKED_FOR_DELETE,
)
if not any(error == e.winerror for error in errors):
logger.exception(
"Services: Failed to remove service '{service}'".format(service=service)
)
def disable_service(service):
try:
win32serviceutil.StopService(service)
logger.info(
"Services: Succesfully stopped service '{service}'".format(service=service)
)
except pywintypes.error as e:
errors = (
winerror.ERROR_SERVICE_DOES_NOT_EXIST,
winerror.ERROR_SERVICE_NOT_ACTIVE,
)
if not any(error == e.winerror for error in errors):
logger.exception(
"Services: Failed to stop service '{service}'".format(service=service)
)
def telemetry(undo):
value = int(undo)
telemetry_keys = {
"AllowTelemetry": [
winreg.HKEY_LOCAL_MACHINE,
r"SOFTWARE\Policies\Microsoft\Windows\DataCollection",
"AllowTelemetry",
winreg.REG_DWORD,
value,
]
}
set_registry(telemetry_keys)
def services(undo):
value = 4 if undo else 3
service_keys = {
"dmwappushsvc": [
winreg.HKEY_LOCAL_MACHINE,
r"SYSTEM\\CurrentControlSet\\Services\\dmwappushsvc",
"Start",
winreg.REG_DWORD,
value,
],
"DiagTrack": [
winreg.HKEY_LOCAL_MACHINE,
r"SYSTEM\\CurrentControlSet\\Services\\DiagTrack",
"Start",
winreg.REG_DWORD,
value,
],
}
set_registry(service_keys)
def defender(undo):
value = int(undo)
defender_keys = {
"Windows Defender Delivery Optimization Download": [
winreg.HKEY_LOCAL_MACHINE,
r"SOFTWARE\Microsoft\Windows\CurrentVersion\DeliveryOptimization\Config",
"DODownloadMode",
winreg.REG_DWORD,
value,
],
"Windows Defender Spynet": [
winreg.HKEY_LOCAL_MACHINE,
r"SOFTWARE\Microsoft\Windows Defender\Spynet",
"SpyNetReporting",
winreg.REG_DWORD,
value,
],
"Windows Defender Sample Submission": [
winreg.HKEY_LOCAL_MACHINE,
r"SOFTWARE\Microsoft\Windows Defender\Spynet",
"SubmitSamplesConsent",
winreg.REG_DWORD,
value,
],
}
set_registry(defender_keys)
def wifisense(undo):
value = int(undo)
wifisense_keys = {
"WifiSense Credential Share": [
winreg.HKEY_LOCAL_MACHINE,
r"SOFTWARE\Microsoft\WcmSvc\wifinetworkmanager\features",
"WiFiSenseCredShared",
winreg.REG_DWORD,
value,
],
"WifiSense Open-ness": [
winreg.HKEY_LOCAL_MACHINE,
r"SOFTWARE\Microsoft\WcmSvc\wifinetworkmanager\features",
"WiFiSenseOpen",
winreg.REG_DWORD,
value,
],
}
set_registry(wifisense_keys)
def onedrive(undo):
file_sync_value = int(undo)
list_pin_value = int(not undo)
action = "install" if undo else "uninstall"
if is_64bit():
onedrive_keys = {
"FileSync": [
winreg.HKEY_LOCAL_MACHINE,
r"SOFTWARE\Policies\Microsoft\Windows\OneDrive",
"DisableFileSyncNGSC",
winreg.REG_DWORD,
file_sync_value,
],
"ListPin": [
winreg.HKEY_CLASSES_ROOT,
r"CLSID\{018D5C66-4533-4307-9B53-224DE2ED1FE6}",
"System.IsPinnedToNameSpaceTree",
winreg.REG_DWORD,
list_pin_value,
],
"ListPin64Bit": [
winreg.HKEY_CLASSES_ROOT,
r"Wow6432Node\CLSID\{018D5C66-4533-4307-9B53-224DE2ED1FE6}",
"System.IsPinnedToNameSpaceTree",
winreg.REG_DWORD,
list_pin_value,
],
}
else:
onedrive_keys = {
"FileSync": [
winreg.HKEY_LOCAL_MACHINE,
r"SOFTWARE\Policies\Microsoft\Windows\OneDrive",
"DisableFileSyncNGSC",
winreg.REG_DWORD,
file_sync_value,
],
"ListPin": [
winreg.HKEY_CLASSES_ROOT,
r"CLSID\{018D5C66-4533-4307-9B53-224DE2ED1FE6}",
"System.IsPinnedToNameSpaceTree",
winreg.REG_DWORD,
list_pin_value,
],
}
set_registry(onedrive_keys)
system = "SysWOW64" if is_64bit() else "System32"
onedrive_setup = os.path.join(
os.environ["SYSTEMROOT"], "{system}\\OneDriveSetup.exe".format(system=system)
)
# Adding check if exe is there to help weed out issue submissions
# from users who have somehow previously removed the binary
if os.path.isfile(onedrive_setup):
cmd = "{bin} /{action}".format(bin=onedrive_setup, action=action)
output = subprocess_handler(cmd)
if output[0] == -2147219813:
logger.info("OneDrive: successfully {action}ed".format(action=action))
else:
logger.info(
"OneDrive: unable to {action}. Exited with code: {code} - {message}".format(
action=action, code=output[0], message=output[1]
)
)
else:
logger.info(
"OneDrive: Binary doesn't exist. Unable to {action}. Do not send a report for this.".format(
action=action
)
)
def set_registry(keys):
mask = (
winreg.KEY_WOW64_64KEY | winreg.KEY_ALL_ACCESS
if is_64bit()
else winreg.KEY_ALL_ACCESS
)
for key_name, values in keys.items():
try:
key = winreg.CreateKeyEx(values[0], values[1], 0, mask)
winreg.SetValueEx(key, values[2], 0, values[3], values[4])
winreg.CloseKey(key)
logger.info(
"Registry: Successfully modified {key} key.".format(key=key_name)
)
except OSError:
logger.exception(
"Registry: Unable to modify {key} key.".format(key=key_name)
)
def host_file(entries, undo):
null_ip = "0.0.0.0 "
nulled_entires = [null_ip + x for x in entries]
hosts_path = os.path.join(os.environ["SYSTEMROOT"], "System32/drivers/etc/hosts")
if undo:
try:
with open(hosts_path, "r") as hosts, tempfile.NamedTemporaryFile(
delete=False
) as temp:
for line in hosts:
if not any(domain in line for domain in entries):
temp.write(line)
temp.close()
shutil.move(temp.name, hosts_path)
return True
except OSError:
logger.exception("Hosts: Failed to undo hosts file")
else:
try:
with open(hosts_path, "a") as f:
f.write("\n" + "\n".join(nulled_entires))
return True
except (WindowsError, IOError):
logger.exception("Hosts: Failed to modify hosts file")
return False
def app_manager(apps, undo):
running = {}
for app in apps:
cmd = 'powershell "Get-AppxPackage *{app}*|Remove-AppxPackage"'.format(app=app)
try:
process = subprocess.Popen(
shlex.split(cmd),
stdout=subprocess.PIPE,
stderr=subprocess.PIPE,
stdin=subprocess.PIPE,
)
running[app] = process
except OSError:
logger.exception(
"App remover: Failed to remove app '{app}'".format(app=app)
)
for app, process in running.items():
process.wait()
if process.returncode:
logger.exception(
"App remover: Failed to remove app '{app}'".format(app=app)
)
else:
logger.info("Successfully removed app '{app}'".format(app=app))
def subprocess_handler(cmd):
p = subprocess.Popen(
cmd,
stdout=subprocess.PIPE,
stderr=subprocess.PIPE,
stdin=subprocess.PIPE,
shell=True,
)
output = p.communicate()
return [p.returncode, output]
# Old reinstall code, does not work:
# if reinstall:
# # We encode in Base64 because the command is complex and I'm too lazy to escape everything.
# # It's uncoded format command: "Get-AppxPackage -AllUsers| Foreach {Add-AppxPackage -DisableDevelopmentMode
# # -Register "$($_.InstallLocation)\AppXManifest.xml"}"
# encodedcommand = 'Get-AppxPackage -AllUsers | Foreach {Add-AppxPackage -DisableDevelopmentMode # -Register \
# "$($_.InstallLocation)\AppXManifest.xml"}'
# try:
# subprocess.call("powershell -EncodedCommand {0}".format(encodedcommand), shell=True)
# except (WindowsError, IOError):
# print "App management: Could not re-install all apps"
def dvr(undo):
game_dvr_enabled = allow_game_dvr = 0
action = "disabled"
if undo:
game_dvr_enabled = allow_game_dvr = 1
action = "enabled"
dvr_keys = {
"GameDVR_Enabled": [
winreg.HKEY_CURRENT_USER,
r"System\GameConfigStore",
"GameDVR_Enabled",
winreg.REG_DWORD,
game_dvr_enabled,
],
"AllowGameDVR": [
winreg.HKEY_LOCAL_MACHINE,
r"SOFTWARE\Policies\Microsoft\Windows\GameDVR",
"AllowGameDVR",
winreg.REG_DWORD,
allow_game_dvr,
],
}
set_registry(dvr_keys)
logger.info("Xbox DVR: successfully {action}".format(action=action))