Welcome![Sign In][Sign Up]
Location:
Search - IDT

Search list

[Hook apiidt_src

Description: 键盘的IDT hook范例,学习rootkit的好教程!-keyboard hook IDT example, a good learning rootkit Guide!
Platform: | Size: 145256 | Author: luocong | Hits:

[Software Engineeringfifo2.pdf

Description: 以TI公司的DSP芯片TMS32OC6204为例,结合IDT公司的先进先出缓存芯片IDT72V3640,介绍了其扩展总线XB在DMA控制下对FIFO进行读写,以实现对图像的实时采集、处理。 -to TI's DSP TMS32OC6204 example, The combined company IDT FIFO-chip cache IDT72V3640. on the expansion of the bus XB under the control of DMA FIFO read, write, in order to achieve the real-time image acquisition, handle.
Platform: | Size: 248176 | Author: 权溪 | Hits:

[Other resourceIEC_61970-301-20031125

Description: Idt IEC 61970-301 第301 篇:公共信息模型(CIM)基础 中文文档-Idt IEC 61970-301 No. 301 : Common Information Model (CIM) infrastructure in Chinese Documents
Platform: | Size: 1015517 | Author: 凤凰竹 | Hits:

[Otherapic_keyboard

Description: 键盘过滤驱动程序。直接修改IDT
Platform: | Size: 188571 | Author: wzk | Hits:

[OtherexecRing0CodebyAnyUserMode

Description: 众所周知在非 Admin 用户模式下,是不允许加载驱动执行 RING 0 代码的。 本文提供了一种方法,通过修改系统 GDT,IDT 来添加自己的 CALLGATE 和 INTGATE 这样便在系统中设置了一个后门。我们就可以利用这个后门 在任意用户模式下执行 ring 0 代码了。为了保证我们添加的 CALLGATE 和 INT GATE 永久性。可以在第一次安装时利用 SERVICE API 或 INF 文件设置成随 系统启动。不过此方法也有个缺陷,就是在第一次安装 CALLGATE 或 INTGATE 时仍然需要 ADMIN 权限。下面分别给出了添加 CALLGATE 与 INTGATE 的具体 代码。
Platform: | Size: 4322 | Author: Michael | Hits:

[Driver DevelopIDTGuard

Description: IDT Hook 检测及恢复 此程序在 Ring3 下打开物理内存对象取得当前内存中的 IDT,再用打开对应的原始内核文件进行比较。带恢复功能。 此程序适用于 XP/2003。采用特征码搜索方式查找。注释详细,代码规范
Platform: | Size: 6505 | Author: 张京 | Hits:

[USB developusb_chip_datasheet

Description: Samsung公司的部分datasheet IDT公司的部分datasheet Intel公司的部分datasheet AMCC公司的部分datasheet AMD公司的部分datasheet
Platform: | Size: 12267889 | Author: Randolph Chen | Hits:

[Hook apikeyboardhook

Description: 利用hook idt技术,截取键盘记录,并提供读取记录接口
Platform: | Size: 13161 | Author: zh | Hits:

[GUI DevelopgetRing0

Description: Windows NT/2000/XP/Server 2003 获取Ring0的便捷工具 程序创建了几个段: IDT,GDT,SSDT,Linear 为创建Ring3,Ring0之间的互交便捷
Platform: | Size: 1464 | Author: peacekeep | Hits:

[Other resourceAN06SW

Description: 外部SRAM与C8051F000接口 Copyright (C) 2000 CYGNAL INTEGRATED PRODUCTS, INC. All rights reserved. FILE NAME : Sram.ASM TARGET MCU : C8051F000 DESCRIPTION : External Sram read/write verification routine for IDT 71V124SA.-external SRAM interface with the C8051F000 Copyright (C) 2000 CYGNAL INTEGRATED PRODUCTS, INC. All rights reserved. FILE NAME : MCU Sram.ASM TARGET : C8051F000 DESCRIPTION : External Sram read / write verification routine for IDT 71V124SA.
Platform: | Size: 2356 | Author: 王培明 | Hits:

[Hook apiHOOK了所有中断向量的rootkit

Description: 代码hook了所有256个中断向量,在debdgview下打印输出了中断历程,使用是请加载.sys驱动程序,具体代码请看.c文件
Platform: | Size: 33978 | Author: happyforall | Hits:

[ELanguagepl/0

Description: /*PL/0编译系统C版本头文件pl0.h*/ /* typedef enum { false, true } bool; */ #define norw 13 /*关键字个数*/ #define txmax 100 /*名字表容量*/ #define nmax 14 /*number的最大位数*/ #define al 10 /*符号的最大长度*/ #define amax 2047 /*地址上界*/ #define levmax 3 /*最大允许过程嵌套声明层数[0,levmax]*/ #define cxmax 200 /*最多的虚拟机代码数*/ /*符号*/ enum symbol{ nul, ident, number, plus, minus, times, slash, oddsym, eql, neq, lss, leq, gtr, geq, lparen, rparen, comma, semicolon, period, becomes, beginsym, endsym, ifsym, thensym, whilesym, writesym, readsym, dosym, callsym, constsym, varsym, procsym, }; #define symnum 32 /*名字表中的类型*/ enum object{ constant, variable, procedur, }; /*虚拟机代码*/ enum fct{ lit, opr, lod, sto, cal, inte, jmp, jpc, }; #define fctnum 8 /*虚拟机结构代码*/ struct instruction { /*454*/ enum fct f; // 虚拟机代码指令 int l; //引用层与声明层的层次差 int a; //根据f的不同而不同 }; FILE * fas; //输出名字表 FILE * fa; //输出虚拟机代码 FILE * fa1; //输出源文件及其各行对应的首地址 FILE * fa2; //输出结果 bool listswitch; //显示虚拟机代码与否 bool tableswitch; //显示名字与否 char ch; //获取字符的缓冲区,getch使用 enum symbol sym; //当前的符号 char id[al+1]; //当前ident,多出的一个字节用于存放0 int num; //当前number int cc,ll; //getch使用的计数器,cc表示当前字符(ch)的位置 int cx; //虚拟机代码指针,取值范围[0,cxmax-1] char line[81]; //读取行缓冲区 char a[al+1]; //临时符号,多出的一个字节用于存放0 struct instruction code[cxmax]; //存放虚拟机代码的数组 char word[norw][al]; //保留字 enum symbol wsym[norw]; //保留字对应的符号值 enum symbol ssym[256]; //单字符的符号值 char mnemonic[fctnum][5]; //虚拟机代码指令名称 bool declbegsys[symnum]; //表示声明开始的符号集合 bool statbegsys[symnum]; //表示语句开始的符号集合 bool facbegsys[symnum]; //表示因子开始的符号集合 //名字表结构 struct tablestruct { char name[al]; //名字 enum object kind; //类型:const,var,array or procedure int val; //数值,仅const使用 int level; //所须层,仅const不能用 int adr; //地址,仅const不能用 int size; //需要分配的数据空间,仅procedure使用 }; struct tablestruct table[txmax]; //名字表 FILE * fin; FILE * fout; char fname[al]; int err; //错误计数器 //当函数中发生fatal error时,返回-1告知调用它的函数,最终退出程序 #define getsymdo if(-1==getsym()) return -1 #define getchdo if(-1==getch()) return -1 #define testdo(a,b,c) if(-1==test(a,b,c)) return -1 #define gendo(a,b,c) if(-1==gen(a,b,c)) return -1 #define expressiondo(a,b,c) if(-1==expression(a,b,c)) return -1 #define factordo(a,b,c) if(-1==factor(a,b,c)) return -1 #define termdo(a,b,c) if(-1==term(a,b,c)) return -1 #define conditiondo(a,b,c) if(-1==condition(a,b,c)) return -1 #define statementdo(a,b,c) if(-1==statement(a,b,c)) return -1 #define constdeclarationdo(a,b,c) if(-1==constdeclaration(a,b,c)) return -1 #define vardeclarationdo(a,b,c) if(-1==vardeclaration(a,b,c)) return -1 void error(int n); int getsym(); int getch(); void init(); int gen(enum fct x,int y ,int z); int test(bool *s1,bool *s2,int n); int inset(int e,bool *s); int addset(bool *str,bool * s1,bool * s2,int n); int subset(bool *str,bool * s1,bool * s2,int n); int mulset(bool *str,bool * s1,bool * s2,int n); int block(int lev,int tx,bool * fsys); void interpret(); int factor(bool * fsys,int * ptx,int lev); int term(bool * fsys,int * ptx,int lev); int condition(bool * fsys,int * ptx,int lev); int expression(bool * fsys,int * ptx,int lev); int statement(bool * fsys,int * ptx,int lev); void listcode(int cx0); int vardeclaration(int *ptr, int lev,int *ptx); int constdeclaration(int *ptr, int lev,int *ptx); int position(char * idt,int tx); void enter(enum object k,int * ptx,int lev, int * pdx); int base(int l,int * s,int b)
Platform: | Size: 25139 | Author: xqq771084591 | Hits:

[VHDL-FPGA-Verilog70V631_VHDL_Model.zip

Description: 针对IDT公司71v631的fpga设计,VHDL语言模型。
Platform: | Size: 5294 | Author: lixbggbb | Hits:

[SourceCodekeyboard log

Description: 键盘过滤驱动程序。直接修改IDT-Keyboard filter driver. Directly modify the IDT
Platform: | Size: 400028 | Author: hyboo@sohu.com | Hits:

[Windows Developtaskmgr

Description: taskmgr就是任务管理器的源码也许好多人都有了^_^-taskmgr Task Manager is the source may have a lot of people _ ^ ^
Platform: | Size: 268288 | Author: 洛克 | Hits:

[Documentsafr

Description: 1. Create the Virus Program. * * 2. The Virus Modifies IDT to Get Ring0 Privilege.-1. Create the Virus Program.** 2. The Virus Modifies IDT to Get Ring0 Privilege.
Platform: | Size: 28672 | Author: 王鹏 | Hits:

[SCMAN06SW

Description: 外部SRAM与C8051F000接口 Copyright (C) 2000 CYGNAL INTEGRATED PRODUCTS, INC. All rights reserved. FILE NAME : Sram.ASM TARGET MCU : C8051F000 DESCRIPTION : External Sram read/write verification routine for IDT 71V124SA.-external SRAM interface with the C8051F000 Copyright (C) 2000 CYGNAL INTEGRATED PRODUCTS, INC. All rights reserved. FILE NAME : MCU Sram.ASM TARGET : C8051F000 DESCRIPTION : External Sram read/write verification routine for IDT 71V124SA.
Platform: | Size: 2048 | Author: | Hits:

[CSharpi2c_32355 code

Description: 用于开发mips处理器idt 32355的源代码,测试通过-MIPS processor for the development of 32,355 Employing the source code, the test
Platform: | Size: 5120 | Author: shqk | Hits:

[CSharpi2c_32438_code

Description: i2c源代码,用于idt公司32438 mips处理器开发-i2c source code for the company Employing 32,438 MIPS processors
Platform: | Size: 4096 | Author: shqk | Hits:

[CSharp32438_bluetooth

Description: idt mips 32438上面实现的蓝牙模块驱动程序源文件-achieving above the Bluetooth module driver source
Platform: | Size: 12288 | Author: shqk | Hits:
« 1 2 34 5 6 7 8 »

CodeBus www.codebus.net