一个欲儿的博客

C++ 冰河木马更新版本

因为一些原因冰河木马我重新写了一次先说更新后的功能:这次可以修改注册表实现无限自启动SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Run这次可以让对方电脑打开对方硬盘文件关于欲儿远控的说明 命令大全  dir-查询目录(查询对方指定硬盘路径的文件)——例如:dir-D:\\ down-下载...

C++ WebHook发送信息

尼玛没什么好说的了,让我上代码,已经给大家封装为函数方便使用#include <iostream> #include <string> #include <curl/curl.h> using namespace std; string GbkTo...

C++ GBK UTF8两种编码转换

尼玛这个我不好截图,因为这个要截图的话我得有两种编码的字符串,但是事实上我没有!!!哈哈哈哈#include <iostream> #include <string> #include <curl/curl.h> using namespace std; s...

C++ 将字符串写入剪切板

将字符串写入剪切板 C++本身不行的,只能利用WIN API#include <windows.h> #include <string> #include <fstream> #include <string.h> #include <iostre...

C++ 之 std::string 转LPCSTR

哎哟,转这个可把我给难死了,转这个转了一个小时,代码如下#include<string> #include<iostream> using namespace std; string str = "老子想杀了你"; LPSTR str1 ...

C++ libcurl各种函数API解析

网站是英文版,而且是curl官方网站,总的来说还是非常的不错的,虽然是英语,英语好的应该看得懂吧。哈哈,此篇博客没有什么目的只是方便我下次查询的时候,更容易到而已https://curl.haxx.se/libcurl/c/...