上一页 1 2 3 4 5 6 ··· 18 下一页

2018年12月27日

摘要: 使用这个github上的项目:https://github.com/L3cr0f/DccwBypassUAC可以自行编译全程UAC不介入,没反应。测试:权限提升真实有效 阅读全文

posted @ 2018-12-27 10:57 #大囚长# 阅读(2522) 评论(0) 推荐(0) 编辑

2018年12月26日

摘要: simpleini项目地址:https://github.com/brofield/simpleini下载,新建项目,并将SimpleIni.h文件通过包含目录的方式加载进来。创建test.ini文件,内容如下:[server]root = 10.1.1.1... 阅读全文

posted @ 2018-12-26 18:00 #大囚长# 阅读(874) 评论(0) 推荐(0) 编辑

摘要: 首先下载tinyxml2 7.0.1库:https://github.com/leethomason/tinyxml2/releases打开tinyxml2,然后升级sdk,解决方案->重定解决方案目标,升级。然后编译生成dll和库文件,在tinyxml2\... 阅读全文

posted @ 2018-12-26 16:47 #大囚长# 阅读(1767) 评论(0) 推荐(0) 编辑

摘要: 参考文章:https://blog.csdn.net/tangcaijun/article/details/42110319首先下载库:https://www.cryptopp.com/#download使用vs2017打开cryptest.sln文件,解决... 阅读全文

posted @ 2018-12-26 14:57 #大囚长# 阅读(3510) 评论(0) 推荐(0) 编辑

摘要: 1.项目必须是win322.生成的lib_json.lib放到工程目录下3.incldue的头文件放到工程目录,然后设置工程->属性->配置属性->vc++目录->包含目录4.工程->属性->配置属性->c/c+±>代码生成->运行库,设置运行库为多线程调试... 阅读全文

posted @ 2018-12-26 11:24 #大囚长# 阅读(1130) 评论(0) 推荐(0) 编辑

2018年12月25日

摘要: #include "pch.h"#include #include #include using namespace std;int i;void signalHandle(int signum){ cout << "Interrupt signal(" <... 阅读全文

posted @ 2018-12-25 16:44 #大囚长# 阅读(217) 评论(0) 推荐(0) 编辑

2018年12月24日

摘要: 服务端:#include "pch.h"#include#include#include #define CONNECT_NUM_MAX 10#pragma comment(lib, "ws2_32.lib")using namespace std;int ... 阅读全文

posted @ 2018-12-24 19:06 #大囚长# 阅读(677) 评论(0) 推荐(0) 编辑

摘要: 安装mysql8.0 x64创建test数据库,user表,插入数据如下:+----+------+----------+-----------------+| id | name | password | email |+----+--... 阅读全文

posted @ 2018-12-24 16:02 #大囚长# 阅读(1479) 评论(1) 推荐(0) 编辑

2018年12月21日

摘要: 编译命令gcc -W -Wall -lpthread -o httpd httpd.c源码#include #include #include #include #include #include #include #include #include #in... 阅读全文

posted @ 2018-12-21 10:02 #大囚长# 阅读(187) 评论(0) 推荐(0) 编辑

2018年12月19日

摘要: int a = 1; int b = 2; cout << "a: "<< a << endl; cout << "b: "<< b << endl; a = a ^ b; b = a ^ b; a = a ^ b; cout << "a: " << a ... 阅读全文

posted @ 2018-12-19 10:59 #大囚长# 阅读(291) 评论(0) 推荐(0) 编辑

上一页 1 2 3 4 5 6 ··· 18 下一页