攻城攻心的肴杂大师——深入解析第十八届CISCN x 第二届长城杯初赛Reverse ...

打印 上一主题 下一主题

主题 936|帖子 936|积分 2808

前言


    在初赛结束近两月之际,笔者在复盘过程中意外发现了这道当时无人能解的困难。经过两日深入的探索与研讨,笔者终于成功地对这道赛题进行了全面的解构。在品味破译flag所带来的喜悦之余,笔者亦深感此题蕴含了诸多精妙之处,特撰此文与诸君分享。
   

    一、 赛题初窥


    拿到样本re.exe,照例先拖入DIE分析,结果让人大吃一惊:

 
    DIE检测出了云云多的保护器,几乎涵盖了平常见过的所有种类。再拖入IDA看一眼:

 
 
    从上面灰色、赤色的部分占据绝大部分可以看出,整个程序几乎没有多少精确识别的函数,似乎比较符合虚拟机保护的特征。倘若到此你直接将它拖入接纳站的话,则正中出题人下怀,被其用精妙的心理战击退。仔细观察程序的代码,可以发现故意义的指令分别位于.text和UPX0段,且指令间存在很明显的被花指令肴杂的痕迹,而其它与虚拟机有关的段(.vmp0、.winlice等)均没有任何代码,这表明程序并未使用虚拟化保护,只是接纳增长特定段来诱骗DIE。此外,直接运行程序会迅速闪退,而调试运行程序会不停运行下去(比赛时运行了几个小时都没结束......),这都大大增强了“不战而屈人之兵”的效果。
   

    二、 去除语法肴杂

    在初步分析后,我们可以发现不能像该比赛中的逆向dump赛题那样通过简朴的黑盒测试分析结果,必须要先去除花指令的语法肴杂,从而实现静态分析。由于程序使用了大量的花指令,逐个patch耗时且容易出错,笔者考虑使用idc脚本实现该功能。
   

    该样本的花指令主要有以下几种范例:
    1. jz + 1



 



    该范例花指令跳过了一个字节,特征码为0F 84 01 00 00 00。如图所示,由简朴的数据流分析可知,0x401599处的指令肯定会跳转,因此0x40159F处的指令永远不会到达,patch方法为直接nop该字节。

   

    2. jz + 2



 
    同jz + 1范例,特征码为0F 84 02 00 00 00,直接patch跳过的2个字节即可。
   

    3. jz + 8


    同jz + 1范例,特征码为0F 84 08 00 00 00,直接patch跳过的8个字节即可。
   

    4. jge + 6


 
    该范例花指令特征码为0F 8D 06 00 00 00,其不能像前几种一样通过数据流分析直接观察出肯定跳转,但若程序实行到0x401AFB处,则最终肯定会崩溃。笔者的做法偏向保守,将跳过的6个字节前2个patch为ud2指令,后4个指令patch为nop指令,这样静态分析得到的伪代码也能提示跳转到此处会产生BUG。
   

    5. jmp + 6



    同jz + 1范例,特征码为E9 06 00 00 00 00(多使用一个00避免误报),直接patch跳过的6个字节即可。
   

