码迷,mamicode.com
首页 > 其他好文 > 详细

upx防解压

时间:2014-11-04 13:21:07      阅读:226      评论:0      收藏:0      [点我收藏+]

标签:style   color   ar   sp   文件   on   代码   bs   ad   

  直接搜索文件中的 UPX! 字样 ,然后填充00 搞定 

  不过对于这种文件还是可以修改 upx 的源代码强制解压,目前Linux上还没看到内存中 dump  elf 文件的例子

  写了个小脚本 

<?php
if($argc < 2)
{
    print ‘usage: xxoo.php <elf file>‘;
    exit(-1);
}
$file = file_get_contents($argv[1]);
if(strlen($file))
{
    $file = str_replace(‘UPX‘,"\x00\x00\x00",$file);
    file_put_contents($argv[1],$file);
    echo "OK ~\n";
}

还要注意的就是压缩后的文件中还有一段  upx 的版权信息 ,这个最好也是清  0


upx防解压

标签:style   color   ar   sp   文件   on   代码   bs   ad   

原文地址:http://my.oschina.net/sincoder/blog/340450

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!