71 lines
4.8 KiB
Python
71 lines
4.8 KiB
Python
"""WizardKit: Config - Tool Sources"""
|
|
# pylint: disable=line-too-long
|
|
# 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',
|
|
'Software Bundle': 'https://ninite.com/.net4.8-7zip-chrome-edge-vlc/ninite.exe',
|
|
'TDSSKiller': 'https://media.kaspersky.com/utilities/VirusUtilities/EN/tdsskiller.exe',
|
|
'VCRedist_2012_x32': 'https://download.microsoft.com/download/1/6/B/16B06F60-3B20-4FF2-B699-5E9B7962F9AE/VSU_4/vcredist_x86.exe',
|
|
'VCRedist_2012_x64': 'https://download.microsoft.com/download/1/6/B/16B06F60-3B20-4FF2-B699-5E9B7962F9AE/VSU_4/vcredist_x64.exe',
|
|
'VCRedist_2013_x32': 'https://aka.ms/highdpimfc2013x86enu',
|
|
'VCRedist_2013_x64': 'https://aka.ms/highdpimfc2013x64enu',
|
|
'VCRedist_2022_x32': 'https://aka.ms/vs/17/release/vc_redist.x86.exe',
|
|
'VCRedist_2022_x64': 'https://aka.ms/vs/17/release/vc_redist.x64.exe',
|
|
|
|
# Build Kit
|
|
'AIDA64': 'https://download.aida64.com/aida64engineer675.zip',
|
|
'Adobe Reader DC': 'https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/2200220191/AcroRdrDC2200220191_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',
|
|
'ERUNT': 'http://www.aumha.org/downloads/erunt.zip',
|
|
'Everything32': 'https://www.voidtools.com/Everything-1.4.1.1020.x86.zip',
|
|
'Everything64': 'https://www.voidtools.com/Everything-1.4.1.1020.x64.zip',
|
|
'FastCopy': 'https://ftp.vector.co.jp/75/32/2323/FastCopy4.2.0_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/696',
|
|
'HWiNFO': 'https://www.sac.sk/download/utildiag/hwi_730.zip',
|
|
'LibreOffice32': 'https://download.documentfoundation.org/libreoffice/stable/7.3.6/win/x86/LibreOffice_7.3.6_Win_x86.msi',
|
|
'LibreOffice64': 'https://download.documentfoundation.org/libreoffice/stable/7.3.6/win/x86_64/LibreOffice_7.3.6_Win_x64.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.1.9.3/npp.8.1.9.3.portable.minimalist.7z',
|
|
'OpenShell': 'https://github.com/Open-Shell/Open-Shell-Menu/releases/download/v4.4.170/OpenShellSetup_4_4_170.exe',
|
|
'PuTTY': 'https://the.earth.li/~sgtatham/putty/latest/w32/putty.zip',
|
|
'SDIO Torrent': 'https://www.glenn.delahoy.com/downloads/sdio/SDIO_Update.torrent',
|
|
'UninstallView32': 'https://www.nirsoft.net/utils/uninstallview.zip',
|
|
'UninstallView64': 'https://www.nirsoft.net/utils/uninstallview-x64.zip',
|
|
'WizTree': 'https://diskanalyzer.com/files/wiztree_4_10_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.5).zip?v=155959',
|
|
}
|
|
|
|
|
|
if __name__ == '__main__':
|
|
print("This file is not meant to be called directly.")
|