├── .gitignore ├── CONTRIBUTING.md ├── README.md ├── Taskbooks ├── enum_installed_software.py └── example.py ├── api ├── README.md ├── SpeculaApi.sln ├── SpeculaApi │ ├── Sepcula.cpp │ ├── Sepcula.h │ ├── Sepcula.rgs │ ├── SpeculaApi.cpp │ ├── SpeculaApi.def │ ├── SpeculaApi.idl │ ├── SpeculaApi.rc │ ├── SpeculaApi.rgs │ ├── SpeculaApi.vcxproj │ ├── SpeculaApi.vcxproj.filters │ ├── SpeculaApi_i.h │ ├── SpeculaApips.def │ ├── dllmain.cpp │ ├── dllmain.h │ ├── framework.h │ ├── pch.cpp │ ├── pch.h │ ├── resource.h │ └── targetver.h └── SpeculaApiPS │ ├── SpeculaApiPS.vcxproj │ └── SpeculaApiPS.vcxproj.filters ├── data └── payloads │ └── api │ ├── SpeculaApi.dll │ └── SpeculaApi.x64.dll ├── functions ├── api │ ├── install_api.py │ ├── install_api.txt │ ├── load_dll.py │ ├── load_dll.txt │ ├── remove_api.py │ ├── remove_api.txt │ ├── run_shell.py │ ├── run_shell.txt │ ├── verify_api.py │ └── verify_api.txt ├── enumerate │ ├── host │ │ ├── list_amsiproviders.py │ │ ├── list_amsiproviders.txt │ │ ├── list_applocker.py │ │ ├── list_applocker.txt │ │ ├── list_autoruns.py │ │ ├── list_autoruns.txt │ │ ├── list_basic.py │ │ ├── list_basic.txt │ │ ├── list_boottime.py │ │ ├── list_boottime.txt │ │ ├── list_clipboard.py │ │ ├── list_clipboard.txt │ │ ├── list_environmentvariables.py │ │ ├── list_environmentvariables.txt │ │ ├── list_gpp.py │ │ ├── list_gpp.txt │ │ ├── list_hostsfile.py │ │ ├── list_hostsfile.txt │ │ ├── list_hotfixes.py │ │ ├── list_hotfixes.txt │ │ ├── list_installedapps.py │ │ ├── list_installedapps.txt │ │ ├── list_installeddotnet.py │ │ ├── list_installeddotnet.txt │ │ ├── list_installedpowershell.py │ │ ├── list_installedpowershell.txt │ │ ├── list_iprouting.py │ │ ├── list_iprouting.txt │ │ ├── list_localadmins.py │ │ ├── list_localadmins.txt │ │ ├── list_localusers.py │ │ ├── list_localusers.txt │ │ ├── list_logging.py │ │ ├── list_logging.txt │ │ ├── list_mappeddrives.py │ │ ├── list_mappeddrives.txt │ │ ├── list_networkcardinfo.py │ │ ├── list_networkcardinfo.txt │ │ ├── list_networklogon.py │ │ ├── list_networklogon.txt │ │ ├── list_ntdomaininfo.py │ │ ├── list_ntdomaininfo.txt │ │ ├── list_officearch.py │ │ ├── list_officearch.txt │ │ ├── list_printers.py │ │ ├── list_printers.txt │ │ ├── list_processes.py │ │ ├── list_processes.txt │ │ ├── list_recentcommands.py │ │ ├── list_recentcommands.txt │ │ ├── list_recentfiles.py │ │ ├── list_recentfiles.txt │ │ ├── list_recyclebin.py │ │ ├── list_recyclebin.txt │ │ ├── list_scheduledtasks.py │ │ ├── list_scheduledtasks.txt │ │ ├── list_servicepermissions.py │ │ ├── list_servicepermissions.txt │ │ ├── list_services.py │ │ ├── list_services.txt │ │ ├── list_startmenu.py │ │ ├── list_startmenu.txt │ │ ├── list_timezone.py │ │ ├── list_timezone.txt │ │ ├── list_whoami.py │ │ ├── list_whoami.txt │ │ ├── list_windowsarch.py │ │ ├── list_windowsarch.txt │ │ ├── list_windowsversion.py │ │ └── list_windowsversion.txt │ └── ldap │ │ ├── ldap_query.py │ │ ├── ldap_query.txt │ │ ├── list_addcomputertodomain.py │ │ ├── list_addcomputertodomain.txt │ │ ├── list_asreproast.py │ │ ├── list_asreproast.txt │ │ ├── list_computer.py │ │ ├── list_computer.txt │ │ ├── list_computers.py │ │ ├── list_computers.txt │ │ ├── list_domaininfo.py │ │ ├── list_domaininfo.txt │ │ ├── list_lapspassword.py │ │ ├── list_lapspassword.txt │ │ ├── list_passwordnotrequired.py │ │ ├── list_passwordnotrequired.txt │ │ ├── list_passwordpolicy.py │ │ ├── list_passwordpolicy.txt │ │ ├── list_user.py │ │ ├── list_user.txt │ │ ├── list_users.py │ │ └── list_users.txt ├── execute │ └── host │ │ ├── application.py │ │ ├── application.txt │ │ ├── capture_netntlmv2.py │ │ ├── capture_netntlmv2.txt │ │ ├── cmd.py │ │ ├── cmd.txt │ │ ├── execute_excel4macro.py │ │ ├── execute_excel4macro.txt │ │ ├── execute_registerxll.py │ │ ├── execute_registerxll.txt │ │ ├── migrate_homepage.py │ │ ├── migrate_homepage.txt │ │ ├── remove_homepage.py │ │ ├── remove_homepage.txt │ │ ├── set_calendarhomepagehook.py │ │ ├── set_calendarhomepagehook.txt │ │ ├── spawnproc_explorer.py │ │ ├── spawnproc_explorer.txt │ │ ├── uac-sdclt.py │ │ ├── uac-sdclt.txt │ │ ├── wmi_execute.py │ │ ├── wmi_execute.txt │ │ ├── wmi_killprocname.py │ │ ├── wmi_killprocname.txt │ │ ├── wmi_killprocpid.py │ │ ├── wmi_killprocpid.txt │ │ ├── wscriptshell.py │ │ └── wscriptshell.txt ├── operation │ ├── file │ │ ├── cat_file.py │ │ ├── cat_file.txt │ │ ├── check_filearch.py │ │ ├── check_filearch.txt │ │ ├── check_fileexist.py │ │ ├── check_fileexist.txt │ │ ├── check_filehash.py │ │ ├── check_filehash.txt │ │ ├── copy_dir.py │ │ ├── copy_dir.txt │ │ ├── copy_file.py │ │ ├── copy_file.txt │ │ ├── create_dir.py │ │ ├── create_dir.txt │ │ ├── create_shortcut.py │ │ ├── create_shortcut.txt │ │ ├── delete_dir.py │ │ ├── delete_dir.txt │ │ ├── delete_file.py │ │ ├── delete_file.txt │ │ ├── download_filehttp.py │ │ ├── download_filehttp.txt │ │ ├── get_file.py │ │ ├── get_file.txt │ │ ├── list_acl.py │ │ ├── list_acl.txt │ │ ├── list_dir.py │ │ ├── list_dir.txt │ │ ├── list_shortcutinfo.py │ │ ├── list_shortcutinfo.txt │ │ ├── move_file.py │ │ ├── move_file.txt │ │ ├── put_file.py │ │ ├── put_file.txt │ │ ├── split_file.py │ │ ├── split_file.txt │ │ ├── zip_content.py │ │ └── zip_content.txt │ ├── network │ │ ├── netstat.py │ │ ├── netstat.txt │ │ ├── nslookup.py │ │ └── nslookup.txt │ ├── outlook │ │ ├── adjust_notifications.py │ │ ├── adjust_notifications.txt │ │ ├── change_outlookfolder.py │ │ ├── change_outlookfolder.txt │ │ ├── changeview_outlookfolder.py │ │ ├── changeview_outlookfolder.txt │ │ ├── delete_mail.py │ │ ├── delete_mail.txt │ │ ├── dump_gal.py │ │ ├── dump_gal.txt │ │ ├── get_emailaddress.py │ │ ├── get_emailaddress.txt │ │ ├── list_notifications.py │ │ ├── list_notifications.txt │ │ ├── list_overview.py │ │ ├── list_overview.txt │ │ ├── read_calendar.py │ │ ├── read_calendar.txt │ │ ├── read_contacts.py │ │ ├── read_contacts.txt │ │ ├── read_email.py │ │ ├── read_email.txt │ │ ├── read_emailnamedfolder.py │ │ ├── read_emailnamedfolder.txt │ │ ├── read_other.py │ │ ├── read_other.txt │ │ ├── savedraft_filemail.py │ │ ├── savedraft_filemail.txt │ │ ├── search_email.py │ │ ├── search_email.txt │ │ ├── send_mail.py │ │ ├── send_mail.txt │ │ ├── sendfile_mail.py │ │ ├── sendfile_mail.txt │ │ ├── stop_outlook.py │ │ └── stop_outlook.txt │ ├── registry │ │ ├── delkeyhkcuregistry.py │ │ ├── delkeyhkcuregistry.txt │ │ ├── delvaluehkcuregistry.py │ │ ├── delvaluehkcuregistry.txt │ │ ├── getallkeysregistry.py │ │ ├── getallkeysregistry.txt │ │ ├── getallvaluesregistry.py │ │ ├── getallvaluesregistry.txt │ │ ├── getvalueregistry.py │ │ ├── getvalueregistry.txt │ │ ├── setvaluehkcuregistry.py │ │ └── setvaluehkcuregistry.txt │ └── specula │ │ ├── remove_allowlongscriptruntime.py │ │ ├── remove_allowlongscriptruntime.txt │ │ ├── set_allowlongscriptruntime.py │ │ └── set_allowlongscriptruntime.txt └── trolling │ ├── play_voice.py │ ├── play_voice.txt │ ├── set_clipboard.py │ └── set_clipboard.txt ├── helperFunctions ├── Delregkey_hkcu.txt ├── Delregvalue_hkcu.txt ├── Getallregkeys.txt ├── Getallregvalues.txt ├── Getregvalue.txt ├── HexToBytes.txt ├── Setregvalue_hkcu.txt ├── base64.txt ├── base_template.txt ├── createstream.txt ├── dir_creator.txt ├── dir_lister.txt └── supportFuncs.txt ├── hiddenFunctions ├── downloadGAL.py ├── downloadGAL.txt ├── download_file.py ├── download_file.txt ├── upload_file.py └── upload_file.txt ├── hooker_generator.py ├── lib ├── core │ ├── helpers.py │ ├── setup.py │ ├── specagents.py │ ├── specmodule.py │ ├── specpayload.py │ ├── spectaskbook.py │ ├── utility.py │ └── utils.py ├── handlers │ ├── base.html │ ├── blacklist.html │ ├── dev_blank.html │ ├── dev_encrypted_task_template.html │ ├── dev_unencrypted_task_template.html │ ├── redirect_template.html │ ├── specapplication.py │ ├── speccomms.py │ ├── specdevcomms.py │ ├── specpayload.py │ ├── specvalidate.py │ └── validation.html ├── menu │ ├── specpromptdbedit.py │ ├── specpromptexplorer.py │ ├── specpromptinteract.py │ ├── specpromptmodule.py │ ├── specpromptpayload.py │ ├── specpromptprestage.py │ └── specpromptpushover.py ├── modhandlers │ └── generic.py ├── tab_completers │ └── generic.py └── validators │ ├── files.py │ └── generic.py ├── release_history.txt ├── requirements.txt ├── specula.py └── ssl ├── ssl-cert-snakeoil.key └── ssl-cert-snakeoil.pem /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/README.md -------------------------------------------------------------------------------- /Taskbooks/enum_installed_software.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/Taskbooks/enum_installed_software.py -------------------------------------------------------------------------------- /Taskbooks/example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/Taskbooks/example.py -------------------------------------------------------------------------------- /api/README.md: -------------------------------------------------------------------------------- 1 | # SpeculaApi -------------------------------------------------------------------------------- /api/SpeculaApi.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/api/SpeculaApi.sln -------------------------------------------------------------------------------- /api/SpeculaApi/Sepcula.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/api/SpeculaApi/Sepcula.cpp -------------------------------------------------------------------------------- /api/SpeculaApi/Sepcula.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/api/SpeculaApi/Sepcula.h -------------------------------------------------------------------------------- /api/SpeculaApi/Sepcula.rgs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/api/SpeculaApi/Sepcula.rgs -------------------------------------------------------------------------------- /api/SpeculaApi/SpeculaApi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/api/SpeculaApi/SpeculaApi.cpp -------------------------------------------------------------------------------- /api/SpeculaApi/SpeculaApi.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/api/SpeculaApi/SpeculaApi.def -------------------------------------------------------------------------------- /api/SpeculaApi/SpeculaApi.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/api/SpeculaApi/SpeculaApi.idl -------------------------------------------------------------------------------- /api/SpeculaApi/SpeculaApi.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/api/SpeculaApi/SpeculaApi.rc -------------------------------------------------------------------------------- /api/SpeculaApi/SpeculaApi.rgs: -------------------------------------------------------------------------------- 1 | HKCR 2 | { 3 | } 4 | -------------------------------------------------------------------------------- /api/SpeculaApi/SpeculaApi.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/api/SpeculaApi/SpeculaApi.vcxproj -------------------------------------------------------------------------------- /api/SpeculaApi/SpeculaApi.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/api/SpeculaApi/SpeculaApi.vcxproj.filters -------------------------------------------------------------------------------- /api/SpeculaApi/SpeculaApi_i.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/api/SpeculaApi/SpeculaApi_i.h -------------------------------------------------------------------------------- /api/SpeculaApi/SpeculaApips.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/api/SpeculaApi/SpeculaApips.def -------------------------------------------------------------------------------- /api/SpeculaApi/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/api/SpeculaApi/dllmain.cpp -------------------------------------------------------------------------------- /api/SpeculaApi/dllmain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/api/SpeculaApi/dllmain.h -------------------------------------------------------------------------------- /api/SpeculaApi/framework.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/api/SpeculaApi/framework.h -------------------------------------------------------------------------------- /api/SpeculaApi/pch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/api/SpeculaApi/pch.cpp -------------------------------------------------------------------------------- /api/SpeculaApi/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/api/SpeculaApi/pch.h -------------------------------------------------------------------------------- /api/SpeculaApi/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/api/SpeculaApi/resource.h -------------------------------------------------------------------------------- /api/SpeculaApi/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/api/SpeculaApi/targetver.h -------------------------------------------------------------------------------- /api/SpeculaApiPS/SpeculaApiPS.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/api/SpeculaApiPS/SpeculaApiPS.vcxproj -------------------------------------------------------------------------------- /api/SpeculaApiPS/SpeculaApiPS.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/api/SpeculaApiPS/SpeculaApiPS.vcxproj.filters -------------------------------------------------------------------------------- /data/payloads/api/SpeculaApi.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/data/payloads/api/SpeculaApi.dll -------------------------------------------------------------------------------- /data/payloads/api/SpeculaApi.x64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/data/payloads/api/SpeculaApi.x64.dll -------------------------------------------------------------------------------- /functions/api/install_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/functions/api/install_api.py -------------------------------------------------------------------------------- /functions/api/install_api.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/functions/api/install_api.txt -------------------------------------------------------------------------------- /functions/api/load_dll.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/functions/api/load_dll.py -------------------------------------------------------------------------------- /functions/api/load_dll.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/functions/api/load_dll.txt -------------------------------------------------------------------------------- /functions/api/remove_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/functions/api/remove_api.py -------------------------------------------------------------------------------- /functions/api/remove_api.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/functions/api/remove_api.txt -------------------------------------------------------------------------------- /functions/api/run_shell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/functions/api/run_shell.py -------------------------------------------------------------------------------- /functions/api/run_shell.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/functions/api/run_shell.txt -------------------------------------------------------------------------------- /functions/api/verify_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/functions/api/verify_api.py -------------------------------------------------------------------------------- /functions/api/verify_api.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/functions/api/verify_api.txt -------------------------------------------------------------------------------- /functions/enumerate/host/list_amsiproviders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/functions/enumerate/host/list_amsiproviders.py -------------------------------------------------------------------------------- /functions/enumerate/host/list_amsiproviders.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/functions/enumerate/host/list_amsiproviders.txt -------------------------------------------------------------------------------- /functions/enumerate/host/list_applocker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/functions/enumerate/host/list_applocker.py -------------------------------------------------------------------------------- /functions/enumerate/host/list_applocker.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/functions/enumerate/host/list_applocker.txt -------------------------------------------------------------------------------- /functions/enumerate/host/list_autoruns.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/functions/enumerate/host/list_autoruns.py -------------------------------------------------------------------------------- /functions/enumerate/host/list_autoruns.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/functions/enumerate/host/list_autoruns.txt -------------------------------------------------------------------------------- /functions/enumerate/host/list_basic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/functions/enumerate/host/list_basic.py -------------------------------------------------------------------------------- /functions/enumerate/host/list_basic.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/functions/enumerate/host/list_basic.txt -------------------------------------------------------------------------------- /functions/enumerate/host/list_boottime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/functions/enumerate/host/list_boottime.py -------------------------------------------------------------------------------- /functions/enumerate/host/list_boottime.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/functions/enumerate/host/list_boottime.txt -------------------------------------------------------------------------------- /functions/enumerate/host/list_clipboard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/functions/enumerate/host/list_clipboard.py -------------------------------------------------------------------------------- /functions/enumerate/host/list_clipboard.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/functions/enumerate/host/list_clipboard.txt -------------------------------------------------------------------------------- /functions/enumerate/host/list_environmentvariables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/functions/enumerate/host/list_environmentvariables.py -------------------------------------------------------------------------------- /functions/enumerate/host/list_environmentvariables.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/functions/enumerate/host/list_environmentvariables.txt -------------------------------------------------------------------------------- /functions/enumerate/host/list_gpp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/functions/enumerate/host/list_gpp.py -------------------------------------------------------------------------------- /functions/enumerate/host/list_gpp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/functions/enumerate/host/list_gpp.txt -------------------------------------------------------------------------------- /functions/enumerate/host/list_hostsfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/functions/enumerate/host/list_hostsfile.py -------------------------------------------------------------------------------- /functions/enumerate/host/list_hostsfile.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/functions/enumerate/host/list_hostsfile.txt -------------------------------------------------------------------------------- /functions/enumerate/host/list_hotfixes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/functions/enumerate/host/list_hotfixes.py -------------------------------------------------------------------------------- /functions/enumerate/host/list_hotfixes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/functions/enumerate/host/list_hotfixes.txt -------------------------------------------------------------------------------- /functions/enumerate/host/list_installedapps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/functions/enumerate/host/list_installedapps.py -------------------------------------------------------------------------------- /functions/enumerate/host/list_installedapps.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/functions/enumerate/host/list_installedapps.txt -------------------------------------------------------------------------------- /functions/enumerate/host/list_installeddotnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/functions/enumerate/host/list_installeddotnet.py -------------------------------------------------------------------------------- /functions/enumerate/host/list_installeddotnet.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/functions/enumerate/host/list_installeddotnet.txt -------------------------------------------------------------------------------- /functions/enumerate/host/list_installedpowershell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/functions/enumerate/host/list_installedpowershell.py -------------------------------------------------------------------------------- /functions/enumerate/host/list_installedpowershell.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/functions/enumerate/host/list_installedpowershell.txt -------------------------------------------------------------------------------- /functions/enumerate/host/list_iprouting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/functions/enumerate/host/list_iprouting.py -------------------------------------------------------------------------------- /functions/enumerate/host/list_iprouting.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/functions/enumerate/host/list_iprouting.txt -------------------------------------------------------------------------------- /functions/enumerate/host/list_localadmins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/functions/enumerate/host/list_localadmins.py -------------------------------------------------------------------------------- /functions/enumerate/host/list_localadmins.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/functions/enumerate/host/list_localadmins.txt -------------------------------------------------------------------------------- /functions/enumerate/host/list_localusers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/functions/enumerate/host/list_localusers.py -------------------------------------------------------------------------------- /functions/enumerate/host/list_localusers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/functions/enumerate/host/list_localusers.txt -------------------------------------------------------------------------------- /functions/enumerate/host/list_logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/functions/enumerate/host/list_logging.py -------------------------------------------------------------------------------- /functions/enumerate/host/list_logging.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/functions/enumerate/host/list_logging.txt -------------------------------------------------------------------------------- /functions/enumerate/host/list_mappeddrives.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/functions/enumerate/host/list_mappeddrives.py -------------------------------------------------------------------------------- /functions/enumerate/host/list_mappeddrives.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/functions/enumerate/host/list_mappeddrives.txt -------------------------------------------------------------------------------- /functions/enumerate/host/list_networkcardinfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/functions/enumerate/host/list_networkcardinfo.py -------------------------------------------------------------------------------- /functions/enumerate/host/list_networkcardinfo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/functions/enumerate/host/list_networkcardinfo.txt -------------------------------------------------------------------------------- /functions/enumerate/host/list_networklogon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/functions/enumerate/host/list_networklogon.py -------------------------------------------------------------------------------- /functions/enumerate/host/list_networklogon.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/functions/enumerate/host/list_networklogon.txt -------------------------------------------------------------------------------- /functions/enumerate/host/list_ntdomaininfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/functions/enumerate/host/list_ntdomaininfo.py -------------------------------------------------------------------------------- /functions/enumerate/host/list_ntdomaininfo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/functions/enumerate/host/list_ntdomaininfo.txt -------------------------------------------------------------------------------- /functions/enumerate/host/list_officearch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/functions/enumerate/host/list_officearch.py -------------------------------------------------------------------------------- /functions/enumerate/host/list_officearch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/functions/enumerate/host/list_officearch.txt -------------------------------------------------------------------------------- /functions/enumerate/host/list_printers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/functions/enumerate/host/list_printers.py -------------------------------------------------------------------------------- /functions/enumerate/host/list_printers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/functions/enumerate/host/list_printers.txt -------------------------------------------------------------------------------- /functions/enumerate/host/list_processes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/functions/enumerate/host/list_processes.py -------------------------------------------------------------------------------- /functions/enumerate/host/list_processes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/functions/enumerate/host/list_processes.txt -------------------------------------------------------------------------------- /functions/enumerate/host/list_recentcommands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/functions/enumerate/host/list_recentcommands.py -------------------------------------------------------------------------------- /functions/enumerate/host/list_recentcommands.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/functions/enumerate/host/list_recentcommands.txt -------------------------------------------------------------------------------- /functions/enumerate/host/list_recentfiles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/functions/enumerate/host/list_recentfiles.py -------------------------------------------------------------------------------- /functions/enumerate/host/list_recentfiles.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/functions/enumerate/host/list_recentfiles.txt -------------------------------------------------------------------------------- /functions/enumerate/host/list_recyclebin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/functions/enumerate/host/list_recyclebin.py -------------------------------------------------------------------------------- /functions/enumerate/host/list_recyclebin.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/functions/enumerate/host/list_recyclebin.txt -------------------------------------------------------------------------------- /functions/enumerate/host/list_scheduledtasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/functions/enumerate/host/list_scheduledtasks.py -------------------------------------------------------------------------------- /functions/enumerate/host/list_scheduledtasks.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/functions/enumerate/host/list_scheduledtasks.txt -------------------------------------------------------------------------------- /functions/enumerate/host/list_servicepermissions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/functions/enumerate/host/list_servicepermissions.py -------------------------------------------------------------------------------- /functions/enumerate/host/list_servicepermissions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/functions/enumerate/host/list_servicepermissions.txt -------------------------------------------------------------------------------- /functions/enumerate/host/list_services.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/functions/enumerate/host/list_services.py -------------------------------------------------------------------------------- /functions/enumerate/host/list_services.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/functions/enumerate/host/list_services.txt -------------------------------------------------------------------------------- /functions/enumerate/host/list_startmenu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/functions/enumerate/host/list_startmenu.py -------------------------------------------------------------------------------- /functions/enumerate/host/list_startmenu.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/functions/enumerate/host/list_startmenu.txt -------------------------------------------------------------------------------- /functions/enumerate/host/list_timezone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/functions/enumerate/host/list_timezone.py -------------------------------------------------------------------------------- /functions/enumerate/host/list_timezone.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/functions/enumerate/host/list_timezone.txt -------------------------------------------------------------------------------- /functions/enumerate/host/list_whoami.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/functions/enumerate/host/list_whoami.py -------------------------------------------------------------------------------- /functions/enumerate/host/list_whoami.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/functions/enumerate/host/list_whoami.txt -------------------------------------------------------------------------------- /functions/enumerate/host/list_windowsarch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/functions/enumerate/host/list_windowsarch.py -------------------------------------------------------------------------------- /functions/enumerate/host/list_windowsarch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/functions/enumerate/host/list_windowsarch.txt -------------------------------------------------------------------------------- /functions/enumerate/host/list_windowsversion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/functions/enumerate/host/list_windowsversion.py -------------------------------------------------------------------------------- /functions/enumerate/host/list_windowsversion.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/functions/enumerate/host/list_windowsversion.txt -------------------------------------------------------------------------------- /functions/enumerate/ldap/ldap_query.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/functions/enumerate/ldap/ldap_query.py -------------------------------------------------------------------------------- /functions/enumerate/ldap/ldap_query.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/functions/enumerate/ldap/ldap_query.txt -------------------------------------------------------------------------------- /functions/enumerate/ldap/list_addcomputertodomain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/functions/enumerate/ldap/list_addcomputertodomain.py -------------------------------------------------------------------------------- /functions/enumerate/ldap/list_addcomputertodomain.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/functions/enumerate/ldap/list_addcomputertodomain.txt -------------------------------------------------------------------------------- /functions/enumerate/ldap/list_asreproast.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/functions/enumerate/ldap/list_asreproast.py -------------------------------------------------------------------------------- /functions/enumerate/ldap/list_asreproast.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/functions/enumerate/ldap/list_asreproast.txt -------------------------------------------------------------------------------- /functions/enumerate/ldap/list_computer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/functions/enumerate/ldap/list_computer.py -------------------------------------------------------------------------------- /functions/enumerate/ldap/list_computer.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/functions/enumerate/ldap/list_computer.txt -------------------------------------------------------------------------------- /functions/enumerate/ldap/list_computers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/functions/enumerate/ldap/list_computers.py -------------------------------------------------------------------------------- /functions/enumerate/ldap/list_computers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/functions/enumerate/ldap/list_computers.txt -------------------------------------------------------------------------------- /functions/enumerate/ldap/list_domaininfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/functions/enumerate/ldap/list_domaininfo.py -------------------------------------------------------------------------------- /functions/enumerate/ldap/list_domaininfo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/functions/enumerate/ldap/list_domaininfo.txt -------------------------------------------------------------------------------- /functions/enumerate/ldap/list_lapspassword.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/functions/enumerate/ldap/list_lapspassword.py -------------------------------------------------------------------------------- /functions/enumerate/ldap/list_lapspassword.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/functions/enumerate/ldap/list_lapspassword.txt -------------------------------------------------------------------------------- /functions/enumerate/ldap/list_passwordnotrequired.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/functions/enumerate/ldap/list_passwordnotrequired.py -------------------------------------------------------------------------------- /functions/enumerate/ldap/list_passwordnotrequired.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/functions/enumerate/ldap/list_passwordnotrequired.txt -------------------------------------------------------------------------------- /functions/enumerate/ldap/list_passwordpolicy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/functions/enumerate/ldap/list_passwordpolicy.py -------------------------------------------------------------------------------- /functions/enumerate/ldap/list_passwordpolicy.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/functions/enumerate/ldap/list_passwordpolicy.txt -------------------------------------------------------------------------------- /functions/enumerate/ldap/list_user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/functions/enumerate/ldap/list_user.py -------------------------------------------------------------------------------- /functions/enumerate/ldap/list_user.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/functions/enumerate/ldap/list_user.txt -------------------------------------------------------------------------------- /functions/enumerate/ldap/list_users.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/functions/enumerate/ldap/list_users.py -------------------------------------------------------------------------------- /functions/enumerate/ldap/list_users.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/functions/enumerate/ldap/list_users.txt -------------------------------------------------------------------------------- /functions/execute/host/application.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/functions/execute/host/application.py -------------------------------------------------------------------------------- /functions/execute/host/application.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/functions/execute/host/application.txt -------------------------------------------------------------------------------- /functions/execute/host/capture_netntlmv2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/functions/execute/host/capture_netntlmv2.py -------------------------------------------------------------------------------- /functions/execute/host/capture_netntlmv2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/functions/execute/host/capture_netntlmv2.txt -------------------------------------------------------------------------------- /functions/execute/host/cmd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/functions/execute/host/cmd.py -------------------------------------------------------------------------------- /functions/execute/host/cmd.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/functions/execute/host/cmd.txt -------------------------------------------------------------------------------- /functions/execute/host/execute_excel4macro.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/functions/execute/host/execute_excel4macro.py -------------------------------------------------------------------------------- /functions/execute/host/execute_excel4macro.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/functions/execute/host/execute_excel4macro.txt -------------------------------------------------------------------------------- /functions/execute/host/execute_registerxll.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/functions/execute/host/execute_registerxll.py -------------------------------------------------------------------------------- /functions/execute/host/execute_registerxll.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/functions/execute/host/execute_registerxll.txt -------------------------------------------------------------------------------- /functions/execute/host/migrate_homepage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/functions/execute/host/migrate_homepage.py -------------------------------------------------------------------------------- /functions/execute/host/migrate_homepage.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/functions/execute/host/migrate_homepage.txt -------------------------------------------------------------------------------- /functions/execute/host/remove_homepage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/functions/execute/host/remove_homepage.py -------------------------------------------------------------------------------- /functions/execute/host/remove_homepage.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/functions/execute/host/remove_homepage.txt -------------------------------------------------------------------------------- /functions/execute/host/set_calendarhomepagehook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/functions/execute/host/set_calendarhomepagehook.py -------------------------------------------------------------------------------- /functions/execute/host/set_calendarhomepagehook.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/functions/execute/host/set_calendarhomepagehook.txt -------------------------------------------------------------------------------- /functions/execute/host/spawnproc_explorer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/functions/execute/host/spawnproc_explorer.py -------------------------------------------------------------------------------- /functions/execute/host/spawnproc_explorer.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/functions/execute/host/spawnproc_explorer.txt -------------------------------------------------------------------------------- /functions/execute/host/uac-sdclt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/functions/execute/host/uac-sdclt.py -------------------------------------------------------------------------------- /functions/execute/host/uac-sdclt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/functions/execute/host/uac-sdclt.txt -------------------------------------------------------------------------------- /functions/execute/host/wmi_execute.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/functions/execute/host/wmi_execute.py -------------------------------------------------------------------------------- /functions/execute/host/wmi_execute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/functions/execute/host/wmi_execute.txt -------------------------------------------------------------------------------- /functions/execute/host/wmi_killprocname.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/functions/execute/host/wmi_killprocname.py -------------------------------------------------------------------------------- /functions/execute/host/wmi_killprocname.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/functions/execute/host/wmi_killprocname.txt -------------------------------------------------------------------------------- /functions/execute/host/wmi_killprocpid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/functions/execute/host/wmi_killprocpid.py -------------------------------------------------------------------------------- /functions/execute/host/wmi_killprocpid.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/functions/execute/host/wmi_killprocpid.txt -------------------------------------------------------------------------------- /functions/execute/host/wscriptshell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/functions/execute/host/wscriptshell.py -------------------------------------------------------------------------------- /functions/execute/host/wscriptshell.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/functions/execute/host/wscriptshell.txt -------------------------------------------------------------------------------- /functions/operation/file/cat_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/functions/operation/file/cat_file.py -------------------------------------------------------------------------------- /functions/operation/file/cat_file.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/functions/operation/file/cat_file.txt -------------------------------------------------------------------------------- /functions/operation/file/check_filearch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/functions/operation/file/check_filearch.py -------------------------------------------------------------------------------- /functions/operation/file/check_filearch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/functions/operation/file/check_filearch.txt -------------------------------------------------------------------------------- /functions/operation/file/check_fileexist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/functions/operation/file/check_fileexist.py -------------------------------------------------------------------------------- /functions/operation/file/check_fileexist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/functions/operation/file/check_fileexist.txt -------------------------------------------------------------------------------- /functions/operation/file/check_filehash.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/functions/operation/file/check_filehash.py -------------------------------------------------------------------------------- /functions/operation/file/check_filehash.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/functions/operation/file/check_filehash.txt -------------------------------------------------------------------------------- /functions/operation/file/copy_dir.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/functions/operation/file/copy_dir.py -------------------------------------------------------------------------------- /functions/operation/file/copy_dir.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/functions/operation/file/copy_dir.txt -------------------------------------------------------------------------------- /functions/operation/file/copy_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/functions/operation/file/copy_file.py -------------------------------------------------------------------------------- /functions/operation/file/copy_file.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/functions/operation/file/copy_file.txt -------------------------------------------------------------------------------- /functions/operation/file/create_dir.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/functions/operation/file/create_dir.py -------------------------------------------------------------------------------- /functions/operation/file/create_dir.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/functions/operation/file/create_dir.txt -------------------------------------------------------------------------------- /functions/operation/file/create_shortcut.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/functions/operation/file/create_shortcut.py -------------------------------------------------------------------------------- /functions/operation/file/create_shortcut.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/functions/operation/file/create_shortcut.txt -------------------------------------------------------------------------------- /functions/operation/file/delete_dir.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/functions/operation/file/delete_dir.py -------------------------------------------------------------------------------- /functions/operation/file/delete_dir.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/functions/operation/file/delete_dir.txt -------------------------------------------------------------------------------- /functions/operation/file/delete_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/functions/operation/file/delete_file.py -------------------------------------------------------------------------------- /functions/operation/file/delete_file.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/functions/operation/file/delete_file.txt -------------------------------------------------------------------------------- /functions/operation/file/download_filehttp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/functions/operation/file/download_filehttp.py -------------------------------------------------------------------------------- /functions/operation/file/download_filehttp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/functions/operation/file/download_filehttp.txt -------------------------------------------------------------------------------- /functions/operation/file/get_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/functions/operation/file/get_file.py -------------------------------------------------------------------------------- /functions/operation/file/get_file.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/functions/operation/file/get_file.txt -------------------------------------------------------------------------------- /functions/operation/file/list_acl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/functions/operation/file/list_acl.py -------------------------------------------------------------------------------- /functions/operation/file/list_acl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/functions/operation/file/list_acl.txt -------------------------------------------------------------------------------- /functions/operation/file/list_dir.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/functions/operation/file/list_dir.py -------------------------------------------------------------------------------- /functions/operation/file/list_dir.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/functions/operation/file/list_dir.txt -------------------------------------------------------------------------------- /functions/operation/file/list_shortcutinfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/functions/operation/file/list_shortcutinfo.py -------------------------------------------------------------------------------- /functions/operation/file/list_shortcutinfo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/functions/operation/file/list_shortcutinfo.txt -------------------------------------------------------------------------------- /functions/operation/file/move_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/functions/operation/file/move_file.py -------------------------------------------------------------------------------- /functions/operation/file/move_file.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/functions/operation/file/move_file.txt -------------------------------------------------------------------------------- /functions/operation/file/put_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/functions/operation/file/put_file.py -------------------------------------------------------------------------------- /functions/operation/file/put_file.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/functions/operation/file/put_file.txt -------------------------------------------------------------------------------- /functions/operation/file/split_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/functions/operation/file/split_file.py -------------------------------------------------------------------------------- /functions/operation/file/split_file.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/functions/operation/file/split_file.txt -------------------------------------------------------------------------------- /functions/operation/file/zip_content.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/functions/operation/file/zip_content.py -------------------------------------------------------------------------------- /functions/operation/file/zip_content.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/functions/operation/file/zip_content.txt -------------------------------------------------------------------------------- /functions/operation/network/netstat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/functions/operation/network/netstat.py -------------------------------------------------------------------------------- /functions/operation/network/netstat.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/functions/operation/network/netstat.txt -------------------------------------------------------------------------------- /functions/operation/network/nslookup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/functions/operation/network/nslookup.py -------------------------------------------------------------------------------- /functions/operation/network/nslookup.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/functions/operation/network/nslookup.txt -------------------------------------------------------------------------------- /functions/operation/outlook/adjust_notifications.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/functions/operation/outlook/adjust_notifications.py -------------------------------------------------------------------------------- /functions/operation/outlook/adjust_notifications.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/functions/operation/outlook/adjust_notifications.txt -------------------------------------------------------------------------------- /functions/operation/outlook/change_outlookfolder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/functions/operation/outlook/change_outlookfolder.py -------------------------------------------------------------------------------- /functions/operation/outlook/change_outlookfolder.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/functions/operation/outlook/change_outlookfolder.txt -------------------------------------------------------------------------------- /functions/operation/outlook/changeview_outlookfolder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/functions/operation/outlook/changeview_outlookfolder.py -------------------------------------------------------------------------------- /functions/operation/outlook/changeview_outlookfolder.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/functions/operation/outlook/changeview_outlookfolder.txt -------------------------------------------------------------------------------- /functions/operation/outlook/delete_mail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/functions/operation/outlook/delete_mail.py -------------------------------------------------------------------------------- /functions/operation/outlook/delete_mail.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/functions/operation/outlook/delete_mail.txt -------------------------------------------------------------------------------- /functions/operation/outlook/dump_gal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/functions/operation/outlook/dump_gal.py -------------------------------------------------------------------------------- /functions/operation/outlook/dump_gal.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/functions/operation/outlook/dump_gal.txt -------------------------------------------------------------------------------- /functions/operation/outlook/get_emailaddress.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/functions/operation/outlook/get_emailaddress.py -------------------------------------------------------------------------------- /functions/operation/outlook/get_emailaddress.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/functions/operation/outlook/get_emailaddress.txt -------------------------------------------------------------------------------- /functions/operation/outlook/list_notifications.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/functions/operation/outlook/list_notifications.py -------------------------------------------------------------------------------- /functions/operation/outlook/list_notifications.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/functions/operation/outlook/list_notifications.txt -------------------------------------------------------------------------------- /functions/operation/outlook/list_overview.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/functions/operation/outlook/list_overview.py -------------------------------------------------------------------------------- /functions/operation/outlook/list_overview.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/functions/operation/outlook/list_overview.txt -------------------------------------------------------------------------------- /functions/operation/outlook/read_calendar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/functions/operation/outlook/read_calendar.py -------------------------------------------------------------------------------- /functions/operation/outlook/read_calendar.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/functions/operation/outlook/read_calendar.txt -------------------------------------------------------------------------------- /functions/operation/outlook/read_contacts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/functions/operation/outlook/read_contacts.py -------------------------------------------------------------------------------- /functions/operation/outlook/read_contacts.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/functions/operation/outlook/read_contacts.txt -------------------------------------------------------------------------------- /functions/operation/outlook/read_email.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/functions/operation/outlook/read_email.py -------------------------------------------------------------------------------- /functions/operation/outlook/read_email.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/functions/operation/outlook/read_email.txt -------------------------------------------------------------------------------- /functions/operation/outlook/read_emailnamedfolder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/functions/operation/outlook/read_emailnamedfolder.py -------------------------------------------------------------------------------- /functions/operation/outlook/read_emailnamedfolder.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/functions/operation/outlook/read_emailnamedfolder.txt -------------------------------------------------------------------------------- /functions/operation/outlook/read_other.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/functions/operation/outlook/read_other.py -------------------------------------------------------------------------------- /functions/operation/outlook/read_other.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/functions/operation/outlook/read_other.txt -------------------------------------------------------------------------------- /functions/operation/outlook/savedraft_filemail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/functions/operation/outlook/savedraft_filemail.py -------------------------------------------------------------------------------- /functions/operation/outlook/savedraft_filemail.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/functions/operation/outlook/savedraft_filemail.txt -------------------------------------------------------------------------------- /functions/operation/outlook/search_email.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/functions/operation/outlook/search_email.py -------------------------------------------------------------------------------- /functions/operation/outlook/search_email.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/functions/operation/outlook/search_email.txt -------------------------------------------------------------------------------- /functions/operation/outlook/send_mail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/functions/operation/outlook/send_mail.py -------------------------------------------------------------------------------- /functions/operation/outlook/send_mail.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/functions/operation/outlook/send_mail.txt -------------------------------------------------------------------------------- /functions/operation/outlook/sendfile_mail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/functions/operation/outlook/sendfile_mail.py -------------------------------------------------------------------------------- /functions/operation/outlook/sendfile_mail.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/functions/operation/outlook/sendfile_mail.txt -------------------------------------------------------------------------------- /functions/operation/outlook/stop_outlook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/functions/operation/outlook/stop_outlook.py -------------------------------------------------------------------------------- /functions/operation/outlook/stop_outlook.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/functions/operation/outlook/stop_outlook.txt -------------------------------------------------------------------------------- /functions/operation/registry/delkeyhkcuregistry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/functions/operation/registry/delkeyhkcuregistry.py -------------------------------------------------------------------------------- /functions/operation/registry/delkeyhkcuregistry.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/functions/operation/registry/delkeyhkcuregistry.txt -------------------------------------------------------------------------------- /functions/operation/registry/delvaluehkcuregistry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/functions/operation/registry/delvaluehkcuregistry.py -------------------------------------------------------------------------------- /functions/operation/registry/delvaluehkcuregistry.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/functions/operation/registry/delvaluehkcuregistry.txt -------------------------------------------------------------------------------- /functions/operation/registry/getallkeysregistry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/functions/operation/registry/getallkeysregistry.py -------------------------------------------------------------------------------- /functions/operation/registry/getallkeysregistry.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/functions/operation/registry/getallkeysregistry.txt -------------------------------------------------------------------------------- /functions/operation/registry/getallvaluesregistry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/functions/operation/registry/getallvaluesregistry.py -------------------------------------------------------------------------------- /functions/operation/registry/getallvaluesregistry.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/functions/operation/registry/getallvaluesregistry.txt -------------------------------------------------------------------------------- /functions/operation/registry/getvalueregistry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/functions/operation/registry/getvalueregistry.py -------------------------------------------------------------------------------- /functions/operation/registry/getvalueregistry.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/functions/operation/registry/getvalueregistry.txt -------------------------------------------------------------------------------- /functions/operation/registry/setvaluehkcuregistry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/functions/operation/registry/setvaluehkcuregistry.py -------------------------------------------------------------------------------- /functions/operation/registry/setvaluehkcuregistry.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/functions/operation/registry/setvaluehkcuregistry.txt -------------------------------------------------------------------------------- /functions/operation/specula/remove_allowlongscriptruntime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/functions/operation/specula/remove_allowlongscriptruntime.py -------------------------------------------------------------------------------- /functions/operation/specula/remove_allowlongscriptruntime.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/functions/operation/specula/remove_allowlongscriptruntime.txt -------------------------------------------------------------------------------- /functions/operation/specula/set_allowlongscriptruntime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/functions/operation/specula/set_allowlongscriptruntime.py -------------------------------------------------------------------------------- /functions/operation/specula/set_allowlongscriptruntime.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/functions/operation/specula/set_allowlongscriptruntime.txt -------------------------------------------------------------------------------- /functions/trolling/play_voice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/functions/trolling/play_voice.py -------------------------------------------------------------------------------- /functions/trolling/play_voice.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/functions/trolling/play_voice.txt -------------------------------------------------------------------------------- /functions/trolling/set_clipboard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/functions/trolling/set_clipboard.py -------------------------------------------------------------------------------- /functions/trolling/set_clipboard.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/functions/trolling/set_clipboard.txt -------------------------------------------------------------------------------- /helperFunctions/Delregkey_hkcu.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/helperFunctions/Delregkey_hkcu.txt -------------------------------------------------------------------------------- /helperFunctions/Delregvalue_hkcu.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/helperFunctions/Delregvalue_hkcu.txt -------------------------------------------------------------------------------- /helperFunctions/Getallregkeys.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/helperFunctions/Getallregkeys.txt -------------------------------------------------------------------------------- /helperFunctions/Getallregvalues.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/helperFunctions/Getallregvalues.txt -------------------------------------------------------------------------------- /helperFunctions/Getregvalue.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/helperFunctions/Getregvalue.txt -------------------------------------------------------------------------------- /helperFunctions/HexToBytes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/helperFunctions/HexToBytes.txt -------------------------------------------------------------------------------- /helperFunctions/Setregvalue_hkcu.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/helperFunctions/Setregvalue_hkcu.txt -------------------------------------------------------------------------------- /helperFunctions/base64.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/helperFunctions/base64.txt -------------------------------------------------------------------------------- /helperFunctions/base_template.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/helperFunctions/base_template.txt -------------------------------------------------------------------------------- /helperFunctions/createstream.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/helperFunctions/createstream.txt -------------------------------------------------------------------------------- /helperFunctions/dir_creator.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/helperFunctions/dir_creator.txt -------------------------------------------------------------------------------- /helperFunctions/dir_lister.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/helperFunctions/dir_lister.txt -------------------------------------------------------------------------------- /helperFunctions/supportFuncs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/helperFunctions/supportFuncs.txt -------------------------------------------------------------------------------- /hiddenFunctions/downloadGAL.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/hiddenFunctions/downloadGAL.py -------------------------------------------------------------------------------- /hiddenFunctions/downloadGAL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/hiddenFunctions/downloadGAL.txt -------------------------------------------------------------------------------- /hiddenFunctions/download_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/hiddenFunctions/download_file.py -------------------------------------------------------------------------------- /hiddenFunctions/download_file.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/hiddenFunctions/download_file.txt -------------------------------------------------------------------------------- /hiddenFunctions/upload_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/hiddenFunctions/upload_file.py -------------------------------------------------------------------------------- /hiddenFunctions/upload_file.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/hiddenFunctions/upload_file.txt -------------------------------------------------------------------------------- /hooker_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/hooker_generator.py -------------------------------------------------------------------------------- /lib/core/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/lib/core/helpers.py -------------------------------------------------------------------------------- /lib/core/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/lib/core/setup.py -------------------------------------------------------------------------------- /lib/core/specagents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/lib/core/specagents.py -------------------------------------------------------------------------------- /lib/core/specmodule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/lib/core/specmodule.py -------------------------------------------------------------------------------- /lib/core/specpayload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/lib/core/specpayload.py -------------------------------------------------------------------------------- /lib/core/spectaskbook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/lib/core/spectaskbook.py -------------------------------------------------------------------------------- /lib/core/utility.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/lib/core/utility.py -------------------------------------------------------------------------------- /lib/core/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/lib/core/utils.py -------------------------------------------------------------------------------- /lib/handlers/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/lib/handlers/base.html -------------------------------------------------------------------------------- /lib/handlers/blacklist.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/lib/handlers/blacklist.html -------------------------------------------------------------------------------- /lib/handlers/dev_blank.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/lib/handlers/dev_blank.html -------------------------------------------------------------------------------- /lib/handlers/dev_encrypted_task_template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/lib/handlers/dev_encrypted_task_template.html -------------------------------------------------------------------------------- /lib/handlers/dev_unencrypted_task_template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/lib/handlers/dev_unencrypted_task_template.html -------------------------------------------------------------------------------- /lib/handlers/redirect_template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/lib/handlers/redirect_template.html -------------------------------------------------------------------------------- /lib/handlers/specapplication.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/lib/handlers/specapplication.py -------------------------------------------------------------------------------- /lib/handlers/speccomms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/lib/handlers/speccomms.py -------------------------------------------------------------------------------- /lib/handlers/specdevcomms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/lib/handlers/specdevcomms.py -------------------------------------------------------------------------------- /lib/handlers/specpayload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/lib/handlers/specpayload.py -------------------------------------------------------------------------------- /lib/handlers/specvalidate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/lib/handlers/specvalidate.py -------------------------------------------------------------------------------- /lib/handlers/validation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/lib/handlers/validation.html -------------------------------------------------------------------------------- /lib/menu/specpromptdbedit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/lib/menu/specpromptdbedit.py -------------------------------------------------------------------------------- /lib/menu/specpromptexplorer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/lib/menu/specpromptexplorer.py -------------------------------------------------------------------------------- /lib/menu/specpromptinteract.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/lib/menu/specpromptinteract.py -------------------------------------------------------------------------------- /lib/menu/specpromptmodule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/lib/menu/specpromptmodule.py -------------------------------------------------------------------------------- /lib/menu/specpromptpayload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/lib/menu/specpromptpayload.py -------------------------------------------------------------------------------- /lib/menu/specpromptprestage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/lib/menu/specpromptprestage.py -------------------------------------------------------------------------------- /lib/menu/specpromptpushover.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/lib/menu/specpromptpushover.py -------------------------------------------------------------------------------- /lib/modhandlers/generic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/lib/modhandlers/generic.py -------------------------------------------------------------------------------- /lib/tab_completers/generic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/lib/tab_completers/generic.py -------------------------------------------------------------------------------- /lib/validators/files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/lib/validators/files.py -------------------------------------------------------------------------------- /lib/validators/generic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/lib/validators/generic.py -------------------------------------------------------------------------------- /release_history.txt: -------------------------------------------------------------------------------- 1 | # BUG LIST / KNOWN STUFF: 2 | 3 | VERSION 1.0 4 | Initial Public Release 5 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/requirements.txt -------------------------------------------------------------------------------- /specula.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/specula.py -------------------------------------------------------------------------------- /ssl/ssl-cert-snakeoil.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/ssl/ssl-cert-snakeoil.key -------------------------------------------------------------------------------- /ssl/ssl-cert-snakeoil.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trustedsec/specula/HEAD/ssl/ssl-cert-snakeoil.pem --------------------------------------------------------------------------------