编辑修改程序导入表,增加自定义DLL PE-inject is a special library which allows developers to place their own code into Windows executable files (EXE, DLL, OCX and others). PE-inject was designed to be as simple as possible, to make modification of executables (so called PE-files) as easy as writing a "Hello world!" program. The knowledge of Assembler and Windows PE-EXE file format, which was essential before PE-inject came, is no longer required. To inject your code into foreign executables you only need to make a DLL file with functions you want to inject into PE file, call PE-inject function to place the DLL into the executable and the file is injected. From now on, everytime you run the executable, the injected code will be run first and after it finishes, the old application code will start. PE-inject doesn't need to write any data to harddrive, like some other solutions do. Therefore it can be also used for applications which require highest security, like PE-protection engines. From EXE password protectors, through PE compressors to PE anti-cracking protectors, everything is easy to implement. PE-inject has a really well designed interface, which allows you to use it for almost any purpose related with injection of code into PE-files. Even a virus-like code is possible!
2021-10-09 10:56:16 303KB pe-inject
1
Spring 依赖的 javax.inject.Provider
2021-09-13 12:35:08 953KB javax.inject.Provider
1
Location-cleaned iOS 驱动 14.7.zip
2021-08-11 14:13:47 19.13MB inject.dmg
1
DLL注入有很多方法,远线程,钩子,输入法,劫持,APC等等。 现在的好多进程都有保护,特别是一些游戏有各种保护如TP TS HS NP CD GPK BE SG3等等保护,这样常规的注入方法就没效果了。 现在流行且稳定的注入方法一般都要用驱动来实现了,驱动注入,APC,回调等都可以用驱动注入。
1
Location-cleaned使用的driver ,适配ios14.6,亲测可用
2021-07-08 21:13:47 19.12MB Location-cleaned inject.dmg
1
重写注入 这是创客学院的第二个周末挑战。 目的是重写数组类的注入方法。 引用 ,注入适用于其他可枚举,然而,这里的重点在于数组。 ###核心任务由制造商提供 重新打开 Array 类或子类并重写注入方法。 首先为它编写一个测试。 不要担心返回枚举器,假设总是给出一个块 为您的方法命名不同,因为 rspec 在内部使用 inject() ,因此除非您的注入实现完美,否则测试将失败并显示奇怪的消息。 如果您想要挑战,请使用迭代器和递归重写两次注入(尽管两者都不需要通过测试)。 ###基本功能 使用起始“累加器”值注入初始化。 这默认为数组中的第一项,但可以采用预设值(例如零)。 Inject 然后将遍历数组中的每个(后续)元素,并对由块定义的每次迭代执行计算(例如,累加器可以由被调用的元素递增)。 然后重置累加器值以从该计算中获取返回值。 下面复制一个例子,它会处理所有元素的总和并取零
2021-07-05 13:06:12 3KB Ruby
1
精灵文件注入 操作系统大作业 ⁠描述: 在Linux中修改一个现有的elf插入程序(替代没有源代码!例如如vi或其他如何自己编写的替换程序)。让该程序运行后先执行一个特别的附件功能(附加功能是:创建或注意:附加功能嵌入到原来的程序中,不是一个独立的程序!要求了解elf文件格式,另外建议使用汇编编程。 操作流程 测试用例介绍: 本elf注入的功能是在elf文件执行前,生成helloworld文件并写入内容:helloworld,之后再执行原elf文件功能 gcc main.c -o main # 生成注入函数 # 测试文件功能:打印 This is the program, whick will be injected.\n gcc test.c -o test # 生成测试elf文件 ./main test # elf注入 ./test # 执行注入后的elf文件 main.c中
2021-06-24 20:03:32 3.36MB 系统开源
1
####Task_1, Week_2 在 Makers Academy 目标是使用两种方法重写 Array 类的 Inject 方法: 使用迭代器 使用递归 为了解决这个问题,我为解决问题的两种方法创建了两个单独的测试文件。 在 irb 中运行我的注入: require './lib/my_inject_recusion' require './lib/my_inject_iterator'
2021-06-22 15:05:02 5KB Ruby
1
SQL 插入漏洞对网页应用会产生极大的伤害,恶意的使用者可以因此检视、删除数据或数据表,或是取得服务器的存取权限,SQL Inject-Me 就是用来测试有无SQL 插入漏洞的外挂.
2021-06-18 15:41:32 246KB SQL注入 firefox插件
1
防内存注入测试文件,可以简单测试android APP是否做了保护,包含文件INJECT和libInjectModule.so
2021-06-17 08:59:37 12KB inject
1