
pe
zylgbin
不知死,焉知生
展开
-
PE loader (x86)
#include <iostream>#include "PeLoader32.h"#include <fstream>using namespace std;string readFile(const string & _file_name) { fstream f(_file_name.data(), ios::in|ios::binary); f.seekg(0, ios::end); size_t len = f.tellg(); f.seekg(原创 2021-11-20 18:09:52 · 1152 阅读 · 0 评论 -
修改pe
#include"./pelib/source/PeFile.h"#include <iostream>#include <windows.h>#include "recommom/Utils/utils.h"using namespace std;using namespace PeLib;bool replaceString(string& src_str, size_t loc, size_t _size, string new_str) { bool原创 2021-04-11 13:50:56 · 188 阅读 · 0 评论 -
pe分析__导出表
E:\svc\test\pelib\pelib>DumpPe.exe hello.exe MZ Headere_magic 5A4De_cblp 0090e_cp原创 2021-04-06 23:13:17 · 167 阅读 · 0 评论