├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── feature_request.md │ ├── site-information.md │ └── site-support-request.md └── workflows │ └── build_windows.yml ├── .gitignore ├── LICENSE ├── README.md ├── art ├── banner_normal │ ├── banner_1.png │ ├── banner_2.png │ ├── banner_3.png │ ├── banner_4.png │ └── banner_5.png └── banner_small │ ├── banner_1.png │ ├── banner_2.png │ ├── banner_3.png │ ├── banner_4.png │ └── banner_5.png ├── icon.ico ├── main.py ├── media └── preview.gif ├── modules ├── __init__.py ├── anontransfer.py ├── anonymfile.py ├── auto_update.py ├── availability_checker.py ├── bowfile.py ├── buzzheavier.py ├── catbox.py ├── clicknupload.py ├── config_manager.py ├── cyberfile.py ├── delafil.py ├── doodrive.py ├── downloadgg.py ├── easyupload.py ├── fastupload.py ├── filebin.py ├── fileio.py ├── files_dp_ua.py ├── filesadmin.py ├── filesfm.py ├── filesi.py ├── fileupload.py ├── gofile.py ├── hexupload.py ├── keep.py ├── krakenfiles.py ├── litterbox.py ├── logger.py ├── mixdrop.py ├── onecloudfile.py ├── onefichier.py ├── oshi.py ├── pixeldrain.py ├── preset_manager.py ├── pretty_print.py ├── proxy_scraper.py ├── rapidgator.py ├── site_data.py ├── tempsend.py ├── tmpfiles.py ├── transfer.py ├── ufile.py ├── user_agents.py ├── usercloud.py ├── usersdrive.py └── wdho.py ├── presets ├── cs-rin-ru.json ├── f95.json └── template.json5 └── requirements.txt /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Official-Husko/mul-tor/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Official-Husko/mul-tor/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/site-information.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Official-Husko/mul-tor/HEAD/.github/ISSUE_TEMPLATE/site-information.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/site-support-request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Official-Husko/mul-tor/HEAD/.github/ISSUE_TEMPLATE/site-support-request.md -------------------------------------------------------------------------------- /.github/workflows/build_windows.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Official-Husko/mul-tor/HEAD/.github/workflows/build_windows.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Official-Husko/mul-tor/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Official-Husko/mul-tor/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Official-Husko/mul-tor/HEAD/README.md -------------------------------------------------------------------------------- /art/banner_normal/banner_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Official-Husko/mul-tor/HEAD/art/banner_normal/banner_1.png -------------------------------------------------------------------------------- /art/banner_normal/banner_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Official-Husko/mul-tor/HEAD/art/banner_normal/banner_2.png -------------------------------------------------------------------------------- /art/banner_normal/banner_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Official-Husko/mul-tor/HEAD/art/banner_normal/banner_3.png -------------------------------------------------------------------------------- /art/banner_normal/banner_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Official-Husko/mul-tor/HEAD/art/banner_normal/banner_4.png -------------------------------------------------------------------------------- /art/banner_normal/banner_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Official-Husko/mul-tor/HEAD/art/banner_normal/banner_5.png -------------------------------------------------------------------------------- /art/banner_small/banner_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Official-Husko/mul-tor/HEAD/art/banner_small/banner_1.png -------------------------------------------------------------------------------- /art/banner_small/banner_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Official-Husko/mul-tor/HEAD/art/banner_small/banner_2.png -------------------------------------------------------------------------------- /art/banner_small/banner_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Official-Husko/mul-tor/HEAD/art/banner_small/banner_3.png -------------------------------------------------------------------------------- /art/banner_small/banner_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Official-Husko/mul-tor/HEAD/art/banner_small/banner_4.png -------------------------------------------------------------------------------- /art/banner_small/banner_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Official-Husko/mul-tor/HEAD/art/banner_small/banner_5.png -------------------------------------------------------------------------------- /icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Official-Husko/mul-tor/HEAD/icon.ico -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Official-Husko/mul-tor/HEAD/main.py -------------------------------------------------------------------------------- /media/preview.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Official-Husko/mul-tor/HEAD/media/preview.gif -------------------------------------------------------------------------------- /modules/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Official-Husko/mul-tor/HEAD/modules/__init__.py -------------------------------------------------------------------------------- /modules/anontransfer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Official-Husko/mul-tor/HEAD/modules/anontransfer.py -------------------------------------------------------------------------------- /modules/anonymfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Official-Husko/mul-tor/HEAD/modules/anonymfile.py -------------------------------------------------------------------------------- /modules/auto_update.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Official-Husko/mul-tor/HEAD/modules/auto_update.py -------------------------------------------------------------------------------- /modules/availability_checker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Official-Husko/mul-tor/HEAD/modules/availability_checker.py -------------------------------------------------------------------------------- /modules/bowfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Official-Husko/mul-tor/HEAD/modules/bowfile.py -------------------------------------------------------------------------------- /modules/buzzheavier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Official-Husko/mul-tor/HEAD/modules/buzzheavier.py -------------------------------------------------------------------------------- /modules/catbox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Official-Husko/mul-tor/HEAD/modules/catbox.py -------------------------------------------------------------------------------- /modules/clicknupload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Official-Husko/mul-tor/HEAD/modules/clicknupload.py -------------------------------------------------------------------------------- /modules/config_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Official-Husko/mul-tor/HEAD/modules/config_manager.py -------------------------------------------------------------------------------- /modules/cyberfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Official-Husko/mul-tor/HEAD/modules/cyberfile.py -------------------------------------------------------------------------------- /modules/delafil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Official-Husko/mul-tor/HEAD/modules/delafil.py -------------------------------------------------------------------------------- /modules/doodrive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Official-Husko/mul-tor/HEAD/modules/doodrive.py -------------------------------------------------------------------------------- /modules/downloadgg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Official-Husko/mul-tor/HEAD/modules/downloadgg.py -------------------------------------------------------------------------------- /modules/easyupload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Official-Husko/mul-tor/HEAD/modules/easyupload.py -------------------------------------------------------------------------------- /modules/fastupload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Official-Husko/mul-tor/HEAD/modules/fastupload.py -------------------------------------------------------------------------------- /modules/filebin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Official-Husko/mul-tor/HEAD/modules/filebin.py -------------------------------------------------------------------------------- /modules/fileio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Official-Husko/mul-tor/HEAD/modules/fileio.py -------------------------------------------------------------------------------- /modules/files_dp_ua.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Official-Husko/mul-tor/HEAD/modules/files_dp_ua.py -------------------------------------------------------------------------------- /modules/filesadmin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Official-Husko/mul-tor/HEAD/modules/filesadmin.py -------------------------------------------------------------------------------- /modules/filesfm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Official-Husko/mul-tor/HEAD/modules/filesfm.py -------------------------------------------------------------------------------- /modules/filesi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Official-Husko/mul-tor/HEAD/modules/filesi.py -------------------------------------------------------------------------------- /modules/fileupload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Official-Husko/mul-tor/HEAD/modules/fileupload.py -------------------------------------------------------------------------------- /modules/gofile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Official-Husko/mul-tor/HEAD/modules/gofile.py -------------------------------------------------------------------------------- /modules/hexupload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Official-Husko/mul-tor/HEAD/modules/hexupload.py -------------------------------------------------------------------------------- /modules/keep.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Official-Husko/mul-tor/HEAD/modules/keep.py -------------------------------------------------------------------------------- /modules/krakenfiles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Official-Husko/mul-tor/HEAD/modules/krakenfiles.py -------------------------------------------------------------------------------- /modules/litterbox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Official-Husko/mul-tor/HEAD/modules/litterbox.py -------------------------------------------------------------------------------- /modules/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Official-Husko/mul-tor/HEAD/modules/logger.py -------------------------------------------------------------------------------- /modules/mixdrop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Official-Husko/mul-tor/HEAD/modules/mixdrop.py -------------------------------------------------------------------------------- /modules/onecloudfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Official-Husko/mul-tor/HEAD/modules/onecloudfile.py -------------------------------------------------------------------------------- /modules/onefichier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Official-Husko/mul-tor/HEAD/modules/onefichier.py -------------------------------------------------------------------------------- /modules/oshi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Official-Husko/mul-tor/HEAD/modules/oshi.py -------------------------------------------------------------------------------- /modules/pixeldrain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Official-Husko/mul-tor/HEAD/modules/pixeldrain.py -------------------------------------------------------------------------------- /modules/preset_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Official-Husko/mul-tor/HEAD/modules/preset_manager.py -------------------------------------------------------------------------------- /modules/pretty_print.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Official-Husko/mul-tor/HEAD/modules/pretty_print.py -------------------------------------------------------------------------------- /modules/proxy_scraper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Official-Husko/mul-tor/HEAD/modules/proxy_scraper.py -------------------------------------------------------------------------------- /modules/rapidgator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Official-Husko/mul-tor/HEAD/modules/rapidgator.py -------------------------------------------------------------------------------- /modules/site_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Official-Husko/mul-tor/HEAD/modules/site_data.py -------------------------------------------------------------------------------- /modules/tempsend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Official-Husko/mul-tor/HEAD/modules/tempsend.py -------------------------------------------------------------------------------- /modules/tmpfiles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Official-Husko/mul-tor/HEAD/modules/tmpfiles.py -------------------------------------------------------------------------------- /modules/transfer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Official-Husko/mul-tor/HEAD/modules/transfer.py -------------------------------------------------------------------------------- /modules/ufile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Official-Husko/mul-tor/HEAD/modules/ufile.py -------------------------------------------------------------------------------- /modules/user_agents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Official-Husko/mul-tor/HEAD/modules/user_agents.py -------------------------------------------------------------------------------- /modules/usercloud.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Official-Husko/mul-tor/HEAD/modules/usercloud.py -------------------------------------------------------------------------------- /modules/usersdrive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Official-Husko/mul-tor/HEAD/modules/usersdrive.py -------------------------------------------------------------------------------- /modules/wdho.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Official-Husko/mul-tor/HEAD/modules/wdho.py -------------------------------------------------------------------------------- /presets/cs-rin-ru.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Official-Husko/mul-tor/HEAD/presets/cs-rin-ru.json -------------------------------------------------------------------------------- /presets/f95.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Official-Husko/mul-tor/HEAD/presets/f95.json -------------------------------------------------------------------------------- /presets/template.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Official-Husko/mul-tor/HEAD/presets/template.json5 -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Official-Husko/mul-tor/HEAD/requirements.txt --------------------------------------------------------------------------------