Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

导入插件后并没有找到相应的功能 #9

Open
Axianke opened this issue Oct 11, 2023 · 3 comments
Open

导入插件后并没有找到相应的功能 #9

Axianke opened this issue Oct 11, 2023 · 3 comments

Comments

@Axianke
Copy link

Axianke commented Oct 11, 2023

image
@Axianke
Copy link
Author

Axianke commented Oct 11, 2023

比如端口扫描键盘记录等

@Axianke
Copy link
Author

Axianke commented Oct 11, 2023

状态栏也没有出现CrossC2 kit

@gloxec
Copy link
Contributor

gloxec commented Oct 11, 2023

在你截图中,CrossC2菜单下面已经有了CrossC2Kit Setup选项,说明插件已经成功加载。

CrossC2Kit主要作用于操作目标上

  1. 对目标session点击鼠标右键,可以看到可支持的GUI功能
  2. 在目标session中,输入?后,可以看到一些支持的命令行插件

比如端口扫描键盘记录等

内置的端口扫描功能因为体积问题,暂时屏蔽了,可以在这里看到进行了注释

#include(script_resource("scanner/ServerScan/serverscan.cna"));

键盘记录Linux不可用,主要用于MacOS系统,插件会判断上线session的系统,来决定显示支持的功能

$keylogger_status = cc2_keylogger_status($bid);
if ($keylogger_status) {
item("Keylogger - ".$keylogger_status, {
openKeyloggerDialog($bid);
});
}

这里66行代码可以看到仅支持MacOS
sub cc2_keylogger_status {
local('$bid $os $arch $system');
$bid = $1;
$os = lc(beacon_info($bid, "os"));
$arch = beacon_info($bid, "arch");
if ('macos' isin $os) {
return 'MacOS(intel)';
}
return '';
}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants