-
Notifications
You must be signed in to change notification settings - Fork 0
/
changelog.txt
2804 lines (2317 loc) · 109 KB
/
changelog.txt
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
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
#############
# CHANGELOG #
#############
Legend:
+ Addition - Removal
! Bug fix * Update/improvement
. No change / Change (non bug-fix)
Version number legend:
x.x.x
| | |
| | program/definition update, minor change, or bugfix (critical or regular)
| regular release or feature change
major feature change
########################
# v6.1.0 // 2015-04-xx #
########################
tron.bat v6.1.0
+ stage_0_prep:kvrt: Add Kaspersky Virus Removal Tool to replace TDSSKiller. Thanks to /u/kamakaze_chickn
- stage_0_prep:tdssk: Remove TDSSKiller due to many issues with it stalling or crashing the script
/ tron.bat:logging: Add additional variables to support storing Tron logs, backups, etc in different locations vs. in a hard-coded sub-directory of LOGPATH. Thanks to /u/douglas_swehla
/ tron.bat:date: Move code that gets the date into ISO 8601 format to top of script so it can be used in log paths
STAGE 0: Prep
. Rkill v2.7.0.0
. ProcessKiller v1.0
. TDSS Killer v3.0.0.42
+ McAfee Stinger v12.1.0.1427
. erunt v1.1j
STAGE 1: Tempclean
. CCLeaner v5.04.5151
. BleachBit v1.6
. TempFileCleanup v1.0.1-TRON
. USB Device Cleanup v0.9.0
STAGE 2: De-bloat
. \resources\stage_2_de-bloat\programs_to_target.txt
. \resources\stage_2_de-bloat\programs_to_target_by_GUID.bat
STAGE 3: Disinfect
. RogueKiller v10.5.7.0
* Sophos Virus Removal Tool v2.5.4, update defs
* Vipre Rescue Scanner v7.0.7.8, update defs
. Malwarebytes Anti-Malware v2.1.4.1018
STAGE 4: Patch
. 7-Zip v9.38 (multi-language)
. Adobe Flash Player v17.0.0.134 (language ignored)
. Adobe Reader v11.0.10 (English-only; replace with your language version if necessary)
. Java Runtime Environment 8u40 (language ignored)
. Windows updates Pulled down live with this command: 'wuauclt /detectnow /updatenow'
STAGE 5: Optimize
. smartctl v6.3.0.3976 2014-07-26 r3976
. Defraggler v2.19.0.982
STAGE 6: Wrap-up
. SwithMail.exe v2.1.5.0
STAGE 7: Manual tools
. ADSSpy v1.11.0.0
. AdwCleaner v4.1.1.3
. aswMBR v1.0.1.2252
. autoruns v13.2
. ComboFix v15.3.25.1
. Junkware Removal Tool v6.4.6
. Malwarebytes Anti-Rootkit v1.08.3.1004
. Net Adapter Repair v1.2
. PC Hunter v1.0.0.2
. ServicesRepair.exe v1.0.0.3
. VirusTotal uploader tool v2.2
########################
# v6.0.1 // 2015-03-26 #
########################
tron.bat v6.0.1
! stage_1_tempclean:usb: Fix crash error in USB device cleanup due to missing closing bracket. Thanks to /u/Satiex for reporting
########################
# v6.0.0 // 2015-03-25 #
########################
* Improvements and fixes for grammar, logging, and consistency in almost all sub-scripts and utilities across the board
tron.bat v6.0.0
+ tron.bat: Add resume function. Tron will now attempt to pick up at the last stage it successfully started if there is an interruption. You do have to log back in as the user that originally ran Tron, but assuming the Tron folder didn't move it should automatically re-launch at the last stage. Major thanks to /u/cuddlychops06 for assistance with this
+ stage_0_prep:sysrstr: Create System Restore checkpoint before beginning script operations. Windows client versions only, Vista and up (no Server versions)
+ stage_0_prep:stinger: Add McAfee Stinger tool, configured to delete infected items. Thanks to /u/upsurper
! stage_0_prep:admin: Fix broken Administrator rights check due to minor syntax error. This has been broken since at least v2.2.1 (2014-08-21)
/ stage_0_prep:checks: Move Administrator rights check before main menu and EULA screen
/ stage_0_prep:checks: Move Safe Mode checks before main menu
! stage_0_prep:power: Fix minor errors in power scheme export (Vista and up)
* stage_1_tempclean:bb: Add support for -v flag to BleachBit; BleachBit now dumps list of actions if -v flag is used
- stage_1_tempclean:ie: Remove redundant IE cleanup in TempFileCleanup.bat, since Tron runs this natively
! tron.bat:update: Fix error with update checker. Was failing cert check over HTTPS. Thanks to /u/upsurper
* tron.bat:logging: Major upgrade. Now use logging functions instead of two lines per event (one to console, one to logfile). This slows down the script slightly but lets us remove over 100 lines of code, as well as simplifies troubleshooting and maintenance. Major thanks to /u/douglas_swehla
/ stage_4_patch:7-zip: Send output from assoc and open-with commands to logfile instead of console
* stage_4_patch:java: Suppress unnecessary error messages about old versions not being found during previous version removal
! stage_4_patch:reader: Fix a few lines that were displaying messages instead of sending them to the log as intended
* stage_5_optimize:dfg: Defrag now only runs (assuming it wasn't skipped) if the system drive is at least 5% or more fragmented
* stage_6_wrap-up: Add message explaning disk space calculations to dissuade panic about seemingly negative disk space reclaimed
* stage_6_wrap-up: Sweep misc logs in LOGPATH left from the various sub-tools into %LOGPATH%\tron_raw_logs
STAGE 0: Prep
. Rkill v2.7.0.0
. ProcessKiller v1.0
. TDSS Killer v3.0.0.42
+ McAfee Stinger v12.1.0.1427
. erunt v1.1j
STAGE 1: Tempclean
* CCLeaner v5.04.5151
. BleachBit v1.6
* TempFileCleanup v1.0.1-TRON
* USB Device Cleanup v0.9.0
STAGE 2: De-bloat
. \resources\stage_2_de-bloat\programs_to_target.txt
* \resources\stage_2_de-bloat\programs_to_target_by_GUID.bat
STAGE 3: Disinfect
* RogueKiller v10.5.7.0
* Sophos Virus Removal Tool v2.5.4, update defs
* Vipre Rescue Scanner v7.0.7.8, update defs
. Malwarebytes Anti-Malware v2.1.4.1018
STAGE 4: Patch
. 7-Zip v9.38 (multi-language)
. Adobe Flash Player v17.0.0.134 (language ignored)
. Adobe Reader v11.0.10 (English-only; replace with your language version if necessary)
. Java Runtime Environment 8u40 (language ignored)
. Windows updates Pulled down live with this command: 'wuauclt /detectnow /updatenow'
STAGE 5: Optimize
. smartctl v6.3.0.3976 2014-07-26 r3976
* Defraggler v2.19.0.982
STAGE 6: Wrap-up
. SwithMail.exe v2.1.5.0
STAGE 7: Manual tools
. ADSSpy v1.11.0.0
* AdwCleaner v4.1.1.3
. aswMBR v1.0.1.2252
. autoruns v13.2
* ComboFix v15.3.25.1
- gmer v2.1.19357 // removed due to inclusion of PC Hunter
* Junkware Removal Tool v6.4.6
. Malwarebytes Anti-Rootkit v1.08.3.1004
. Net Adapter Repair v1.2
+ PC Hunter v1.0.0.2 // replaces gmer
. ServicesRepair.exe v1.0.0.3
. VirusTotal uploader tool v2.2
########################
# v5.0.2 // 2015-03-20 #
########################
tron.bat v5.0.2
. No changes to Tron.bat, just sub-tool and definition updates
STAGE 0: Prep
. Rkill v2.7.0.0
. ProcessKiller v1.0
. TDSS Killer v3.0.0.42
. erunt v1.1j
STAGE 1: Tempclean
* CCLeaner v5.03.5128
. BleachBit v1.6
. TempFileCleanup v1.0.0-TRON
. USB Device Cleanup v0.8.1
STAGE 2: De-bloat
. \resources\stage_2_de-bloat\programs_to_target.txt
. \resources\stage_2_de-bloat\programs_to_target_by_GUID.bat
STAGE 3: Disinfect
* RogueKiller v10.5.5.0
* Sophos Virus Removal Tool v2.5.4, update defs
* Vipre Rescue Scanner v7.0.7.8, update defs
* Malwarebytes Anti-Malware v2.1.4.1018
STAGE 4: Patch
. 7-Zip v9.38 (multi-language)
* Adobe Flash Player v17.0.0.134 (language ignored)
. Adobe Reader v11.0.10 (English-only; replace with your language version if necessary)
* Java Runtime Environment 8u40 (language ignored)
. Windows updates Pulled down live with this command: 'wuauclt /detectnow /updatenow'
STAGE 5: Optimize
* smartctl v6.3.0.3976 2014-07-26 r3976
. Defraggler v2.18.0.945
STAGE 6: Wrap-up
. SwithMail.exe v2.1.5.0
STAGE 7: Manual tools
. ADSSpy v1.11.0.0
* AdwCleaner v4.1.1.2
. aswMBR v1.0.1.2252
* autoruns v13.2
* ComboFix v15.3.14.3
. gmer v2.1.19357
* Junkware Removal Tool v6.4.5
. Malwarebytes Anti-Rootkit v1.08.3.1004
. Net Adapter Repair v1.2
. ServicesRepair.exe v1.0.0.3
. VirusTotal uploader tool v2.2
########################
# v5.0.1 // 2015-03-13 #
########################
tron.bat v5.0.1
/ stage_3_disinfect:sophos: Update Sophos with current version, old version was failing updates
STAGE 3: Disinfect
/ Sophos Virus Removal Tool v2.5.4, Update to latest version, old version was failing updates
########################
# v5.0.0 // 2015-03-05 #
########################
tron.bat v5.0.0
* tron.bat: Significant robustness improvement against missing files or directories. Tron now does relative path calls directly to each sub-utility rather than "walking"
in and out the sub-directories in the \resources tree. Now if a file or directory is missing only that section will fail, rather than the entire script.
A side benefit is it's now easier to drop a replacement Tron.bat on top of an older \resources tree without having to worry about Tron getting "off track" based on the underlying directory structure
* tron.bat: Many minor bug fixes and general script cleanup
STAGE 0: Prep
. Rkill v2.7.0.0
. ProcessKiller v1.0
. TDSS Killer v3.0.0.42
. erunt v1.1j
STAGE 1: Tempclean
* CCLeaner v5.03.5128
. BleachBit v1.6
. TempFileCleanup v1.0.0-TRON
. USB Device Cleanup v0.8.1
STAGE 2: De-bloat
* \resources\stage_2_de-bloat\programs_to_target.txt
- Remove many specific entries targeting a program with "Savings" in the name and replace with single wild-card %%Savings%%. Should grant small speed increase.
* \resources\stage_2_de-bloat\programs_to_target_by_GUID.bat
- Add four additional MSI codes for Lenovo OEM bloatware apps. Thanks to /u/tuxedo_jack
STAGE 3: Disinfect
* RogueKiller v10.5.1.0
* Sophos Virus Removal Tool v2.5.4, update defs
* Vipre Rescue Scanner v7.0.7.8, update defs
. Malwarebytes Anti-Malware v2.0.4.1028
STAGE 4: Patch
. 7-Zip v9.38 (multi-language)
. Adobe Flash Player v16.0.0.305 (language ignored)
. Adobe Reader v11.0.10 (English-only; replace with your language version if necessary)
* Java Runtime Environment 8u40 (language ignored)
. Windows updates Pulled down live with this command: 'wuauclt /detectnow /updatenow'
STAGE 5: Optimize
* smartctl v6.3.0.3976 2014-07-26 r3976
. Defraggler v2.18.0.945
STAGE 6: Wrap-up
. SwithMail.exe v2.1.5.0
STAGE 7: Manual tools
. ADSSpy v1.11.0.0
. AdwCleaner v4.1.1.1
. aswMBR v1.0.1.2252
. autoruns v12.03
* ComboFix v15.3.1.1
. gmer v2.1.19357
* Junkware Removal Tool v6.4.3
. Malwarebytes Anti-Rootkit v1.08.3.1004
. Net Adapter Repair v1.2
. ServicesRepair.exe v1.0.0.3
. VirusTotal uploader tool v2.2
########################
# v4.9.1 // 2015-02-26 #
########################
tron.bat v4.9.1
! stage_0_prep:update: Fix crash bug due to missing closing bracket. Thanks to /u/pushpak359
########################
# v4.9.0 // 2015-02-25 #
########################
tron.bat v4.9.0
+ FEATURE: Add -se flag and associated SKIP_EVENT_LOG_CLEAR variable. Use these to prevent Tron from backing up and clearing the Windows Event Logs. Thanks to /u/auldnic
! stage_0_prep:power: Fix crash condition on Vista Home Premium if the -p (preserve power settings) flag was used. Thanks to /u/XtraSharp for being brave enough to touch Vista Home Premium and finding this obscure crash condition
* stage_0_prep:update: Change update checker to use HTTPS URL. Thanks to /u/SGC-Hosting for providing an SSL certificate!
! stage_3_disinfect:dism: Fix bug where Tron would get out of step with directory structure due to extra popd statement
/ stage_4_patch:dism: Remove tron_dism_base_reset.log and tron_dism.log instead of leaving them around after adding to the main log file
STAGE 0: Prep
. Rkill v2.7.0.0
. ProcessKiller v1.0
. TDSS Killer v3.0.0.42
. erunt v1.1j
STAGE 1: Tempclean
. CCLeaner v5.02.5101
. BleachBit v1.6
. TempFileCleanup v1.0.0-TRON
. USB Device Cleanup v0.8.1
STAGE 2: De-bloat
. \resources\stage_2_de-bloat\programs_to_target.txt
. \resources\stage_2_de-bloat\programs_to_target_by_GUID.bat
STAGE 3: Disinfect
. RogueKiller v10.4.0.0
* Sophos Virus Removal Tool v2.5.4, update defs
* Vipre Rescue Scanner v7.0.7.8, update defs
. Malwarebytes Anti-Malware v2.0.4.1028
STAGE 4: Patch
. 7-Zip v9.38 (multi-language)
. Adobe Flash Player v16.0.0.305 (language ignored)
. Adobe Reader v11.0.10 (English-only; replace with your language version if necessary)
. Java Runtime Environment 8u31 (language ignored)
. Windows updates Pulled down live with this command: 'wuauclt /detectnow /updatenow'
STAGE 5: Optimize
. smartctl v6.2 2013-07-26 r3841
. Defraggler v2.18.0.945
STAGE 6: Wrap-up
. SwithMail.exe v2.1.5.0
STAGE 7: Manual tools
. ADSSpy v1.11.0.0
. AdwCleaner v4.1.1.1
. aswMBR v1.0.1.2252
. autoruns v12.03
. ComboFix v15.2.16.1
. gmer v2.1.19357
. Junkware Removal Tool v6.4.2
. Malwarebytes Anti-Rootkit v1.08.3.1004
. Net Adapter Repair v1.2
. ServicesRepair.exe v1.0.0.3
. VirusTotal uploader tool v2.2
########################
# v4.8.0 // 2015-02-18 #
########################
tron.bat v4.8.0
+ wrap-up:feature: Add -gsl flag and associated GENERATE_SUMMARY_LOGS variable. Use this to generate separate summary logs in the LOGPATH directory (can help create an invoice).
If EMAIL_REPORT (-er) was used, the summary logs will be attached to the email report. We'll try to enhance this in the next release to also show # of infected items if possible. Thanks to /u/Reverent and /u/upsurper
! stage_3_disinfect: Critical bug fix; script was failing after MBAM due to getting out of step with directory structure from a missing popd statement. Thanks to /u/oromeo
! stage_6_wrap-up: Fix bug where email report was sent even if DRY_RUN was set
! misc:bugfix: Fix many bugs and syntax errors
/ stage_0_prep:log: Clear log file at each run instead of appending to it
/ misc: Reduce default AUTO_REBOOT_DELAY from 30 to 15 seconds
STAGE 0: Prep
. Rkill v2.7.0.0
. ProcessKiller v1.0
. TDSS Killer v3.0.0.42
. erunt v1.1j
STAGE 1: Tempclean
. CCLeaner v5.02.5101
. BleachBit v1.6
. TempFileCleanup v1.0.0-TRON
. USB Device Cleanup v0.8.1
STAGE 2: De-bloat
. \resources\stage_2_de-bloat\programs_to_target.txt
. \resources\stage_2_de-bloat\programs_to_target_by_GUID.bat
STAGE 3: Disinfect
* RogueKiller v10.4.0.0
* Sophos Virus Removal Tool v2.5.4, update defs
* Vipre Rescue Scanner v7.0.7.8, update defs
. Malwarebytes Anti-Malware v2.0.4.1028
STAGE 4: Patch
. 7-Zip v9.38 (multi-language)
. Adobe Flash Player v16.0.0.305 (language ignored)
. Adobe Reader v11.0.10 (English-only; replace with your language version if necessary)
. Java Runtime Environment 8u31 (language ignored)
. Windows updates Pulled down live with this command: 'wuauclt /detectnow /updatenow'
STAGE 5: Optimize
. smartctl v6.2 2013-07-26 r3841
. Defraggler v2.18.0.945
STAGE 6: Wrap-up
. SwithMail.exe v2.1.5.0
STAGE 7: Manual tools
. ADSSpy v1.11.0.0
* AdwCleaner v4.1.1.1
. aswMBR v1.0.1.2252
. autoruns v12.03
* ComboFix v15.2.16.1
. gmer v2.1.19357
. Junkware Removal Tool v6.4.2
. Malwarebytes Anti-Rootkit v1.08.3.1004
. Net Adapter Repair v1.2
. ServicesRepair.exe v1.0.0.3
. VirusTotal uploader tool v2.2
########################
# v4.7.4 // 2015-02-16 #
########################
STAGE 0: Prep
! TDSS Killer v3.0.0.42 // revert to previous version due to many reports of script stalling at this point
########################
# v4.7.3 // 2015-02-11 #
########################
STAGE 4: Patch
! Fix missing Flash installers. Thanks to /u/KindOne and /u/techniforus
########################
# v4.7.2 // 2015-02-10 #
########################
tron.bat v4.7.2
+ stage_0_prep:sleep: Add disabling of system sleep when laptop lid closes (Vista and up). Thanks to /u/ComputersByte
* stage_0_prep:sleep: Remove redundant code block which tested for Windows XP and Server 2003 separately. Now test for both SKUs in one block
/ stage_0_prep:wmi: Move WMI repair four jobs earlier since so much depends on it functioning correctly. May pull it out of Stage 0 at some point and place it in pre-run prep and checks
STAGE 0: Prep
. Rkill v2.7.0.0
. ProcessKiller v1.0
. TDSS Killer v3.0.0.44
. erunt v1.1j
STAGE 1: Tempclean
* CCLeaner v5.02.5101
. BleachBit v1.6
. TempFileCleanup v1.0.0-TRON
. USB Device Cleanup v0.8.1
STAGE 2: De-bloat
* \resources\stage_2_de-bloat\programs_to_target.txt
. \resources\stage_2_de-bloat\programs_to_target_by_GUID.bat
STAGE 3: Disinfect
. RogueKiller v10.2.0.0
* Sophos Virus Removal Tool v2.5.4, update defs
* Vipre Rescue Scanner v7.0.7.8, update defs
. Malwarebytes Anti-Malware v2.0.4.1028
STAGE 4: Patch
. 7-Zip v9.38 (multi-language)
* Adobe Flash Player v16.0.0.305 (language ignored)
. Adobe Reader v11.0.10 (English-only; replace with your language version if necessary)
. Java Runtime Environment 8u31 (language ignored)
. Windows updates Pulled down live with this command: 'wuauclt /detectnow /updatenow'
STAGE 5: Optimize
. smartctl v6.2 2013-07-26 r3841
. Defraggler v2.18.0.945
STAGE 6: Wrap-up
. SwithMail.exe v2.1.5.0
STAGE 7: Manual tools
. ADSSpy v1.11.0.0
* AdwCleaner v4.1.1.0
. aswMBR v1.0.1.2252
. autoruns v12.03
* ComboFix v15.2.9.1
. gmer v2.1.19357
. Junkware Removal Tool v6.4.2
. Malwarebytes Anti-Rootkit v1.08.3.1004
. Net Adapter Repair v1.2
. ServicesRepair.exe v1.0.0.3
. VirusTotal uploader tool v2.2
########################
# v4.7.1 // 2015-02-04 #
########################
tron.bat v4.7.1
! stage_0_prep:bugfix: Fix spelling error in call to new TDSSK version
! stage_0_prep:bugfix: Fix spelling error in help (-h) menu. Thanks to...someone, can't remember who. If it was you let me know and I'll add you to the change log
STAGE 3: Disinfect
* Sophos Virus Removal Tool v2.5.4, update defs
* Vipre Rescue Scanner v7.0.7.8, update defs
STAGE 7: Manual tools
* ComboFix v15.2.2.1
* Junkware Removal Tool v6.4.2
########################
# v4.7.0 // 2015-01-28 #
########################
tron.bat v4.7.0
+ stage_0_prep:update: Add automatic SHA256 integrity checking of new version download from the auto-updater. Tron will warn if integrity check fails and delete the failed download
* stage_0_prep:update: Replace MD5 with SHA256 for update check hash algorithm. This change removes reliance on MD5 in all components of Tron. We'll keep md5sums.txt updated for a while because old versions still look for it, but eventually it will be removed. Thanks to /u/tr0nnie
+ stage_4_patch:feature: Add -sw switch and associated SKIP_WINDOWS_UPDATES variable to allow skipping an attempt at doing Windows Updates. Thanks to /u/fatbastard79
! stage_4_patch:bugfix: Fix minor visual error where message about SKIP_PATCHES being set would incorrectly show value of the SKIP_DEFRAG variable
! stage_6_wrap-up:bugfix: Fix error condition where SELF_DESTRUCT would fail if there were spaces in the path to Tron
STAGE 0: Prep
. Rkill v2.7.0.0
. ProcessKiller v1.0
* TDSS Killer v3.0.0.44
. erunt v1.1j
STAGE 1: Tempclean
. CCLeaner v5.01.5075
. BleachBit v1.6
. TempFileCleanup v1.0.0-TRON
. USB Device Cleanup v0.8.1
STAGE 2: De-bloat
. \resources\stage_2_de-bloat\programs_to_target.txt
. \resources\stage_2_de-bloat\programs_to_target_by_GUID.bat
STAGE 3: Disinfect
* RogueKiller v10.2.0.0
* Sophos Virus Removal Tool v2.5.4, update defs
* Vipre Rescue Scanner v7.0.7.8, update defs
. Malwarebytes Anti-Malware v2.0.4.1028
STAGE 4: Patch
. 7-Zip v9.38 (multi-language)
* Adobe Flash Player v16.0.0.296 (language ignored)
. Adobe Reader v11.0.10 (English-only; replace with your language version if necessary)
. Java Runtime Environment 8u31 (language ignored)
. Windows updates Pulled down live with this command: 'wuauclt /detectnow /updatenow'
STAGE 5: Optimize
. smartctl v6.2 2013-07-26 r3841
. Defraggler v2.18.0.945
STAGE 6: Wrap-up
. SwithMail.exe v2.1.5.0
STAGE 7: Manual tools
. ADSSpy v1.11.0.0
* AdwCleaner v4.1.0.9
. aswMBR v1.0.1.2252
. autoruns v12.03
* ComboFix v15.1.28.1
. gmer v2.1.19357
. Junkware Removal Tool v6.4.1
* Malwarebytes Anti-Rootkit v1.08.3.1004
. Net Adapter Repair v1.2
. ServicesRepair.exe v1.0.0.3
. VirusTotal uploader tool v2.2
########################
# v4.6.0 // 2015-01-23 #
########################
tron.bat v4.6.0
! stage_0_prep:bugfix: Fix crash bug where Tron would break when wget'ing md5sums.txt from the repo server if local username had an ampersand (&) character in it. Thanks to /u/buggg
! stage_4_patch:bugfix: Fix minor aesthetic bug where an error was tossed if we tried to add the MSI registry key while not in safe mode
/ stage_3_disinfect: Move MBAM installation to beginning of stage 3 to allow user to click "scan" earlier in the process instead of waiting for Vipre and Sophos to complete. Thanks to /u/Reverent
* stage_4_patch: Update links to reflect new versions of 7-Zip and Adobe Flash. Thanks to /u/Reverent
STAGE 0: Prep
. Rkill v2.7.0.0
. ProcessKiller v1.0
. TDSS Killer v3.0.0.42
. erunt v1.1j
STAGE 1: Tempclean
. CCLeaner v5.01.5075
. BleachBit v1.6
. TempFileCleanup v1.0.0-TRON
. USB Device Cleanup v0.8.1
STAGE 2: De-bloat
. \resources\stage_2_de-bloat\programs_to_target.txt
. \resources\stage_2_de-bloat\programs_to_target_by_GUID.bat
STAGE 3: Disinfect
* RogueKiller v10.2.0.0
* Sophos Virus Removal Tool v2.5.4, update defs
* Vipre Rescue Scanner v7.0.7.8, update defs
. Malwarebytes Anti-Malware v2.0.4.1028
STAGE 4: Patch
* 7-Zip v9.38 (multi-language)
* Adobe Flash Player v16.0.0.287 (language ignored)
. Adobe Reader v11.0.10 (English-only; replace with your language version if necessary)
* Java Runtime Environment 8u31 (language ignored)
. Windows updates Pulled down live with this command: 'wuauclt /detectnow /updatenow'
STAGE 5: Optimize
. smartctl v6.2 2013-07-26 r3841
. Defraggler v2.18.0.945
STAGE 6: Wrap-up
. SwithMail.exe v2.1.5.0
STAGE 7: Manual tools
. ADSSpy v1.11.0.0
* AdwCleaner v4.1.0.8
* aswMBR v1.0.1.2252
* autoruns v12.03
* ComboFix v15.1.22.2
. gmer v2.1.19357
. Junkware Removal Tool v6.4.1
. Malwarebytes Anti-Rootkit v1.08.2.1001
+ Net Adapter Repair v1.2 // Utility to repair network issues
. ServicesRepair.exe v1.0.0.3
. VirusTotal uploader tool v2.2
########################
# v4.5.1 // 2015-01-15 #
########################
tron.bat v4.5.1
! stage_0_prep:bugfix: Fix critical bug with missing bracket in update checker
########################
# v4.5.0 // 2015-01-14 #
########################
tron.bat v4.5.0
+ stage_0_prep: Add rudimentary auto-update function. Tron will now ask if you want it to download the latest release for you, then self-destruct the current copy when the download is finished. Downloads to current users desktop
+ stage_2_de-bloat: Add targeting of some specific GUIDs for removal. Edit the file '\resources\stage_2_de-bloat\programs_to_target_by_GUID.bat' to add or remove entries from the list. Thanks to /u/tuxedo_jack
* stage_3_disinfect: Add short message to Vipre and Sophos scans explaning the scan is in progress. Thanks to /u/famouslastwords
STAGE 0: Prep
. Rkill v2.7.0.0
. ProcessKiller v1.0
. TDSS Killer v3.0.0.42
. erunt v1.1j
STAGE 1: Tempclean
. CCLeaner v5.01.5075
. BleachBit v1.6
. TempFileCleanup v1.0.0-TRON
. USB Device Cleanup v0.8.1
STAGE 2: De-bloat
* \resources\stage_2_de-bloat\programs_to_target.txt
* Removal of some redundant entries, should grant small speed increase
+ \resources\stage_2_de-bloat\programs_to_target_by_GUID.bat
` This file contains specific GUIDs to target. Initial list thanks to /u/tuxedo_jack
STAGE 3: Disinfect
. RogueKiller v10.1.1.0
* Sophos Virus Removal Tool v2.5.4, update defs
* Vipre Rescue Scanner v7.0.7.8, update defs
. Malwarebytes Anti-Malware v2.0.4.1028
STAGE 4: Patch
. 7-Zip v9.36 (multi-language)
* Adobe Flash Player v16.0.0.257 (language ignored)
. Adobe Reader v11.0.10 (English-only; replace with your language version if necessary)
. Java Runtime Environment 8u25 (language ignored)
. Windows updates <pulled down live>
STAGE 5: Optimize
. smartctl v6.2 2013-07-26 r3841
. Defraggler v2.18.0.945
STAGE 6: Wrap-up
. SwithMail.exe v2.1.5.0
STAGE 7: Manual tools
. ADSSpy v1.11.0.0
. AdwCleaner v4.1.0.6
. aswMBR v1.0.1.2041
. autoruns v12.01
. ComboFix v15.1.8.1
. gmer v2.1.19357
. Junkware Removal Tool v6.4.1
. Malwarebytes Anti-Rootkit v1.08.2.1001
. ServicesRepair.exe v1.0.0.3
. VirusTotal uploader tool v2.2
########################
# v4.4.0 // 2015-01-12 #
########################
tron.bat v4.4.0
+ stage_1_tempcleanup: Add unused USB device cleanup. Thanks to Uwe Sieber ( www.uwe-sieber.de )
! stage_4_patch:flash: Fix broken Flash installer (IE)
STAGE 0: Prep
* Rkill v2.7.0.0
. ProcessKiller v1.0
* TDSS Killer v3.0.0.42
. erunt v1.1j
STAGE 1: Tempclean
. CCLeaner v5.01.5075
. BleachBit v1.6
* TempFileCleanup v1.0.0-TRON
- Remove many unnecessary sections which aren't applicable to Tron
- Disable deletion of C:\temp since a lot of people seem to run Tron from there
+ USB Device Cleanup v0.8.1 // thanks to Uwe Sieber (www.uwe-sieber.de). Cleans out unused USB devices
STAGE 2: De-bloat
Try to remove programs listed here: \resources\stage_2_de-bloat\programs_to_target.txt
. No changes
STAGE 3: Disinfect
. RogueKiller v10.1.1.0
* Sophos Virus Removal Tool v2.5.4, update defs
* Vipre Rescue Scanner v7.0.7.8, update defs
. Malwarebytes Anti-Malware v2.0.4.1028
STAGE 4: Patch
. 7-Zip v9.36 (multi-language)
. Adobe Flash Player v16.0.0.235 (language ignored)
. Adobe Reader v11.0.10 (English-only; replace with your language version if necessary)
. Java Runtime Environment 8u25 (language ignored)
. Windows updates <pulled down live>
STAGE 5: Optimize
. smartctl v6.2 2013-07-26 r3841
. Defraggler v2.18.0.945
STAGE 6: Wrap-up
. SwithMail.exe v2.1.5.0
STAGE 7: Manual tools
. ADSSpy v1.11.0.0
* AdwCleaner v4.1.0.6
. aswMBR v1.0.1.2041
. autoruns v12.01
* ComboFix v 15.1.8.1
. gmer v2.1.19357
. Junkware Removal Tool v6.4.1
+ Malwarebytes Anti-Rootkit v1.08.2.1001
. ServicesRepair.exe v1.0.0.3
- TempFileCleaner v3.1.9.0
. VirusTotal uploader tool v2.2
########################
# v4.3.3 // 2014-12-31 #
########################
tron.bat v4.3.3
/ stage_4_patch:7-zip: Update links to reflect new version of 7-Zip. Thanks to /u/Reverent
STAGE 0: Prep
. Rkill v2.6.9.0
. ProcessKiller v1.0
. TDSS Killer v3.0.0.41
. erunt v1.1j
STAGE 1: Tempclean
* CCLeaner v5.01.5075
. BleachBit v1.6
. TempFileCleanup v3.5.0
STAGE 2: De-bloat
Try to remove programs listed here: \resources\stage_2_de-bloat\programs_to_target.txt
* Remove and combine some redundant entries. Should grant small speed increase.
STAGE 3: Disinfect
* RogueKiller v10.1.1.0
* Sophos Virus Removal Tool v2.5.4, update defs
* Vipre Rescue Scanner v7.0.7.8, update defs
. Malwarebytes Anti-Malware v2.0.4.1028
STAGE 4: Patch
* 7-Zip v9.36 (multi-language)
. Adobe Flash Player v16.0.0.235 (language ignored)
. Adobe Reader v11.0.10 (English-only; replace with your language version if necessary)
. Java Runtime Environment 8u25 (language ignored)
. Windows updates <pulled down live>
STAGE 5: Optimize
. smartctl v6.2 2013-07-26 r3841
. Defraggler v2.18.0.945
STAGE 6: Wrap-up
. SwithMail.exe v2.1.5.0
STAGE 7: Manual tools
. ADSSpy v1.11.0.0
* AdwCleaner v4.1.0.6
. aswMBR v1.0.1.2041
. autoruns v12.01
* ComboFix v14.12.30.1
. gmer v2.1.19357
. Junkware Removal Tool v6.4.1
. ServicesRepair.exe v1.0.0.3
. TempFileCleaner v3.1.9.0
. VirusTotal uploader tool v2.2
########################
# v4.3.2 // 2014-12-23 #
########################
tron.bat v4.3.2
! bugfix: Fix crash condition where script would terminate if run by a user with spaces in the name. Thanks to /u/evileyerex
* improvement:ssd_check: Check for additional string commonly seen on SSDs: "SandForce". Thanks to /u/Techie4Life83
########################
# v4.3.1 // 2014-12-18 #
########################
tron.bat v4.3.1
! bugfix: Fix missing escape characters in echo statement near check for -sb flag. Thanks to /u/scan2006, /u/SubtleContradiction and /u/ChristopherSitten
! bugfix: Skip update check if running automatically. Thanks to /u/dangolo
########################
# v4.3.0 // 2014-12-17 #
########################
tron.bat v4.3.0
+ feature: Add skip debloat flag (-sb) and associated SKIP_DEBLOAT variable. Set to yes to skip de-bloat section
! bugfix: Fix small bug with EULA screen (was requiring typing "I AGREE" twice)
* update: Update all binary references to new versions
STAGE 0: Prep
* Rkill v2.6.9.0 // Renamed to explore.exe to avoid malware blocking. Thanks to /u/ExcessiveIrritation
. ProcessKiller v1.0
. TDSS Killer v3.0.0.41
. erunt v1.1j
STAGE 1: Tempclean
. CCLeaner v5.00.5050
. BleachBit v1.6
. TempFileCleanup v3.5.0
STAGE 2: De-bloat
Try to remove programs listed here: \resources\stage_2_de-bloat\programs_to_target.txt
. No changes
STAGE 3: Disinfect
* RogueKiller v10.1.0.0
* Sophos Virus Removal Tool v2.5.4, update defs
* Vipre Rescue Scanner v7.0.7.8, update defs
* Malwarebytes Anti-Malware v2.0.4.1028
STAGE 4: Patch
. 7-Zip v9.20 (multi-language)
* Adobe Flash Player v16.0.0.235 (language ignored)
* Adobe Reader v11.0.10 (English-only; replace with your language version if necessary)
. Java Runtime Environment 8u25 (language ignored)
. Windows updates <pulled down live>
STAGE 5: Optimize
. smartctl v6.2 2013-07-26 r3841
. Defraggler v2.18.0.945
STAGE 6: Wrap-up
. SwithMail.exe v2.1.5.0
STAGE 7: Manual tools
. ADSSpy v1.11.0.0
. AdwCleaner v4.1.0.5
. aswMBR v1.0.1.2041
. autoruns v12.01
* ComboFix v14.12.14.1
. gmer v2.1.19357
. Junkware Removal Tool v6.3.9
. ServicesRepair.exe v1.0.0.3
. TempFileCleaner v3.1.9.0
. VirusTotal uploader tool v2.2
########################
# v4.2.1 // 2014-11-30 #
########################
tron.bat v4.2.1
! bugfix: Fix broken -x (self-destruct) functionality due to uninitialized variable. Thanks to /u/HittingSmoke
########################
# v4.2.0 // 2014-11-26 #
########################
tron.bat v4.2.0
+ feature: Add -er flag (Email Report) and associated EMAIL_REPORT variable to automatically send an email report when Tron is finished. Requires you to input your SMTP information in \resources\stage_6_wrap-up\email_report\SwithMailSettings.xml. Thanks to /u/bodkov
+ stages: Add stage_6_wrap-up to support new email report functionality
/ stages: Rename stage_6_manual_tools to stage_7_manual_tools
STAGE 0: Prep
. Rkill v2.6.8.0
. ProcessKiller v1.0
. TDSS Killer v3.0.0.41
. erunt v1.1j
STAGE 1: Tempclean
* CCLeaner v5.00.5050
* BleachBit v1.6
. TempFileCleanup v3.5.0
STAGE 2: De-bloat
Try to remove programs listed here: \resources\stage_2_de-bloat\programs_to_target.txt
. No changes
STAGE 3: Disinfect
. RogueKiller v10.0.2.0
* Sophos Virus Removal Tool v2.5.3, update defs
* Vipre Rescue Scanner v7.0.7.8, update defs
. Malwarebytes Anti-Malware v2.0.3.1025
STAGE 4: Patch
. 7-Zip v9.20 (multi-language)
* Adobe Flash Player v15.0.0.239 (language ignored)
. Adobe Reader v11.0.09 (English-only; replace with your language version if necessary)
. Java Runtime Environment 8u25 (language ignored)
. Windows updates <pulled down live>
STAGE 5: Optimize
. smartctl v6.2 2013-07-26 r3841
. Defraggler v2.18.0.945
STAGE 6: Wrap-up
+ SwithMail.exe v2.1.5.0
STAGE 7: Manual tools
. ADSSpy v1.11.0.0
* AdwCleaner v4.1.0.2
. aswMBR v1.0.1.2041
. autoruns v12.01
* ComboFix v14.11.25.1
. gmer v2.1.19357
. Junkware Removal Tool v6.3.9
. ServicesRepair.exe v1.0.0.3
. TempFileCleaner v3.1.9.0
. VirusTotal uploader tool v2.2
########################
# v4.1.1 // 2014-11-19 #
########################
tron.bat v4.1.1
- feature: Remove Notepad++ installation. While it's a great text editor not everyone wants it on their PC, so we just stick to updating common vulnerable apps (Java,Reader,Flash). Thanks to /u/SubtleContradiction
STAGE 1: Tempclean
. TempFileCleanup v3.5.0
* Minor modification to TempFileCleanup sub-script. Disable deletion of Chrome cache since it seems to be causing problems. Will probably remove this script once Bleachbit v1.6 is released. Thanks to /u/easyjet
########################
# v4.1.0 // 2014-11-18 #
########################
tron.bat v4.1.0
+ feature: Add -sa flag and associated SKIP_ANTIVIRUS_SCANS variable. Use this to skip Sophos, Vipre and MBAM scans
+ feature: Add -sp flag and associated SKIP_PATCHES variable. Use this to skip patching 7-Zip, Java, and Adobe Flash and Reader
/ feature: Change -s flag (skip defrag) to -sd to fit convention with other skip flags. Undocumented support for -s flag remains for one more version and then will be removed
- feature: Remove -q flag and associated SHUT_UP variable, due to lack of audio support in Safe Mode
STAGE 0: Prep
. Rkill v2.6.8.0
. ProcessKiller v1.0
. TDSS Killer v3.0.0.41
. erunt v1.1j
- nircmd v2.75
STAGE 1: Tempclean
. CCLeaner v4.19.4867
. BleachBit v1.4
. TempFileCleanup v3.5.0
STAGE 2: De-bloat
Try to remove programs listed here: \resources\stage_2_de-bloat\programs_to_target.txt
. No changes
STAGE 3: Disinfect
. RogueKiller v10.0.2.0
* Sophos Virus Removal Tool v2.5.3, update defs
* Vipre Rescue Scanner v7.0.7.8, update defs
. Malwarebytes Anti-Malware v2.0.3.1025
STAGE 4: Patch
. 7-Zip v9.20 (multi-language)
. Adobe Flash Player v15.0.0.223 (language ignored)
. Adobe Reader v11.0.09 (English-only; replace with your language version if necessary)
. Java Runtime Environment 8u25 (language ignored)
. Notepad++ v6.6.9 (multi-language)
. Windows updates <pulled down live>
STAGE 5: Optimize
. smartctl v6.2 2013-07-26 r3841
. Defraggler v2.18.0.945
STAGE 6: Manual tools
. ADSSpy v1.11.0.0
* AdwCleaner v4.1.0.1
. aswMBR v1.0.1.2041
. autoruns v12.01
* ComboFix v14.11.17.1
. gmer v2.1.19357