6. jmp - 23


    同jge + 6范例,特征码为EB E9, 将该指令patch为ud2指令,其后的4个字节patch为nop指令。

   

    7. cmp al, 0E9h



    同jge + 6范例,特征码为3C E9, 将该指令patch为ud2指令,其后的4个字节patch为nop指令。
   

    8. 特殊



  •             0x413824处的指令jmp     qword ptr cs:45BF481Dh非法,查找交叉引用发现0x413826处有跳转到这里的条件分支,因此将该处前2个字节patch为ud2指令。        
  •             0x41669E处的两个00直接patch为nop指令。        
  •             0x41878D处patch一个ud2指令加上9字节的nop,否则会干扰sub_418779的函数分析。
            
   

    综上所述,我们可以编写出处理花指令肴杂的解肴杂idc脚本:
  1. #include <idc.idc>
  2. static main()
  3. {
  4.         auto seg, current_ea, ea;
  5.         // 遍历所有段
  6.         for (seg = get_first_seg(); seg != BADADDR; seg = get_next_seg(seg))
  7.         {
  8.                 auto seg_name = get_segm_name(seg);
  9.                 // 检查段名是否符合要求
  10.                 if (seg_name != ".text" && seg_name != "UPX0")
  11.                 {
  12.                         //Message("跳过段: %s (0x%X)\n", seg_name, seg);
  13.                         continue;
  14.                 }
  15.                 Message("正在处理段: %s (0x%X)\n", seg_name, seg);
  16.                 // 获取段的起始和结束地址
  17.                 auto start_ea = seg;
  18.                 auto end_ea = get_segm_end(seg);
  19.                 current_ea = start_ea;
  20.                 auto pattern1 = "0F 84 01 00 00 00";
  21.                 while (1)
  22.                 {
  23.                         ea = find_binary(current_ea, SEARCH_DOWN, pattern1);
  24.                         if (ea > end_ea || ea == BADADDR)
  25.                                 break;
  26.                         Message("Found pattern1 at 0x%X\n", ea);
  27.                         patch_byte(ea + 6, 0x90);       
  28.                         current_ea = ea + 1;
  29.                 }
  30.                 current_ea = start_ea;
  31.                 auto pattern2 = "0F 84 02 00 00 00";
  32.                 while (1)
  33.                 {
  34.                         ea = find_binary(current_ea, SEARCH_DOWN, pattern2);
  35.                         if (ea > end_ea || ea == BADADDR)
  36.                                 break;
  37.                         Message("Found pattern2 at 0x%X\n", ea);
  38.                         patch_word(ea + 6, 0x9090);                               
  39.                         current_ea = ea + 1;
  40.                 }
  41.                 current_ea = start_ea;
  42.                 auto pattern3 = "0F 84 08 00 00 00";
  43.                 while (1)
  44.                 {
  45.                         ea = find_binary(current_ea, SEARCH_DOWN, pattern3);
  46.                         if (ea > end_ea || ea == BADADDR)
  47.                                 break;
  48.                         Message("Found pattern3 at 0x%X\n", ea);
  49.                         patch_qword(ea + 6, 0x9090909090909090);       
  50.                         current_ea = ea + 1;
  51.                 }
  52.                 current_ea = start_ea;
  53.                 auto pattern4 = "0F 8D 06 00 00 00";
  54.                 while (1)
  55.                 {
  56.                         ea = find_binary(current_ea, SEARCH_DOWN, pattern4);
  57.                         if (ea > end_ea || ea == BADADDR)
  58.                                 break;
  59.                         Message("Found pattern4 at 0x%X\n", ea);
  60.                         patch_word(ea + 6, 0x0B0F);                               
  61.                         patch_dword(ea + 8, 0x90909090);       
  62.                         current_ea = ea + 1;
  63.                 }
  64.                 current_ea = start_ea;
  65.                 auto pattern5 = "E9 06 00 00 00 00";
  66.                 while (1)
  67.                 {
  68.                         ea = find_binary(current_ea, SEARCH_DOWN, pattern5);
  69.                         if (ea > end_ea || ea == BADADDR)
  70.                                 break;
  71.                         Message("Found pattern5 at 0x%X\n", ea);
  72.                         patch_word(ea + 5, 0x0B0F);                               
  73.                         patch_dword(ea + 7, 0x90909090);       
  74.                         current_ea = ea + 1;
  75.                 }
  76.                 current_ea = start_ea;
  77.                 auto pattern6 = "EB E9";
  78.                 while (1)
  79.                 {
  80.                         ea = find_binary(current_ea, SEARCH_DOWN, pattern6);
  81.                         if (ea > end_ea || ea == BADADDR)
  82.                                 break;
  83.                         Message("Found pattern6 at 0x%X\n", ea);
  84.                         patch_word(ea, 0x0B0F);                                       
  85.                         patch_dword(ea + 2, 0x90909090);       
  86.                         current_ea = ea + 1;
  87.                 }
  88.                 current_ea = start_ea;
  89.                 auto pattern7 = "3C E9";
  90.                 while (1)
  91.                 {
  92.                         ea = find_binary(current_ea, SEARCH_DOWN, pattern7);
  93.                         if (ea > end_ea || ea == BADADDR)
  94.                                 break;
  95.                         Message("Found pattern7 at 0x%X\n", ea);
  96.                         patch_word(ea + 2, 0x0B0F);                                // ud2
  97.                         patch_word(ea + 4, 0x9090);                                // nop
  98.                         current_ea = ea + 1;
  99.                 }
  100.         }
  101.         patch_word(0x413824, 0x0B0F);
  102.         patch_word(0x41669E, 0x0B0F);
  103.         patch_word(0x41878D, 0x0B0F);
  104.         patch_qword(0x41878F, 0x9090909090909090);
  105.         patch_byte(0x418797, 0x90);       
  106.         Message("Finished.\n");
  107. }
