上一页 1 ··· 38 39 40 41 42 43 44 45 46 ··· 68 下一页
摘要: dll文件(自定义函数) 1 _declspec(dllexport) void autoadd() 2 { 3 int *p = (int*)0xdc0c4d0; 4 *p = 5048; 5 } dll文件DLLMain函数 1 BOOL APIENTRY DllMain( HMODULE hM 阅读全文
posted @ 2018-02-23 13:26 喵小喵~ 阅读(119) 评论(0) 推荐(0) 编辑
摘要: taskkill / f / im 自删除.exedel 自删除.exedel 1.bat 阅读全文
posted @ 2018-02-23 13:16 喵小喵~ 阅读(317) 评论(0) 推荐(0) 编辑
摘要: 包含头文件 1 #include<urlmon.h> 连接库 1 #pragma comment(lib,"Urlmon.lib")//链接系统库 下载 1 URLDownloadToFileA(NULL, "http://127.0.0.1/Q.exe", "C:\\sys.exe",0, NUL 阅读全文
posted @ 2018-02-23 13:11 喵小喵~ 阅读(135) 评论(0) 推荐(0) 编辑
摘要: #pragma 输出信息#pragma message 1 #include<stdio.h> 2 3 #pragma message("这里是测试1") 4 5 6 #define X86 7 8 #ifdef X86 9 #pragma message("这里是测试2") 10 #endif 1 阅读全文
posted @ 2018-02-23 12:54 喵小喵~ 阅读(188) 评论(0) 推荐(0) 编辑
摘要: 写入 按照字符串读取 1 GetPrivateProfileStringA("hello money", infx[i].name, "NULL", money, 40, "1.ini"); 函数原型: 1 GetPrivateProfileStringA( 2 _In_opt_ LPCSTR lp 阅读全文
posted @ 2018-02-23 12:23 喵小喵~ 阅读(1811) 评论(0) 推荐(0) 编辑
摘要: define把参数变成字符串 1 #define f(x) printf("%s",#x); define连接两个字符串 1 #define a(x) a##x define把参数变成字符 1 #define N(x) #@x 取消#define的作用域 1 #undef MN //取消define 阅读全文
posted @ 2018-02-23 12:09 喵小喵~ 阅读(616) 评论(0) 推荐(0) 编辑
摘要: 初始化,数据的行数,hash链表结构体,存储头结点 1 #define _CRT_SECURE_NO_WARNINGS 2 #include <stdio.h> 3 #include <stdlib.h> 4 char path[256] = "csdn.txt"; 5 //数据的行数 6 #def 阅读全文
posted @ 2018-02-22 13:22 喵小喵~ 阅读(292) 评论(0) 推荐(0) 编辑
摘要: 常用字符串哈希函数有 BKDRHash,APHash,DJBHash,JSHash,RSHash,SDBMHash,PJWHash,ELFHash等等。对于以上几种哈希函数,我对其进行了一个小小的评测。 阅读全文
posted @ 2018-02-22 13:05 喵小喵~ 阅读(305) 评论(0) 推荐(0) 编辑
摘要: 密码相似度排序后的文件地址和按密码出现次数排序后的文件地址 1 //按密码相似度排序后的文件地址 2 char pathsortbypass[512] = "QQpasswordsort.txt"; 3 //按密码出现次数排序的文件地址 4 char pathsortbyci[512] = "QQp 阅读全文
posted @ 2018-02-22 11:49 喵小喵~ 阅读(342) 评论(0) 推荐(0) 编辑
摘要: 存储qq的文件地址以及按照密码相似度排序的文件地址 1 //存储qq的文件的地址 2 char path[512] = "QQ.txt"; 3 //按照密码相似度排序的文件地址 4 char pathsortbypass[512] = "QQpasswordsort.txt"; 标识qq一共有多少行 阅读全文
posted @ 2018-02-22 10:45 喵小喵~ 阅读(588) 评论(0) 推荐(0) 编辑
上一页 1 ··· 38 39 40 41 42 43 44 45 46 ··· 68 下一页