forked from outflanknl/C2-Tool-Collection
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add AddMachineAccount, Lapsdump, and PetitPotam
- Loading branch information
Showing
4 changed files
with
105 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
{ | ||
"name": "C2-Tool-Collection AddMachineAccount BOF", | ||
"version": "v0.0.0", | ||
"command_name": "c2tc-addmachineaccount", | ||
"extension_author": "c2biz", | ||
"original_author": "outflanknl", | ||
"repo_url": "https://github.com/sliverarmory/C2-Tool-Collection", | ||
"help": "AddMachineAccount [Computername] [Password <Optional>]", | ||
"depends_on": "coff-loader", | ||
"entrypoint": "go", | ||
"files": [ | ||
{ | ||
"os": "windows", | ||
"arch": "amd64", | ||
"path": "AddMachineAccount.o" | ||
} | ||
], | ||
"arguments": [ | ||
{ | ||
"name": "accountName", | ||
"desc": "Computer Name", | ||
"type": "string", | ||
"optional": false | ||
}, | ||
{ | ||
"name": "password", | ||
"desc": "Password (Optional)", | ||
"type": "string", | ||
"optional": true | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
{ | ||
"name": "C2-Tool-Collection Lapsdump BOF", | ||
"version": "v0.0.0", | ||
"command_name": "c2tc-lapsdump", | ||
"extension_author": "c2biz", | ||
"original_author": "outflanknl", | ||
"repo_url": "https://github.com/sliverarmory/C2-Tool-Collection", | ||
"help": "Dump LAPS passwords from specified computers within Active Directory", | ||
"depends_on": "coff-loader", | ||
"entrypoint": "go", | ||
"files": [ | ||
{ | ||
"os": "windows", | ||
"arch": "amd64", | ||
"path": "Lapsdump.o" | ||
} | ||
], | ||
"arguments": [ | ||
{ | ||
"name": "accountName", | ||
"desc": "Computer Name", | ||
"type": "string", | ||
"optional": false | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
{ | ||
"name": "C2-Tool-Collection PetitPotam BOF", | ||
"version": "v0.0.0", | ||
"command_name": "c2tc-petitpotam", | ||
"extension_author": "c2biz", | ||
"original_author": "outflanknl", | ||
"repo_url": "https://github.com/sliverarmory/C2-Tool-Collection", | ||
"help": "PetitPotam <capture server ip or hostname> <target server ip or hostname>", | ||
"depends_on": "coff-loader", | ||
"entrypoint": "go", | ||
"files": [ | ||
{ | ||
"os": "windows", | ||
"arch": "amd64", | ||
"path": "PetitPotam.o" | ||
} | ||
], | ||
"arguments": [ | ||
{ | ||
"name": "captureHost", | ||
"desc": "apture server ip or hostname", | ||
"type": "string", | ||
"optional": false | ||
}, | ||
{ | ||
"name": "targetHost", | ||
"desc": "target server ip or hostname", | ||
"type": "string", | ||
"optional": false | ||
} | ||
] | ||
} |