复制代码
运行脚本后,将patch后文件保存为re-new1.exe,IDA打开此文件后,发现大部分函数已经被识别出来:

 
 
手工把剩下没有自动识别成函数的位置按P键生成函数,至此我们完全实现了语法解肴杂:

 
   

    三、 去除语义肴杂


从start函数中,不难发现sub_4098F0为main函数,F5反编译代码如下:

 
可以发现程序还黑白常难以阅读,不外此时笔者发现下面区域的字节都是固定常数0-9:

 
    交叉引用发现它们只被读而没被写,因此可以分别重命名为byte0-9:



    重新分析反编译代码,发现它们被用来实现语法肴杂,例如155行的条件分支永远为真,v147永远为0等。因此我们可以考虑把对这些常量的引用的指令酿成对常数引用的指令,利用IDA的优化来去除这些永真永假跳转。
    以byte0为例,其指令情势为movsx   ecx/eax/edx, cs:byte0,占7个字节,我们可以将其改为mov     ecx/eax/edx, 0(占5个字节),再填充2字节的nop指令,对byte0-byte9使用idc脚本去除肴杂,代码如下:
  1. #include <idc.idc>
  2. static main()
  3. {
  4.     auto seg, current_ea, mnemonic, op1, op2;
  5.     // 遍历所有段
  6.     for (seg = get_first_seg(); seg != BADADDR; seg = get_next_seg(seg))
  7.     {
  8.         auto seg_name = get_segm_name(seg);
  9.         // 检查段名是否符合要求
  10.         if (seg_name != ".text" && seg_name != "UPX0")
  11.         {
  12.             //Message("跳过段: %s (0x%X)\n", seg_name, seg);
  13.             continue;
  14.         }
  15.         Message("正在处理段: %s (0x%X)\n", seg_name, seg);
  16.         // 获取段的起始和结束地址
  17.         auto start_ea = seg;
  18.         auto end_ea = get_segm_end(seg);
  19.         // 遍历段中的每一条指令
  20.         current_ea = start_ea;
  21.         while (current_ea < end_ea && current_ea != BADADDR)
  22.         {
  23.             // 获取指令的助记符和操作数
  24.             mnemonic = print_insn_mnem(current_ea);
  25.             op1 = print_operand(current_ea, 0);
  26.             op2 = print_operand(current_ea, 1);
  27.             // 检查是否是目标指令
  28.             if (mnemonic == "movsx" && op2 == "cs:byte0")
  29.             {
  30.                 Message("Target Ins at: 0x%X\n", current_ea);
  31.                 if (op1 == "eax")
  32.                 {
  33.                     patch_byte(current_ea, 0xB8);       // mov eax, imm32 的操作码
  34.                 }
  35.                 else if (op1 == "ecx")
  36.                 {
  37.                     patch_byte(current_ea, 0xB9);       // mov ecx, imm32 的操作码
  38.                 }
  39.                 else if (op1 == "edx")
  40.                 {
  41.                     patch_byte(current_ea, 0xBA);       // mov edx, imm32 的操作码
  42.                 }
  43.                 // 设置 imm32 = 0
  44.                 patch_dword(current_ea + 1, 0);      // imm32 = 0
  45.                 patch_word(current_ea + 5, 0x9090);        // nop
  46.                 create_insn(current_ea);             // 重新分析指令
  47.             }
  48.             // 检查是否是目标指令
  49.             if (mnemonic == "movsx" && op2 == "cs:byte1")
  50.             {
  51.                 Message("Target Ins at: 0x%X\n", current_ea);
  52.                 if (op1 == "eax")
  53.                 {
  54.                     patch_byte(current_ea, 0xB8);       // mov eax, imm32 的操作码
  55.                 }
  56.                 else if (op1 == "ecx")
  57.                 {
  58.                     patch_byte(current_ea, 0xB9);       // mov ecx, imm32 的操作码
  59.                 }
  60.                 else if (op1 == "edx")
  61.                 {
  62.                     patch_byte(current_ea, 0xBA);       // mov edx, imm32 的操作码
  63.                 }
  64.                 // 设置 imm32 = 1
  65.                 patch_dword(current_ea + 1, 1);      // imm32 = 1
  66.                 patch_word(current_ea + 5, 0x9090);        // nop
  67.                 create_insn(current_ea);             // 重新分析指令
  68.             }
  69.             // 检查是否是目标指令
  70.             if (mnemonic == "movsx" && op2 == "cs:byte2")
  71.             {
  72.                 Message("Target Ins at: 0x%X\n", current_ea);
  73.                 if (op1 == "eax")
  74.                 {
  75.                     patch_byte(current_ea, 0xB8);       // mov eax, imm32 的操作码
  76.                 }
  77.                 else if (op1 == "ecx")
  78.                 {
  79.                     patch_byte(current_ea, 0xB9);       // mov ecx, imm32 的操作码
  80.                 }
  81.                 else if (op1 == "edx")
  82.                 {
  83.                     patch_byte(current_ea, 0xBA);       // mov edx, imm32 的操作码
  84.                 }
  85.                 // 设置 imm32 = 2
  86.                 patch_dword(current_ea + 1, 2);      // imm32 = 2
  87.                 patch_word(current_ea + 5, 0x9090);        // nop
  88.                 create_insn(current_ea);             // 重新分析指令
  89.             }
  90.             // 检查是否是目标指令
  91.             if (mnemonic == "movsx" && op2 == "cs:byte3")
  92.             {
  93.                 Message("Target Ins at: 0x%X\n", current_ea);
  94.                 if (op1 == "eax")
  95.                 {
  96.                     patch_byte(current_ea, 0xB8);       // mov eax, imm32 的操作码
  97.                 }
  98.                 else if (op1 == "ecx")
  99.                 {
  100.                     patch_byte(current_ea, 0xB9);       // mov ecx, imm32 的操作码
  101.                 }
  102.                 else if (op1 == "edx")
  103.                 {
  104.                     patch_byte(current_ea, 0xBA);       // mov edx, imm32 的操作码
  105.                 }
  106.                 // 设置 imm32 = 3
  107.                 patch_dword(current_ea + 1, 3);      // imm32 = 3
  108.                 patch_word(current_ea + 5, 0x9090);        // nop
  109.                 create_insn(current_ea);             // 重新分析指令
  110.             }
  111.             // 检查是否是目标指令
  112.             if (mnemonic == "movsx" && op2 == "cs:byte4")
  113.             {
  114.                 Message("Target Ins at: 0x%X\n", current_ea);
  115.                 if (op1 == "eax")
  116.                 {
  117.                     patch_byte(current_ea, 0xB8);       // mov eax, imm32 的操作码
  118.                 }
  119.                 else if (op1 == "ecx")
  120.                 {
  121.                     patch_byte(current_ea, 0xB9);       // mov ecx, imm32 的操作码
  122.                 }
  123.                 else if (op1 == "edx")
  124.                 {
  125.                     patch_byte(current_ea, 0xBA);       // mov edx, imm32 的操作码
  126.                 }
  127.                 // 设置 imm32 = 4
  128.                 patch_dword(current_ea + 1, 4);      // imm32 = 4
  129.                 patch_word(current_ea + 5, 0x9090);        // nop
  130.                 create_insn(current_ea);             // 重新分析指令
  131.             }
  132.             // 检查是否是目标指令
  133.             if (mnemonic == "movsx" && op2 == "cs:byte5")
  134.             {
  135.                 Message("Target Ins at: 0x%X\n", current_ea);
  136.                 if (op1 == "eax")
  137.                 {
  138.                     patch_byte(current_ea, 0xB8);       // mov eax, imm32 的操作码
  139.                 }
  140.                 else if (op1 == "ecx")
  141.                 {
  142.                     patch_byte(current_ea, 0xB9);       // mov ecx, imm32 的操作码
  143.                 }
  144.                 else if (op1 == "edx")
  145.                 {
  146.                     patch_byte(current_ea, 0xBA);       // mov edx, imm32 的操作码
  147.                 }
  148.                 // 设置 imm32 = 5
  149.                 patch_dword(current_ea + 1, 5);      // imm32 = 5
  150.                 patch_word(current_ea + 5, 0x9090);        // nop
  151.                 create_insn(current_ea);             // 重新分析指令
  152.             }
  153.             // 检查是否是目标指令
  154.             if (mnemonic == "movsx" && op2 == "cs:byte6")
  155.             {
  156.                 Message("Target Ins at: 0x%X\n", current_ea);
  157.                 if (op1 == "eax")
  158.                 {
  159.                     patch_byte(current_ea, 0xB8);       // mov eax, imm32 的操作码
  160.                 }
  161.                 else if (op1 == "ecx")
  162.                 {
  163.                     patch_byte(current_ea, 0xB9);       // mov ecx, imm32 的操作码
  164.                 }
  165.                 else if (op1 == "edx")
  166.                 {
  167.                     patch_byte(current_ea, 0xBA);       // mov edx, imm32 的操作码
  168.                 }
  169.                 // 设置 imm32 = 6
  170.                 patch_dword(current_ea + 1, 6);      // imm32 = 6
  171.                 patch_word(current_ea + 5, 0x9090);        // nop
  172.                 create_insn(current_ea);             // 重新分析指令
  173.             }
  174.             // 检查是否是目标指令
  175.             if (mnemonic == "movsx" && op2 == "cs:byte7")
  176.             {
  177.                 Message("Target Ins at: 0x%X\n", current_ea);
  178.                 if (op1 == "eax")
  179.                 {
  180.                     patch_byte(current_ea, 0xB8);       // mov eax, imm32 的操作码
  181.                 }
  182.                 else if (op1 == "ecx")
  183.                 {
  184.                     patch_byte(current_ea, 0xB9);       // mov ecx, imm32 的操作码
  185.                 }
  186.                 else if (op1 == "edx")
  187.                 {
  188.                     patch_byte(current_ea, 0xBA);       // mov edx, imm32 的操作码
  189.                 }
  190.                 // 设置 imm32 = 7
  191.                 patch_dword(current_ea + 1, 7);      // imm32 = 7
  192.                 patch_word(current_ea + 5, 0x9090);        // nop
  193.                 create_insn(current_ea);             // 重新分析指令
  194.             }
  195.             // 检查是否是目标指令
  196.             if (mnemonic == "movsx" && op2 == "cs:byte8")
  197.             {
  198.                 Message("Target Ins at: 0x%X\n", current_ea);
  199.                 if (op1 == "eax")
  200.                 {
  201.                     patch_byte(current_ea, 0xB8);       // mov eax, imm32 的操作码
  202.                 }
  203.                 else if (op1 == "ecx")
  204.                 {
  205.                     patch_byte(current_ea, 0xB9);       // mov ecx, imm32 的操作码
  206.                 }
  207.                 else if (op1 == "edx")
  208.                 {
  209.                     patch_byte(current_ea, 0xBA);       // mov edx, imm32 的操作码
  210.                 }
  211.                 // 设置 imm32 = 8
  212.                 patch_dword(current_ea + 1, 8);      // imm32 = 0
  213.                 patch_word(current_ea + 5, 0x9090);        // nop
  214.                 create_insn(current_ea);             // 重新分析指令
  215.             }
  216.             // 检查是否是目标指令
  217.             if (mnemonic == "movsx" && op2 == "cs:byte9")
  218.             {
  219.                 Message("Target Ins at: 0x%X\n", current_ea);
  220.                 if (op1 == "eax")
  221.                 {
  222.                     patch_byte(current_ea, 0xB8);       // mov eax, imm32 的操作码
  223.                 }
  224.                 else if (op1 == "ecx")
  225.                 {
  226.                     patch_byte(current_ea, 0xB9);       // mov ecx, imm32 的操作码
  227.                 }
  228.                 else if (op1 == "edx")
  229.                 {
  230.                     patch_byte(current_ea, 0xBA);       // mov edx, imm32 的操作码
  231.                 }
  232.                 // 设置 imm32 = 9
  233.                 patch_dword(current_ea + 1, 9);      // imm32 = 9
  234.                 patch_word(current_ea + 5, 0x9090);        // nop
  235.                 create_insn(current_ea);             // 重新分析指令
  236.             }
  237.             // 移动到下一条指令(避免死循环)
  238.             auto next_ea = next_head(current_ea, end_ea);
  239.             if (next_ea == BADADDR || next_ea <= current_ea)
  240.                 break;
  241.             current_ea = next_ea;
  242.         }
  243.     }
  244.     Message("Finished.\n");
  245. }
