Merge pull request #272 from swelcher/T1081revised
T1081 Added notes about additional modules being needed for Mimikatz etc
This commit is contained in:
@@ -14,3 +14,42 @@ atomic_tests:
|
||||
name: sh
|
||||
command: |
|
||||
python2 laZagne.py all
|
||||
|
||||
- name: Extract credentials from files
|
||||
description: |
|
||||
Extracting credentials from files
|
||||
input_arguments:
|
||||
file_path:
|
||||
description: Path to search
|
||||
type: String
|
||||
default: /
|
||||
supported_platforms:
|
||||
- macos
|
||||
- linux
|
||||
executor:
|
||||
name: sh
|
||||
command: |
|
||||
grep -riP password #{file_path}
|
||||
|
||||
- name: Mimikatz & Kittenz
|
||||
description: |
|
||||
Mimikatz/kittenz - This will require a Mimikatz executable or invoke-mimikittenz ps module.
|
||||
supported_platforms:
|
||||
- windows
|
||||
executor:
|
||||
name: powershell
|
||||
command: |
|
||||
invoke-mimikittenz
|
||||
mimikatz.exe
|
||||
|
||||
- name: Extracting credentials from files
|
||||
description: |
|
||||
Extracting Credentials from Files
|
||||
supported_platforms:
|
||||
- windows
|
||||
executor:
|
||||
name: powershell
|
||||
command: |
|
||||
findstr /si pass *.xml | *.doc | *.txt | *.xls
|
||||
ls -R | select-string -Pattern password
|
||||
|
||||
|
||||
Reference in New Issue
Block a user