mirror of
https://github.com/timwhitez/Cobalt-Strike-Aggressor-Scripts
synced 2026-06-08 17:50:44 +00:00
634e6db59d
Refactoring
20 lines
408 B
Plaintext
20 lines
408 B
Plaintext
|
|
menu "CMD" {
|
|
item "Set Command" {
|
|
local('$bid');
|
|
foreach $bid ($1){
|
|
prompt_text("filePath", $filePath, {
|
|
$filePath = $1;
|
|
return $filePath;
|
|
});
|
|
}
|
|
}
|
|
|
|
item "Execute Command"{
|
|
local('$bid');
|
|
foreach $bid ($1){
|
|
bshell($1, "$filePath");
|
|
|
|
}
|
|
}
|
|
} |