首页
社区
课程
招聘
怎样用Armadillo.exe给程序加带cc和iat远距离跳的壳啊?
发表于: 2004-9-6 18:06 5775

怎样用Armadillo.exe给程序加带cc和iat远距离跳的壳啊?

2004-9-6 18:06
5775
怎样用Armadillo.exe给程序加带cc和iat远距离跳的壳啊?用什么选项啊,我的英文太差,试了好多次,也没试出来,谢谢那位知道的大侠告诉我一下。

[培训]内核驱动高级班,冲击BAT一流互联网大厂工作,每周日13:00-18:00直播授课

收藏
免费 1
支持
分享
最新回复 (8)
雪    币: 282
活跃值: (233)
能力值: ( LV9,RANK:210 )
在线值:
发帖
回帖
粉丝
2
自己顶一下,谢谢!!!
2004-9-7 18:57
0
雪    币: 220
活跃值: (116)
能力值: ( LV6,RANK:90 )
在线值:
发帖
回帖
粉丝
3
我也想知道,是不是使用Secured sections???
2004-9-8 13:07
0
雪    币: 220
活跃值: (116)
能力值: ( LV6,RANK:90 )
在线值:
发帖
回帖
粉丝
4
Using Secured Section Markers With C or C++
Previous  Top  Next  

C (and by extension C++) was designed for low-level access, making it very easy to "mark" a section. Simply copy the SecuredSections.h file (provided with Armadillo, in the SecuredSections\C directory under the main Armadillo directory) to your "include" directory (or your program directory, if you wish), include it, and use the macros that it defines (SECUREBEGIN and SECUREEND) around the sections of code that you want to mark. For example, in the following console-mode program, the first and last lines will always be printed, but the middle ones will only appear if the appropriate SECUREBEGIN group is enabled:

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "SecuredSections.h"

void main(void) {
    printf("This is a test program.\n");

    SECUREBEGIN;
    printf("This line will only be printed if the SECUREBEGIN group is active.\n");
    SECUREEND;

    SECUREBEGIN_A;
    printf("This line is only active when the SECUREBEGIN_A group is.\n");
    SECUREEND;

    SECUREBEGIN;
    printf("Notice that you can have multiple secured sections in each group!\n");
    SECUREEND;

    printf("End of test!\n");
};

You can also use SECUREBEGIN_A, SECUREBEGIN_B, or SECUREBEGIN_C in place of SECUREBEGIN. These mark the different "groups" of sections. You can use SECUREEND on any and all of these, although we define SECUREEND_A etceteras as well.
2004-9-8 13:09
0
雪    币: 282
活跃值: (233)
能力值: ( LV9,RANK:210 )
在线值:
发帖
回帖
粉丝
5
jingulong 斑竹一定知道,他不光会给程序加带cc和iat远距离跳的壳,而且早已经能脱最新版的Armadillo.exe,就是没写出来,写出来给大家讲讲吗!!!
2004-9-9 01:22
0
雪    币: 221
活跃值: (55)
能力值: ( LV4,RANK:50 )
在线值:
发帖
回帖
粉丝
6
诶~~
这个就不好说什么了
China~
2004-9-9 11:04
0
雪    币: 200
活跃值: (10)
能力值: ( LV2,RANK:10 )
在线值:
发帖
回帖
粉丝
7
em...actually i also interested in knowing how to inject the secure section to the exe...without include the header of secure section to the code like aerror post..

i would like to know how to inject secure section to compiled exe.

btw anyone how to fix nanomites of armadillo? .. i read ricardo..but not quite understand...
2004-9-9 12:18
0
雪    币: 427
活跃值: (412)
能力值: ( LV2,RANK:10 )
在线值:
发帖
回帖
粉丝
8
又是一个口说大陆式英文的中国人,装什么装,是国人就说国语。
2004-9-9 12:56
0
雪    币: 200
活跃值: (10)
能力值: ( LV2,RANK:10 )
在线值:
发帖
回帖
粉丝
9
...i'm chinese but i'm not from China....

btw China got "you" this kind of people is really sad....
2004-9-9 18:33
0
游客
登录 | 注册 方可回帖
返回