62 lines
4.2 KiB
Python
62 lines
4.2 KiB
Python
"""WizardKit: Config - Tool Sources"""
|
|
# vim: sts=2 sw=2 ts=2
|
|
|
|
|
|
# Download frequency in days
|
|
DOWNLOAD_FREQUENCY = 7
|
|
|
|
|
|
# Sources
|
|
SOURCES = {
|
|
# Main
|
|
'AVRemover32': 'https://download.eset.com/com/eset/tools/installers/av_remover/latest/avremover_nt32_enu.exe',
|
|
'AVRemover64': 'https://download.eset.com/com/eset/tools/installers/av_remover/latest/avremover_nt64_enu.exe',
|
|
'AdwCleaner': 'https://downloads.malwarebytes.com/file/adwcleaner',
|
|
'Autologon32': 'http://live.sysinternals.com/Autologon.exe',
|
|
'Autologon64': 'http://live.sysinternals.com/Autologon64.exe',
|
|
'Firefox32': 'https://download.mozilla.org/?product=firefox-latest-ssl&os=win&lang=en-US',
|
|
'Firefox64': 'https://download.mozilla.org/?product=firefox-latest-ssl&os=win64&lang=en-US',
|
|
'HitmanPro32': 'https://dl.surfright.nl/HitmanPro.exe',
|
|
'HitmanPro64': 'https://dl.surfright.nl/HitmanPro_x64.exe',
|
|
'KVRT': 'https://devbuilds.s.kaspersky-labs.com/devbuilds/KVRT/latest/full/KVRT.exe',
|
|
'RKill': 'https://download.bleepingcomputer.com/grinler/rkill.exe',
|
|
'RegDelNull': 'https://live.sysinternals.com/RegDelNull.exe',
|
|
'RegDelNull64': 'https://live.sysinternals.com/RegDelNull64.exe',
|
|
|
|
# Build Kit
|
|
'AIDA64': 'https://download.aida64.com/aida64engineer692.zip',
|
|
'Adobe Reader DC': 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/2300620360/AcroRdrDC2300620360_en_US.exe',
|
|
'Aria2': 'https://github.com/aria2/aria2/releases/download/release-1.36.0/aria2-1.36.0-win-32bit-build1.zip',
|
|
'Autoruns32': 'http://live.sysinternals.com/Autoruns.exe',
|
|
'Autoruns64': 'http://live.sysinternals.com/Autoruns64.exe',
|
|
'BleachBit': 'https://download.bleachbit.org/BleachBit-4.4.2-portable.zip',
|
|
'BlueScreenView32': 'http://www.nirsoft.net/utils/bluescreenview.zip',
|
|
'BlueScreenView64': 'http://www.nirsoft.net/utils/bluescreenview-x64.zip',
|
|
'BCUninstaller': 'https://github.com/Klocman/Bulk-Crap-Uninstaller/releases/download/v5.7/BCUninstaller_5.7_portable.zip',
|
|
'DDU': 'https://www.wagnardsoft.com/DDU/download/DDU%20v18.0.6.8.exe',
|
|
'ERUNT': 'http://www.aumha.org/downloads/erunt.zip',
|
|
'Everything32': 'https://www.voidtools.com/Everything-1.4.1.1024.x86.zip',
|
|
'Everything64': 'https://www.voidtools.com/Everything-1.4.1.1024.x64.zip',
|
|
'FastCopy': 'https://github.com/FastCopyLab/FastCopyDist2/raw/main/FastCopy5.4.2_installer.exe',
|
|
'Fluent-Metro': 'https://github.com/bonzibudd/Fluent-Metro/releases/download/v1.5.3/Fluent-Metro_1.5.3.zip',
|
|
'FurMark': 'https://geeks3d.com/dl/get/728',
|
|
'HWiNFO': 'https://www.sac.sk/download/utildiag/hwi_764.zip',
|
|
'LibreOffice32': 'https://download.documentfoundation.org/libreoffice/stable/7.6.2/win/x86/LibreOffice_7.6.2_Win_x86.msi',
|
|
'LibreOffice64': 'https://download.documentfoundation.org/libreoffice/stable/7.6.2/win/x86_64/LibreOffice_7.6.2_Win_x86-64.msi',
|
|
'Macs Fan Control': 'https://www.crystalidea.com/downloads/macsfancontrol_setup.exe',
|
|
'Neutron': 'http://keir.net/download/neutron.zip',
|
|
'Notepad++': 'https://github.com/notepad-plus-plus/notepad-plus-plus/releases/download/v8.5.8/npp.8.5.8.portable.minimalist.7z',
|
|
'OpenShell': 'https://github.com/Open-Shell/Open-Shell-Menu/releases/download/v4.4.191/OpenShellSetup_4_4_191.exe',
|
|
'PuTTY': 'https://the.earth.li/~sgtatham/putty/latest/w32/putty.zip',
|
|
'SDIO Torrent': 'https://www.glenn.delahoy.com/downloads/sdio/SDIO_Update.torrent',
|
|
'WizTree': 'https://diskanalyzer.com/files/wiztree_4_15_portable.zip',
|
|
'XMPlay': 'https://support.xmplay.com/files/20/xmplay385.zip?v=47090',
|
|
'XMPlay 7z': 'https://support.xmplay.com/files/16/xmp-7z.zip?v=800962',
|
|
'XMPlay Game': 'https://support.xmplay.com/files/12/xmp-gme.zip?v=515637',
|
|
'XMPlay RAR': 'https://support.xmplay.com/files/16/xmp-rar.zip?v=409646',
|
|
'XMPlay Innocuous': 'https://support.xmplay.com/files/10/Innocuous%20(v1.7).zip?v=645281',
|
|
}
|
|
|
|
|
|
if __name__ == '__main__':
|
|
print("This file is not meant to be called directly.")
|