Skip to content

Commit

Permalink
Merge branch '3168-mimikatz-pipfile' into develop
Browse files Browse the repository at this point in the history
Issue #3168
PR #3268
  • Loading branch information
mssalvatore committed Apr 27, 2023
2 parents ed940f9 + b612018 commit f246966
Show file tree
Hide file tree
Showing 4 changed files with 313 additions and 2 deletions.
12 changes: 12 additions & 0 deletions monkey/agent_plugins/credentials_collectors/mimikatz/Pipfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
[[source]]
url = "https://pypi.org/simple"
verify_ssl = true
name = "pypi"

[packages]
pypykatz = "*"

[dev-packages]

[requires]
python_version = "3.11"
299 changes: 299 additions & 0 deletions monkey/agent_plugins/credentials_collectors/mimikatz/Pipfile.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@ target_operating_systems:
- windows
title: Mimikatz Credentials Collector
version: 1.0.0
description: Collects credentials from Windows credential manager.
description: Collects credentials from Windows Credential Manager using Mimikatz.
safe: true
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@
class MimikatzOptions(InfectionMonkeyBaseModel):
excluded_username_prefix: str = Field(
default="somenewuser",
description="Mimikatz will not collect credentials for any user whos username"
description="Mimikatz will not collect credentials for any user whose username"
" starts with this prefix.",
)

0 comments on commit f246966

Please sign in to comment.