Skip to content

Commit

Permalink
add AddMachineAccount, Lapsdump, and PetitPotam
Browse files Browse the repository at this point in the history
  • Loading branch information
c2biz committed Jun 2, 2022
1 parent f68d701 commit 9a0f2d4
Show file tree
Hide file tree
Showing 4 changed files with 105 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .github/workflows/autorelease.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,21 @@ jobs:
run: |
chmod +x ./make_bof.sh
./make_bof.sh Askcreds
- name: AddMachineAccount
run: |
chmod +x ./make_bof.sh
./make_bof.sh AddMachineAccount
- name: Lapsdump
run: |
chmod +x ./make_bof.sh
./make_bof.sh Lapsdump
- name: PetitPotam
run: |
chmod +x ./make_bof.sh
./make_bof.sh PetitPotam
- name: "Publish Release"
uses: "marvinpinto/action-automatic-releases@latest"
Expand Down
32 changes: 32 additions & 0 deletions BOF/AddMachineAccount/extension.json
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
}
]
}
26 changes: 26 additions & 0 deletions BOF/Lapsdump/extension.json
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
}
]
}
32 changes: 32 additions & 0 deletions BOF/PetitPotam/extension.json
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
}
]
}

0 comments on commit 9a0f2d4

Please sign in to comment.