复制代码
最终程序输出为79 bc,这表明我们的命令行第二个参数内容为"79BC"即可

   
    四、 输出结果


    结合上述分析,我们得到了获取flag的步骤:

  •             打开一个新历程(例如notepad.exe),获取其PID。        
  •             运行原始的re.exe,参数为79BC PID。        

 

    运行后得到结果flag{MjExNTY3MzE3NTQzMjI=}。
   
    五、 总结


   

    行文至此,笔者不禁再次感叹这道题目的精妙之处——它在多个层面上都运用了奇妙的肴杂技术:从表面上看,题目伪装成被虚拟机大量保护的程序,与解题者展开心理博弈;在内部实现上,则采用了大量花指令进行语法肴杂,并通过引入常量运算和函数运算得到固定结果、增长永真永假分支、函数多次跳转、包装体系API等手段进行语义肴杂。此外,题目还运用了自创的虚拟化技术对关键运算函数进行肴杂,并针对硬件断点实行了反调试步伐。在逻辑分析层面,选手需要绕过反调试机制获取异或数组、运用爆破头脑,并输入一个历程PID作为条件。总体而言,这道题目在设计和实现上都堪称优秀。
   
    然而,笔者也以为这道题目也存在肯定的不足之处,即它更得当出如今时间更为充裕的竞赛中。在初赛阶段,其性价比相对较低,大概无法充分发挥其应有的挑战性和价值。
   

   


免责声明:如果侵犯了您的权益,请联系站长,我们会及时删除侵权内容,谢谢合作!更多信息从访问主页:qidao123.com:ToB企服之家,中国第一个企服评测及商务社交产业平台。

本帖子中包含更多资源

您需要 登录 才可以下载或查看,没有账号?立即注册

x
回复

使用道具 举报

0 个回复

倒序浏览

快速回复

您需要登录后才可以回帖 登录 or 立即注册

本版积分规则

涛声依旧在

金牌会员
这个人很懒什么都没写!
快速回复 返回顶部 返回列表