Merge remote-tracking branch 'upstream/dev' into dev

This commit is contained in:
2Shirt 2023-10-22 17:45:09 -07:00
commit 1f38be9aea
Signed by: 2Shirt
GPG key ID: 152FAC923B0E132C
3 changed files with 0 additions and 23 deletions

View file

@ -77,7 +77,6 @@ BASE_MENUS = {
'Options': (
MenuEntry('Kill Explorer', selected=False),
MenuEntry('Run RKill'),
MenuEntry('Run TDSSKiller (once)'),
MenuEntry('Sync Clock'),
MenuEntry('Use Autologon', selected=False),
),
@ -92,7 +91,6 @@ PRESETS = {
'Default': { # Will be expanded at runtime using BASE_MENUS
'Options': (
'Run RKill',
'Run TDSSKiller (once)',
'Sync Clock',
),
},

View file

@ -29,7 +29,6 @@ SOURCES = {
'RKill': 'https://download.bleepingcomputer.com/grinler/rkill.exe',
'RegDelNull': 'https://live.sysinternals.com/RegDelNull.exe',
'RegDelNull64': 'https://live.sysinternals.com/RegDelNull64.exe',
'TDSSKiller': 'https://media.kaspersky.com/utilities/VirusUtilities/EN/tdsskiller.exe',
# Build Kit
'AIDA64': 'https://download.aida64.com/aida64engineer692.zip',

View file

@ -341,8 +341,6 @@ def init_session(options) -> None:
'Run AVRemover...', run_tool, 'AVRemover', 'AVRemover',
download=True, msg_good='DONE',
)
if options['Run TDSSKiller (once)']['Selected']:
TRY_PRINT.run('Running TDSSKiller...', run_tdsskiller, msg_good='DONE')
print('')
@ -1392,24 +1390,6 @@ def run_rkill() -> None:
run_tool('RKill', 'RKill', *cmd_args, download=True)
def run_tdsskiller() -> None:
"""Run TDSSKiller scan."""
log_path = format_log_path(log_name='TDSSKiller', timestamp=True, tool=True)
log_path.parent.mkdir(parents=True, exist_ok=True)
quarantine_path = set_quarantine_path('TDSSKiller')
quarantine_path.mkdir(parents=True, exist_ok=True)
cmd_args = (
'-accepteula',
'-accepteulaksn',
'-l', log_path,
'-qpath', quarantine_path,
'-qsus',
'-dcexact',
'-silent',
)
run_tool('TDSSKiller', 'TDSSKiller', *cmd_args, download=True)
def uninstall_emsisoft_cmd():
"""Uninstall EmsisoftCmd."""
delete_folder(EMSISOFT_INSTALL_PATH, force=True, ignore_errors=True)