Skip to content

Commit

Permalink
Add "File Browser" menu to GUI
Browse files Browse the repository at this point in the history
  • Loading branch information
gloxec committed Nov 20, 2020
1 parent fd0c60a commit af4d49c
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions CrossC2Kit/CrossC2Kit_Loader.cna
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,27 @@ include(script_resource("gather/browser/chrome_dump.cna"));
include(script_resource("gather/keychain/keychain_dump.cna"));
include(script_resource("gather/message/iMessage_dump.cna"));

popup ssh {
menu "&Access" {
item "&Elevate" { openElevateDialog($1); }
}
menu "&Explore" {
item "&File Browser" {
local('$bid');
foreach $bid ($1) {
openFileBrowser($bid);
}
}
item "&Process List" { openProcessBrowser($1); }
}

item "&Spawn" {
local('$bid');
foreach $bid ($1) {
bshell($bid, "spawn");
}
}
}

ssh_alias spawn {
bshell($1, "spawn");
Expand Down

0 comments on commit af4d49c

Please sign in to comment.