C++ PE格式解析源码
2020-01-04 03:15:28 47KB PE
1
名人电子书MEB文件格式分析 - pwstudio的日志 - 网易博客.htm
2020-01-03 11:36:42 69KB meb 格式解析
1
c#实现 CAT021报文格式解析
2019-12-21 21:35:00 39KB c#,CAT021
1
win32控制台程序,MP4格式文件解析显示,学习分析文件结构,提取h264裸流,详情和使用说明移步:https://blog.csdn.net/u013752202
2019-12-21 21:28:55 16KB MP4 MP4格式解析 MP4学习 音视频
1
c# 实现pcap格式解析,方便Wireshark抓包后数据的分析,实现了TCP与UDP的解包
2019-12-21 21:27:37 41KB pcap c#
1
基于GMIME2.6.11的邮件格式解析以及附件恢复,使用本程序之前,需要先安装GMIME库,本程序使用在Linux系统中,测试与Ubuntu14.04通过
2019-12-21 21:23:52 3.94MB GMIME
1
PE文件格式解析(MFC,C++源码),解析的很全,学习PE文件格式必备
2019-12-21 21:19:26 604KB PE 格式解析
1
配套博文:http://blog.csdn.net/stevenkylelee/article/details/38309147 此版本是CSV解析器第一版的改进版。 第一版只支持\r\n为行结尾的csv格式解析。 本版本支持\r\n和\n为行结尾的csv格式解析
2019-12-21 21:10:17 555KB CSV 解析
1
本文详细介绍了Img图像文件的格式,并用CSharp语言实现了对Img图像文件的读取。
2019-12-21 20:49:42 1.06MB img
1
/* cole - A free C OLE library. cole_extract - Extract a file from a filesystem. Copyright 1998, 1999 Roberto Arturo Tena Sanchez This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ /* Arturo Tena */ #include /* To compile this file outside cole source tree, you must include here instead */ #include "cole.h" #define PRGNAME "iOLE" #define BUFFER_SIZE 128 int main(int argc, char **argv) { COLEFS *cfs; COLEFILE *cf; COLERRNO colerrno; char buffer[BUFFER_SIZE]; size_t char_read; if (argc != 3) { fprintf(stderr, "cole_extract. Extract a file from a " "filesystem to the standard output.\n" "Usage: "PRGNAME" \n" " FILE - File with the filesystem.\n" " INFILE - Filename of the file to extract.\n"); exit(1); } printf("%s",argv[1]); cfs = cole_mount(argv[1], &colerrno); if (cfs == NULL) { cole_perror(PRGNAME, colerrno); exit(1); } cf = cole_fopen(cfs, argv[2], &colerrno); if (cf == NULL) { cole_perror(PRGNAME, colerrno); cole_umount(cfs, NULL); exit(1); } while ((char_read = cole_fread(cf, buffer, BUFFER_SIZE, &colerrno))) { if (fwrite(buffer, 1, char_read, stdout) != char_read) { break; } } if (!cole_feof(cf)) { cole_perror(PRGNAME, colerrno); cole_umount(cfs, NULL); exit(1); } if (cole_fclose(
2019-12-21 19:42:02 173KB ole格式解析代码
1