trustedsec/SliverKeylogger
Fork: 40 Star: 148 (更新于 2024-11-03 11:39:18)
license: MIT
Language: C++ .
最后发布版本: v0.0.1 ( 2022-06-18 06:04:37)
Sliver Keylogger
This extension to sliver was written mostly as a learning exercise into how sliver handles extensions.
I would like to thank the entire Sliver team for there work on this public implant framework. I would especially like to thank @rkervell for answering many of my questions related to how sliver handles it extensions
how does this work
Basically it uses raw input. This has advantages and disadvantages to other common keylogging methods.
I like it because it doesn't require injecting into other binaries, nor does it require polling a given call frequently and potentially missing results.
This code is some of my own work and some of a mash of examples found around the internet.
how to build it
open the solution file using visual studio 2019, and build the x86 and x64 releases
how to load / install it
Until this is potentially included in the armory it can be built on a windows system. then the resulting $(solutiondir)\bin folder can be placed on the sliver client
and extensions install <path to folder>
can be run to install the extension. you may need to restart or also run extensions load <path to folder>
usage
raw_keylogger <cmdid>
the following cmdid's are valid
0 = stop
1 = start
2 = get keystrokes
if everything goes well it will look like this
lessons learned
Sliver's api has the following two main parts
typedef int (*goCallback)(const char*, int);
extern "C" {
__declspec(dllexport) int __cdecl entrypoint(char* argsBuffer, uint32_t bufferSize, goCallback callback);
}
the implant will call the "entrypoint" as defined in the .json file. it points to your entrypoint function (doesn't have to have that name, just follow the signature)
goCallback is a function for returning output to go. its called like callback(string, string_length)
When coding the extension for now the "name" and "command_name" must match, otherwise the implant will reload your extension on every call.
As of this writing non-BOF extensions don't support strongly typed arguments, so everything provided on the cli after the command name will be sent down as a string. you have to handle it from there on the extension's native code side.
最近版本更新:(数据更新于 2024-09-13 18:36:31)
2022-06-18 06:04:37 v0.0.1
trustedsec/SliverKeylogger同语言 C++最近更新仓库
2024-11-05 23:57:44 PCSX2/pcsx2
2024-11-05 22:06:04 LizardByte/Sunshine
2024-11-05 00:42:13 ClickHouse/ClickHouse
2024-11-04 21:49:30 notepad-plus-plus/notepad-plus-plus
2024-11-03 22:31:09 MaaAssistantArknights/MaaAssistantArknights
2024-11-02 20:28:28 AaronFeng753/Waifu2x-Extension-GUI