├── .gitignore ├── LICENSE ├── LICENSE-3RD-PARTY ├── NOTICE ├── README.md ├── README.original.md ├── app ├── adversary │ ├── __init__.py │ ├── adversary.py │ └── word_lists.py ├── attack.py ├── authentication.py ├── commands │ ├── __init__.py │ ├── at.py │ ├── cmd.py │ ├── command.py │ ├── errors.py │ ├── footprint.py │ ├── makecab.py │ ├── mimikatz.py │ ├── nbtstat.py │ ├── net.py │ ├── netstat.py │ ├── parsers.py │ ├── powershell.py │ ├── psexec.py │ ├── reg.py │ ├── runas.py │ ├── sc.py │ ├── schtasks.py │ ├── static.py │ ├── systeminfo.py │ ├── taskkill.py │ ├── tasklist.py │ ├── test.py │ ├── winrm.py │ ├── wmic.py │ └── xcopy.py ├── config.py ├── custom.py ├── database │ ├── __init__.py │ ├── dao.py │ ├── model.py │ └── mongo.py ├── engine │ ├── __init__.py │ ├── database.py │ └── objects.py ├── event_logging.py ├── extern.py ├── interface.py ├── logic │ ├── __init__.py │ ├── clips_logic.py │ ├── landmark.py │ ├── logic.py │ ├── planner.py │ └── pydatalog_logic.py ├── operation │ ├── __init__.py │ ├── cleanup.py │ ├── operation.py │ ├── operation_errors.py │ ├── operation_obj.py │ ├── operation_script.py │ └── step.py ├── powershell.py ├── service │ ├── __init__.py │ ├── adversary_api.py │ ├── api_logic.py │ ├── background.py │ └── explode.py ├── simulate │ ├── __init__.py │ ├── generate.py │ ├── lists │ │ ├── animals │ │ ├── dist.list.female │ │ ├── dist.list.male │ │ └── greek.alphabet │ ├── sim.py │ ├── simulate.py │ ├── wordlist.py │ └── world.py ├── steps │ ├── AC_bypass.py │ ├── __init__.py │ ├── adduser.py │ ├── associationabuse.py │ ├── certutildownload.py │ ├── copy.py │ ├── credentials.py │ ├── dirlistcollection.py │ ├── dumpcreds.py │ ├── exfiladversaryprofile.py │ ├── getadmin.py │ ├── getcomputers.py │ ├── getdomain.py │ ├── getlocalprofiles.py │ ├── getperipheraldeviceslocal.py │ ├── getprivescsvcinfo.py │ ├── hklmrunkeypersist.py │ ├── hkurunkeypersist.py │ ├── logonpersistence.py │ ├── nettime.py │ ├── netuse.py │ ├── networkconnections.py │ ├── passthehashcopy.py │ ├── passthehashsc.py │ ├── psexecmove.py │ ├── removenetshare.py │ ├── rundll32execution.py │ ├── schtasks.py │ ├── schtaskspersist.py │ ├── scpersist.py │ ├── servicemanipulatebinpathsclocal.py │ ├── servicemanipulatefilesclocal.py │ ├── servicemanipulateunquotedlocal.py │ ├── shortcutmodify.py │ ├── systeminfolocal.py │ ├── systeminforemote.py │ ├── tasklistlocal.py │ ├── tasklistremote.py │ ├── timestomp.py │ ├── webserverinstall.py │ ├── webshellexecution.py │ ├── windowsremotemanagement.py │ ├── wmiremoteprocesscreate.py │ └── xcopy.py ├── util.py └── utility │ ├── __init__.py │ └── general.py ├── conf ├── adversary_profiles.default ├── artifact_lists.default ├── atomic_attack_navigator_coverage.json ├── attack_download.json ├── config.ini └── simulation.json ├── filestore ├── rundll.sct └── webshell.php ├── hook.py ├── payloads ├── bypassRAT.hex ├── bypassTAR.hex ├── footprint-ps1 ├── invoke-mimi-ps1 ├── invoke-reflectivepe-ps1 ├── logon.hex ├── mimi32-dll ├── mimi32-exe ├── mimi64-dll ├── mimi64-exe ├── powerup-ps1 ├── powerview-ps1 └── timestomper-ps1 ├── requirements.txt ├── static ├── css │ ├── basic.css │ └── modal.css ├── img │ ├── add_task.png │ ├── cancel.png │ ├── depth.png │ ├── glass.png │ ├── hacker.png │ ├── hosts.png │ ├── lock.png │ ├── pause.png │ ├── play.png │ ├── refresh.png │ └── tools.png ├── js-cookie │ └── js.cookie.js └── js │ ├── basic.js │ ├── d3.v2.js │ ├── fdg.js │ ├── operation.js │ └── tabs.js ├── templates ├── Install-Cagent.ps1 ├── adversary.html └── settings.html └── tests └── test_adversary_api.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wietze/bsides-ldn-2019/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wietze/bsides-ldn-2019/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSE-3RD-PARTY: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wietze/bsides-ldn-2019/HEAD/LICENSE-3RD-PARTY -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wietze/bsides-ldn-2019/HEAD/NOTICE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wietze/bsides-ldn-2019/HEAD/README.md -------------------------------------------------------------------------------- /README.original.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wietze/bsides-ldn-2019/HEAD/README.original.md -------------------------------------------------------------------------------- /app/adversary/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/adversary/adversary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wietze/bsides-ldn-2019/HEAD/app/adversary/adversary.py -------------------------------------------------------------------------------- /app/adversary/word_lists.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wietze/bsides-ldn-2019/HEAD/app/adversary/word_lists.py -------------------------------------------------------------------------------- /app/attack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wietze/bsides-ldn-2019/HEAD/app/attack.py -------------------------------------------------------------------------------- /app/authentication.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wietze/bsides-ldn-2019/HEAD/app/authentication.py -------------------------------------------------------------------------------- /app/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/commands/at.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wietze/bsides-ldn-2019/HEAD/app/commands/at.py -------------------------------------------------------------------------------- /app/commands/cmd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wietze/bsides-ldn-2019/HEAD/app/commands/cmd.py -------------------------------------------------------------------------------- /app/commands/command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wietze/bsides-ldn-2019/HEAD/app/commands/command.py -------------------------------------------------------------------------------- /app/commands/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wietze/bsides-ldn-2019/HEAD/app/commands/errors.py -------------------------------------------------------------------------------- /app/commands/footprint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wietze/bsides-ldn-2019/HEAD/app/commands/footprint.py -------------------------------------------------------------------------------- /app/commands/makecab.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wietze/bsides-ldn-2019/HEAD/app/commands/makecab.py -------------------------------------------------------------------------------- /app/commands/mimikatz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wietze/bsides-ldn-2019/HEAD/app/commands/mimikatz.py -------------------------------------------------------------------------------- /app/commands/nbtstat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wietze/bsides-ldn-2019/HEAD/app/commands/nbtstat.py -------------------------------------------------------------------------------- /app/commands/net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wietze/bsides-ldn-2019/HEAD/app/commands/net.py -------------------------------------------------------------------------------- /app/commands/netstat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wietze/bsides-ldn-2019/HEAD/app/commands/netstat.py -------------------------------------------------------------------------------- /app/commands/parsers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wietze/bsides-ldn-2019/HEAD/app/commands/parsers.py -------------------------------------------------------------------------------- /app/commands/powershell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wietze/bsides-ldn-2019/HEAD/app/commands/powershell.py -------------------------------------------------------------------------------- /app/commands/psexec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wietze/bsides-ldn-2019/HEAD/app/commands/psexec.py -------------------------------------------------------------------------------- /app/commands/reg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wietze/bsides-ldn-2019/HEAD/app/commands/reg.py -------------------------------------------------------------------------------- /app/commands/runas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wietze/bsides-ldn-2019/HEAD/app/commands/runas.py -------------------------------------------------------------------------------- /app/commands/sc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wietze/bsides-ldn-2019/HEAD/app/commands/sc.py -------------------------------------------------------------------------------- /app/commands/schtasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wietze/bsides-ldn-2019/HEAD/app/commands/schtasks.py -------------------------------------------------------------------------------- /app/commands/static.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wietze/bsides-ldn-2019/HEAD/app/commands/static.py -------------------------------------------------------------------------------- /app/commands/systeminfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wietze/bsides-ldn-2019/HEAD/app/commands/systeminfo.py -------------------------------------------------------------------------------- /app/commands/taskkill.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wietze/bsides-ldn-2019/HEAD/app/commands/taskkill.py -------------------------------------------------------------------------------- /app/commands/tasklist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wietze/bsides-ldn-2019/HEAD/app/commands/tasklist.py -------------------------------------------------------------------------------- /app/commands/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wietze/bsides-ldn-2019/HEAD/app/commands/test.py -------------------------------------------------------------------------------- /app/commands/winrm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wietze/bsides-ldn-2019/HEAD/app/commands/winrm.py -------------------------------------------------------------------------------- /app/commands/wmic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wietze/bsides-ldn-2019/HEAD/app/commands/wmic.py -------------------------------------------------------------------------------- /app/commands/xcopy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wietze/bsides-ldn-2019/HEAD/app/commands/xcopy.py -------------------------------------------------------------------------------- /app/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wietze/bsides-ldn-2019/HEAD/app/config.py -------------------------------------------------------------------------------- /app/custom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wietze/bsides-ldn-2019/HEAD/app/custom.py -------------------------------------------------------------------------------- /app/database/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/database/dao.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wietze/bsides-ldn-2019/HEAD/app/database/dao.py -------------------------------------------------------------------------------- /app/database/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wietze/bsides-ldn-2019/HEAD/app/database/model.py -------------------------------------------------------------------------------- /app/database/mongo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wietze/bsides-ldn-2019/HEAD/app/database/mongo.py -------------------------------------------------------------------------------- /app/engine/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/engine/database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wietze/bsides-ldn-2019/HEAD/app/engine/database.py -------------------------------------------------------------------------------- /app/engine/objects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wietze/bsides-ldn-2019/HEAD/app/engine/objects.py -------------------------------------------------------------------------------- /app/event_logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wietze/bsides-ldn-2019/HEAD/app/event_logging.py -------------------------------------------------------------------------------- /app/extern.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wietze/bsides-ldn-2019/HEAD/app/extern.py -------------------------------------------------------------------------------- /app/interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wietze/bsides-ldn-2019/HEAD/app/interface.py -------------------------------------------------------------------------------- /app/logic/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/logic/clips_logic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wietze/bsides-ldn-2019/HEAD/app/logic/clips_logic.py -------------------------------------------------------------------------------- /app/logic/landmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wietze/bsides-ldn-2019/HEAD/app/logic/landmark.py -------------------------------------------------------------------------------- /app/logic/logic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wietze/bsides-ldn-2019/HEAD/app/logic/logic.py -------------------------------------------------------------------------------- /app/logic/planner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wietze/bsides-ldn-2019/HEAD/app/logic/planner.py -------------------------------------------------------------------------------- /app/logic/pydatalog_logic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wietze/bsides-ldn-2019/HEAD/app/logic/pydatalog_logic.py -------------------------------------------------------------------------------- /app/operation/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/operation/cleanup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wietze/bsides-ldn-2019/HEAD/app/operation/cleanup.py -------------------------------------------------------------------------------- /app/operation/operation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wietze/bsides-ldn-2019/HEAD/app/operation/operation.py -------------------------------------------------------------------------------- /app/operation/operation_errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wietze/bsides-ldn-2019/HEAD/app/operation/operation_errors.py -------------------------------------------------------------------------------- /app/operation/operation_obj.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wietze/bsides-ldn-2019/HEAD/app/operation/operation_obj.py -------------------------------------------------------------------------------- /app/operation/operation_script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wietze/bsides-ldn-2019/HEAD/app/operation/operation_script.py -------------------------------------------------------------------------------- /app/operation/step.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wietze/bsides-ldn-2019/HEAD/app/operation/step.py -------------------------------------------------------------------------------- /app/powershell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wietze/bsides-ldn-2019/HEAD/app/powershell.py -------------------------------------------------------------------------------- /app/service/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/service/adversary_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wietze/bsides-ldn-2019/HEAD/app/service/adversary_api.py -------------------------------------------------------------------------------- /app/service/api_logic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wietze/bsides-ldn-2019/HEAD/app/service/api_logic.py -------------------------------------------------------------------------------- /app/service/background.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wietze/bsides-ldn-2019/HEAD/app/service/background.py -------------------------------------------------------------------------------- /app/service/explode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wietze/bsides-ldn-2019/HEAD/app/service/explode.py -------------------------------------------------------------------------------- /app/simulate/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/simulate/generate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wietze/bsides-ldn-2019/HEAD/app/simulate/generate.py -------------------------------------------------------------------------------- /app/simulate/lists/animals: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wietze/bsides-ldn-2019/HEAD/app/simulate/lists/animals -------------------------------------------------------------------------------- /app/simulate/lists/dist.list.female: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wietze/bsides-ldn-2019/HEAD/app/simulate/lists/dist.list.female -------------------------------------------------------------------------------- /app/simulate/lists/dist.list.male: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wietze/bsides-ldn-2019/HEAD/app/simulate/lists/dist.list.male -------------------------------------------------------------------------------- /app/simulate/lists/greek.alphabet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wietze/bsides-ldn-2019/HEAD/app/simulate/lists/greek.alphabet -------------------------------------------------------------------------------- /app/simulate/sim.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wietze/bsides-ldn-2019/HEAD/app/simulate/sim.py -------------------------------------------------------------------------------- /app/simulate/simulate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wietze/bsides-ldn-2019/HEAD/app/simulate/simulate.py -------------------------------------------------------------------------------- /app/simulate/wordlist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wietze/bsides-ldn-2019/HEAD/app/simulate/wordlist.py -------------------------------------------------------------------------------- /app/simulate/world.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wietze/bsides-ldn-2019/HEAD/app/simulate/world.py -------------------------------------------------------------------------------- /app/steps/AC_bypass.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wietze/bsides-ldn-2019/HEAD/app/steps/AC_bypass.py -------------------------------------------------------------------------------- /app/steps/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wietze/bsides-ldn-2019/HEAD/app/steps/__init__.py -------------------------------------------------------------------------------- /app/steps/adduser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wietze/bsides-ldn-2019/HEAD/app/steps/adduser.py -------------------------------------------------------------------------------- /app/steps/associationabuse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wietze/bsides-ldn-2019/HEAD/app/steps/associationabuse.py -------------------------------------------------------------------------------- /app/steps/certutildownload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wietze/bsides-ldn-2019/HEAD/app/steps/certutildownload.py -------------------------------------------------------------------------------- /app/steps/copy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wietze/bsides-ldn-2019/HEAD/app/steps/copy.py -------------------------------------------------------------------------------- /app/steps/credentials.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wietze/bsides-ldn-2019/HEAD/app/steps/credentials.py -------------------------------------------------------------------------------- /app/steps/dirlistcollection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wietze/bsides-ldn-2019/HEAD/app/steps/dirlistcollection.py -------------------------------------------------------------------------------- /app/steps/dumpcreds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wietze/bsides-ldn-2019/HEAD/app/steps/dumpcreds.py -------------------------------------------------------------------------------- /app/steps/exfiladversaryprofile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wietze/bsides-ldn-2019/HEAD/app/steps/exfiladversaryprofile.py -------------------------------------------------------------------------------- /app/steps/getadmin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wietze/bsides-ldn-2019/HEAD/app/steps/getadmin.py -------------------------------------------------------------------------------- /app/steps/getcomputers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wietze/bsides-ldn-2019/HEAD/app/steps/getcomputers.py -------------------------------------------------------------------------------- /app/steps/getdomain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wietze/bsides-ldn-2019/HEAD/app/steps/getdomain.py -------------------------------------------------------------------------------- /app/steps/getlocalprofiles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wietze/bsides-ldn-2019/HEAD/app/steps/getlocalprofiles.py -------------------------------------------------------------------------------- /app/steps/getperipheraldeviceslocal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wietze/bsides-ldn-2019/HEAD/app/steps/getperipheraldeviceslocal.py -------------------------------------------------------------------------------- /app/steps/getprivescsvcinfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wietze/bsides-ldn-2019/HEAD/app/steps/getprivescsvcinfo.py -------------------------------------------------------------------------------- /app/steps/hklmrunkeypersist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wietze/bsides-ldn-2019/HEAD/app/steps/hklmrunkeypersist.py -------------------------------------------------------------------------------- /app/steps/hkurunkeypersist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wietze/bsides-ldn-2019/HEAD/app/steps/hkurunkeypersist.py -------------------------------------------------------------------------------- /app/steps/logonpersistence.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wietze/bsides-ldn-2019/HEAD/app/steps/logonpersistence.py -------------------------------------------------------------------------------- /app/steps/nettime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wietze/bsides-ldn-2019/HEAD/app/steps/nettime.py -------------------------------------------------------------------------------- /app/steps/netuse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wietze/bsides-ldn-2019/HEAD/app/steps/netuse.py -------------------------------------------------------------------------------- /app/steps/networkconnections.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wietze/bsides-ldn-2019/HEAD/app/steps/networkconnections.py -------------------------------------------------------------------------------- /app/steps/passthehashcopy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wietze/bsides-ldn-2019/HEAD/app/steps/passthehashcopy.py -------------------------------------------------------------------------------- /app/steps/passthehashsc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wietze/bsides-ldn-2019/HEAD/app/steps/passthehashsc.py -------------------------------------------------------------------------------- /app/steps/psexecmove.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wietze/bsides-ldn-2019/HEAD/app/steps/psexecmove.py -------------------------------------------------------------------------------- /app/steps/removenetshare.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wietze/bsides-ldn-2019/HEAD/app/steps/removenetshare.py -------------------------------------------------------------------------------- /app/steps/rundll32execution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wietze/bsides-ldn-2019/HEAD/app/steps/rundll32execution.py -------------------------------------------------------------------------------- /app/steps/schtasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wietze/bsides-ldn-2019/HEAD/app/steps/schtasks.py -------------------------------------------------------------------------------- /app/steps/schtaskspersist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wietze/bsides-ldn-2019/HEAD/app/steps/schtaskspersist.py -------------------------------------------------------------------------------- /app/steps/scpersist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wietze/bsides-ldn-2019/HEAD/app/steps/scpersist.py -------------------------------------------------------------------------------- /app/steps/servicemanipulatebinpathsclocal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wietze/bsides-ldn-2019/HEAD/app/steps/servicemanipulatebinpathsclocal.py -------------------------------------------------------------------------------- /app/steps/servicemanipulatefilesclocal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wietze/bsides-ldn-2019/HEAD/app/steps/servicemanipulatefilesclocal.py -------------------------------------------------------------------------------- /app/steps/servicemanipulateunquotedlocal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wietze/bsides-ldn-2019/HEAD/app/steps/servicemanipulateunquotedlocal.py -------------------------------------------------------------------------------- /app/steps/shortcutmodify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wietze/bsides-ldn-2019/HEAD/app/steps/shortcutmodify.py -------------------------------------------------------------------------------- /app/steps/systeminfolocal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wietze/bsides-ldn-2019/HEAD/app/steps/systeminfolocal.py -------------------------------------------------------------------------------- /app/steps/systeminforemote.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wietze/bsides-ldn-2019/HEAD/app/steps/systeminforemote.py -------------------------------------------------------------------------------- /app/steps/tasklistlocal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wietze/bsides-ldn-2019/HEAD/app/steps/tasklistlocal.py -------------------------------------------------------------------------------- /app/steps/tasklistremote.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wietze/bsides-ldn-2019/HEAD/app/steps/tasklistremote.py -------------------------------------------------------------------------------- /app/steps/timestomp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wietze/bsides-ldn-2019/HEAD/app/steps/timestomp.py -------------------------------------------------------------------------------- /app/steps/webserverinstall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wietze/bsides-ldn-2019/HEAD/app/steps/webserverinstall.py -------------------------------------------------------------------------------- /app/steps/webshellexecution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wietze/bsides-ldn-2019/HEAD/app/steps/webshellexecution.py -------------------------------------------------------------------------------- /app/steps/windowsremotemanagement.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wietze/bsides-ldn-2019/HEAD/app/steps/windowsremotemanagement.py -------------------------------------------------------------------------------- /app/steps/wmiremoteprocesscreate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wietze/bsides-ldn-2019/HEAD/app/steps/wmiremoteprocesscreate.py -------------------------------------------------------------------------------- /app/steps/xcopy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wietze/bsides-ldn-2019/HEAD/app/steps/xcopy.py -------------------------------------------------------------------------------- /app/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wietze/bsides-ldn-2019/HEAD/app/util.py -------------------------------------------------------------------------------- /app/utility/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/utility/general.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wietze/bsides-ldn-2019/HEAD/app/utility/general.py -------------------------------------------------------------------------------- /conf/adversary_profiles.default: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wietze/bsides-ldn-2019/HEAD/conf/adversary_profiles.default -------------------------------------------------------------------------------- /conf/artifact_lists.default: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wietze/bsides-ldn-2019/HEAD/conf/artifact_lists.default -------------------------------------------------------------------------------- /conf/atomic_attack_navigator_coverage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wietze/bsides-ldn-2019/HEAD/conf/atomic_attack_navigator_coverage.json -------------------------------------------------------------------------------- /conf/attack_download.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wietze/bsides-ldn-2019/HEAD/conf/attack_download.json -------------------------------------------------------------------------------- /conf/config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wietze/bsides-ldn-2019/HEAD/conf/config.ini -------------------------------------------------------------------------------- /conf/simulation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wietze/bsides-ldn-2019/HEAD/conf/simulation.json -------------------------------------------------------------------------------- /filestore/rundll.sct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wietze/bsides-ldn-2019/HEAD/filestore/rundll.sct -------------------------------------------------------------------------------- /filestore/webshell.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wietze/bsides-ldn-2019/HEAD/filestore/webshell.php -------------------------------------------------------------------------------- /hook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wietze/bsides-ldn-2019/HEAD/hook.py -------------------------------------------------------------------------------- /payloads/bypassRAT.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wietze/bsides-ldn-2019/HEAD/payloads/bypassRAT.hex -------------------------------------------------------------------------------- /payloads/bypassTAR.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wietze/bsides-ldn-2019/HEAD/payloads/bypassTAR.hex -------------------------------------------------------------------------------- /payloads/footprint-ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wietze/bsides-ldn-2019/HEAD/payloads/footprint-ps1 -------------------------------------------------------------------------------- /payloads/invoke-mimi-ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wietze/bsides-ldn-2019/HEAD/payloads/invoke-mimi-ps1 -------------------------------------------------------------------------------- /payloads/invoke-reflectivepe-ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wietze/bsides-ldn-2019/HEAD/payloads/invoke-reflectivepe-ps1 -------------------------------------------------------------------------------- /payloads/logon.hex: -------------------------------------------------------------------------------- 1 | start /d "C:\\" totally_innocent_executable.exe -------------------------------------------------------------------------------- /payloads/mimi32-dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wietze/bsides-ldn-2019/HEAD/payloads/mimi32-dll -------------------------------------------------------------------------------- /payloads/mimi32-exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wietze/bsides-ldn-2019/HEAD/payloads/mimi32-exe -------------------------------------------------------------------------------- /payloads/mimi64-dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wietze/bsides-ldn-2019/HEAD/payloads/mimi64-dll -------------------------------------------------------------------------------- /payloads/mimi64-exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wietze/bsides-ldn-2019/HEAD/payloads/mimi64-exe -------------------------------------------------------------------------------- /payloads/powerup-ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wietze/bsides-ldn-2019/HEAD/payloads/powerup-ps1 -------------------------------------------------------------------------------- /payloads/powerview-ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wietze/bsides-ldn-2019/HEAD/payloads/powerview-ps1 -------------------------------------------------------------------------------- /payloads/timestomper-ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wietze/bsides-ldn-2019/HEAD/payloads/timestomper-ps1 -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wietze/bsides-ldn-2019/HEAD/requirements.txt -------------------------------------------------------------------------------- /static/css/basic.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wietze/bsides-ldn-2019/HEAD/static/css/basic.css -------------------------------------------------------------------------------- /static/css/modal.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wietze/bsides-ldn-2019/HEAD/static/css/modal.css -------------------------------------------------------------------------------- /static/img/add_task.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wietze/bsides-ldn-2019/HEAD/static/img/add_task.png -------------------------------------------------------------------------------- /static/img/cancel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wietze/bsides-ldn-2019/HEAD/static/img/cancel.png -------------------------------------------------------------------------------- /static/img/depth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wietze/bsides-ldn-2019/HEAD/static/img/depth.png -------------------------------------------------------------------------------- /static/img/glass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wietze/bsides-ldn-2019/HEAD/static/img/glass.png -------------------------------------------------------------------------------- /static/img/hacker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wietze/bsides-ldn-2019/HEAD/static/img/hacker.png -------------------------------------------------------------------------------- /static/img/hosts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wietze/bsides-ldn-2019/HEAD/static/img/hosts.png -------------------------------------------------------------------------------- /static/img/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wietze/bsides-ldn-2019/HEAD/static/img/lock.png -------------------------------------------------------------------------------- /static/img/pause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wietze/bsides-ldn-2019/HEAD/static/img/pause.png -------------------------------------------------------------------------------- /static/img/play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wietze/bsides-ldn-2019/HEAD/static/img/play.png -------------------------------------------------------------------------------- /static/img/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wietze/bsides-ldn-2019/HEAD/static/img/refresh.png -------------------------------------------------------------------------------- /static/img/tools.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wietze/bsides-ldn-2019/HEAD/static/img/tools.png -------------------------------------------------------------------------------- /static/js-cookie/js.cookie.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wietze/bsides-ldn-2019/HEAD/static/js-cookie/js.cookie.js -------------------------------------------------------------------------------- /static/js/basic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wietze/bsides-ldn-2019/HEAD/static/js/basic.js -------------------------------------------------------------------------------- /static/js/d3.v2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wietze/bsides-ldn-2019/HEAD/static/js/d3.v2.js -------------------------------------------------------------------------------- /static/js/fdg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wietze/bsides-ldn-2019/HEAD/static/js/fdg.js -------------------------------------------------------------------------------- /static/js/operation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wietze/bsides-ldn-2019/HEAD/static/js/operation.js -------------------------------------------------------------------------------- /static/js/tabs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wietze/bsides-ldn-2019/HEAD/static/js/tabs.js -------------------------------------------------------------------------------- /templates/Install-Cagent.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wietze/bsides-ldn-2019/HEAD/templates/Install-Cagent.ps1 -------------------------------------------------------------------------------- /templates/adversary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wietze/bsides-ldn-2019/HEAD/templates/adversary.html -------------------------------------------------------------------------------- /templates/settings.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wietze/bsides-ldn-2019/HEAD/templates/settings.html -------------------------------------------------------------------------------- /tests/test_adversary_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wietze/bsides-ldn-2019/HEAD/tests/test_adversary_api.py --------------------------------------------------------------------------------