Skip to content

Commit

Permalink
improve build
Browse files Browse the repository at this point in the history
  • Loading branch information
c2biz committed May 17, 2024
1 parent 0ff078e commit a7b0b5d
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 29 deletions.
26 changes: 2 additions & 24 deletions .github/workflows/autorelease.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,33 +33,11 @@ jobs:
- name: MSBuild x64
run: |
msbuild.exe .\mimikatz.sln /p:Configuration=Release /p:Platform="x64"
continue-on-error: true

- name: Check for mimikatz x64 artifact
run: |
if (Test-Path ".\x64\mimikatz.dll") {
Write-Output "mimikatz x64 build succeeded."
} else {
Write-Output "mimikatz x64 build failed."
exit 1
}
shell: pwsh
msbuild.exe .\mimikatz.sln /t:mimikatz /p:Configuration=sliverkatz /p:Platform="x64"
- name: MSBuild Win32
run: |
msbuild.exe .\mimikatz.sln /p:Configuration=Release /p:Platform="Win32"
continue-on-error: true

- name: Check for mimikatz x32 artifact
run: |
if (Test-Path ".\Win32\mimikatz.dll") {
Write-Output "mimikatz x86 build succeeded."
} else {
Write-Output "mimikatz x86 build failed."
exit 1
}
shell: pwsh
msbuild.exe .\mimikatz.sln /t:mimikatz /p:Configuration=sliverkatz /p:Platform="Win32"
- name: Build Package
# Powershell is utter fucking trash.
Expand Down
15 changes: 10 additions & 5 deletions extension.json
Original file line number Diff line number Diff line change
@@ -1,17 +1,22 @@
{
"name": "Mimikatz",
"name": "mimikatz",
"command_name": "mimikatz",
"version": "v0.0.1",
"version": "v0.0.0",
"extension_author": "MrAle98",
"original_author": "Gentilkiwi",
"repo_url": "https://github.com/sliverarmory/COFFLoader",
"help": "Load and execute Beacon Object Files (BOFs) in memory.",
"repo_url": "https://github.com/sliverarmory/mimikatz",
"help": "A little tool to play with Windows security",
"entrypoint": "entrypoint",
"files": [
{
"os": "windows",
"arch": "amd64",
"path": "mimikatz.dll"
"path": "powerkatz.x64.dll"
},
{
"os": "windows",
"arch": "386",
"path": "powerkatz.x86.dll"
}
]
}
2 changes: 2 additions & 0 deletions mimikatz.sln
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,9 @@ Global
{FB9B5E61-7C34-4280-A211-E979E1D6977F}.Simple_DLL|x64.Build.0 = Simple_DLL|x64
{FB9B5E61-7C34-4280-A211-E979E1D6977F}.sliverkatz|ARM64.ActiveCfg = sliverkatz|ARM64
{FB9B5E61-7C34-4280-A211-E979E1D6977F}.sliverkatz|Win32.ActiveCfg = sliverkatz|Win32
{FB9B5E61-7C34-4280-A211-E979E1D6977F}.sliverkatz|Win32.Build.0 = sliverkatz|Win32
{FB9B5E61-7C34-4280-A211-E979E1D6977F}.sliverkatz|x64.ActiveCfg = sliverkatz|x64
{FB9B5E61-7C34-4280-A211-E979E1D6977F}.sliverkatz|x64.Build.0 = sliverkatz|x64
{FB9B5E61-7C34-4280-A211-E979E1D6977F}.sliverkatz-debug|ARM64.ActiveCfg = sliverkatz-debug|ARM64
{FB9B5E61-7C34-4280-A211-E979E1D6977F}.sliverkatz-debug|Win32.ActiveCfg = sliverkatz-debug|Win32
{FB9B5E61-7C34-4280-A211-E979E1D6977F}.sliverkatz-debug|x64.ActiveCfg = sliverkatz-debug|x64
Expand Down

0 comments on commit a7b0b5d

Please sign in to comment.