IMAGE_OPTIONAL_HEADER32 结构作用接 着我们来谈谈 IMAGE_OPTIONAL_HEADER 结构,正如名字的意思,这是一个可选映像头,是一个可选的结构,但是呢,实际上上节课我们讲解的 IMAGE_FILE_HEADER 结构远远不足以来定义 PE 文件的属性。因此,这些属性...
分类:
其他好文 时间:
2014-10-04 18:48:57
阅读次数:
331
DOS头结构typedef struct _IMAGE_DOS_HEADER { // DOS .EXE header +0h WORD e_magic; // *****DOS可执行文件标记***** +2h WORD e_cblp; // Bytes on last page of...
分类:
其他好文 时间:
2014-10-04 18:33:27
阅读次数:
210
#pragma mark - Set thumbnailImage-(UIImage*)setThumbnailFromImage:(UIImage *)image{ CGSize origImageSize = image.size; // The rectangle of t...
分类:
其他好文 时间:
2014-10-04 05:25:55
阅读次数:
349
var pic = new Array();var curindex=0;pic[0]="image/p1.jpg";pic[1]="image/p2.jpg";pic[2]="image/p3.jpg";setInterval(go, 3000);function go(){ documen...
分类:
Web程序 时间:
2014-10-04 02:09:35
阅读次数:
241
Visual Studio Image Library是微软提供的一套不可多得的高质量图标库(Visual Studio中自己使用的),我在自己写的一些小程序中一直有用到它们。今天天想把之前的程序中的2010风格的图标更新成2013的风格的,便到微软的网站网上搜了一下,发现体积大了好几倍,都快300...
分类:
其他好文 时间:
2014-10-03 21:25:15
阅读次数:
199
最初级的PHP分类查询程序无标题文档" method="post">';while($row=mysql_fetch_assoc($result)){echo '';echo ''.$row['id'].''.''.$row['name'].''.''.$row['image'].'';echo '...
分类:
Web程序 时间:
2014-10-03 20:22:45
阅读次数:
284
引入 This paper presents a simple but effective coding scheme called Locality-constrained Linear Coding (LLC) in place of the VQ coding in traditional S...
分类:
其他好文 时间:
2014-10-03 17:30:14
阅读次数:
599
//设置画布宽度 $image = imagecreatetruecolor(100, 50); //画布颜色 $bgcolor = imagecolorallocate($image, 255, 255, 255); // imagefill — 区域填充 imagefill($image, 0, 0, $bgcolor); //四个随机验证码 ...
分类:
其他好文 时间:
2014-10-03 16:01:25
阅读次数:
236
引入Recently SVMs using spatial pyramid matching (SPM) kernel have been highly successful in image classification. Despite its popularity, these nonline...
分类:
其他好文 时间:
2014-10-03 12:44:34
阅读次数:
278
PE文件结构(三)
参考
书:《加密与解密》
视频:小甲鱼 解密系列 视频
输入表
输入函数,表示被程序调用但是它的代码不在程序代码中的,而在dll中的函数。对于这些函数,磁盘上的可执行文件只是保留相关的函数信息,如函数名,dll文件名等。在程序运行前,程序是没有保存这些函数在内存中的地址。当程序运行起来时,windows加载器会把相关的dll装入内存,并且将输入函数的指令与函数真在内存中正的地址联系起来。输入表(导入表)就是用来保存这些函数的信息的。
在 IMAGE_OPT...
分类:
其他好文 时间:
2014-10-03 12:24:34
阅读次数:
215