I. Introduction This code expLoits a previously undisclosed vulnerability in the bit string decoding code in the Microsoft ASN.1 library. This vulnerability is not related to the bit string vulnerability described in eEye advisory AD20040210-2. Both vulnerabilities were fixed in the MS04-007 patch. II. Screenshots $ ./kill-bill.pL . kill-bill : Microsoft ASN.1 remote expLoit for CAN-2003-0818 (MS04-007) by Solar Eclipse <solareclipse@phreedom.org> Usage: kill-bill -p <port> -s <service> host Services: iis IIS HTTP server (port 80) iis-ssl IIS HTTP server with SSL (port 443) exchange Microsoft Exchange SMTP server (port 25) smb-nbt SMB over NetBIOS (port 139) smb SMB (port 445) If a service is running on its default port you don t have to specify both the service and the port. ExampLes: kill-bill -s iis 192.168.0.1 kill-bill -p 80 192.168.0.1 kill-bill -p 1234 -s smb 192.168.0.1
标签: I. vulnerability Introduction undisclosed
上传时间: 2015-05-15
上传用户:xhz1993
c语言编译器arm-gen.c asmtest.S bcheck.c boundtest.c c67-gen.c Changelog coff.h configure COPYING elf.h [exampLes] float.h gcctestsuite.sh i386-asm.c i386-asm.h i386-gen.c il-gen.c il-opcodes.h libtcc.h libtcc1.c libtcc_test.c Makefile README stab.def stab.h stdarg.h stdbool.h stddef.h tcc-doc.html tcc-doc.texi tcc.1 tcc.c tccasm.c tcccoff.c tccelf.c tcclib.h tccpe.c tcctest.c tcctok.h texi2pod.pL tiny_impdef.c TODO varargs.h VERSION
标签: Changelog boundtest configure arm-gen
上传时间: 2014-01-16
上传用户:拔丝土豆
它是VC++6.0下面的一个项目,该目录包括pL/0编译器的源代码。 pL0/debug下面是已经编译成功的pL/0编译器:pL0.exe。该小编译器可以处理一些简单的 利用pL/0语言书写的程序。例如,pL0/debug下面的test.pL0就是一个简单的 pL/0 程序。 运行pL0.exe, 并把test.pL0提供给pL0.exe,处理结果将保存在test.out 中。 注:test.pL0 和 test.out 可以用Notepad(记事本)软件打开。
上传时间: 2015-06-02
上传用户:wangzhen1990
SimpLe SunpLus SP54 codec converter and a more pLayable mode MJPG. untar the archive go to the relevant directory to compile: just do make to install: with root account cp sp54convert /usr/local/bin to use: sp54convert infile outfile Enjoy !! Michel Xhaard <mxhaard@users.sourceforge.net> Till Adam <till@hubbahubba.de> Windows port: Piotr Pawlow <pp@siedziba.pL>
标签: converter the pLayable SunpLus
上传时间: 2013-12-30
上传用户:1079836864
系统前台利用可视化开发工具设计用户界面,使用ADO.NET(可选ODBC等)数据引擎来访问由Oracle设计的后台数据库。系统涵盖了用户注册、修改用户注册信息,添加数据、修改数据、删除数据等多项对数据库中数据的常规操作,系统还涉及对视图、索引、触发器等数据库对象的创建、管理以及维护等操作,以及利用pL/SQL语言进行程序设计、利用存储过程、系统函数完成数据库的高级操作。 本系统较为复杂,为了实现这一目标,把此项目分解成如下几个小项目,最后的作品分阶段作为平时成绩考核的依据之一。
上传时间: 2014-01-10
上传用户:tyler
vectline "vector field line pLotter" Depending on the dimension of coordinate axis, vectline can pLot both 3D and 2D vector field line.
标签: vectline coordinate Depending dimension
上传时间: 2014-01-11
上传用户:invtnewer
一个pL\X教学编译器IDE,带扩展文法;高亮语法编辑区实现;自带虚拟机执行环境。
上传时间: 2014-01-01
上传用户:zhliu007
The intended use of this help manual is a quick reference guide as it is not fully inclusive of all elements of the pL/SQL Programming Language. pLease refer to the pL/SQL User s Guide and Reference for more information.
标签: inclusive reference intended manual
上传时间: 2014-01-26
上传用户:lnnn30
O Reilly最新IT類書籍(1218) OReilly.Unix.in.a.Nutshell.4th.Edition OReilly.Mac.OS.X.Tiger.in.a.Nutshell OReilly.Monad OReilly.UML.2.0.in.a.Nutshell OReilly.Oracle.pL.SQL.for.DBAs OReilly.Open.Sources.2.0 OReilly.AppLied.Software.Project.Management
标签: Nutshell OReilly Edition Reilly
上传时间: 2013-12-21
上传用户:dancnc
词法分析器制作与应用 设计思想 (1)程序主体结构部分: 说明部分 %% 规则部分 %% 辅助程序部分 (2)主体结构的说明 在这里说明部分告诉我们使用的LETTER,DIGIT, IDENT(标识符,通常定义为字母开头的字母数字串)和STR(字符串常量,通常定义为双引号括起来的一串字符)是什么意思.这部分也可以包含一些初始化代码.例如用#include来使用标准的头文件和前向说明(forward ,references).这些代码应该再标记"%{"和"%}"之间 规则部分> 可以包括任何你想用来分析的代码 我们这里包括了忽略所有注释中字符的功能,传送ID名称和字符串常量内容到主调函数和main函数的功能. (3)实现原理 程序中先判断这个句语句中每个单元为关键字、常数、运算符、界符,对与不同的单词符号给出不同编码形式的编码,用以区分之。 pL/0语言的EBNF表示 <常量定义>::=<标识符>=<无符号整数> <标识符>::=<字母>={<字母>|<数字>} <加法运算符>::=+|- <乘法运算符>::=*|/ <关系运算符>::==|#|<|<=|>|>= <字母>::=a|b|…|X|Y|Z <数字>::=0|1|2|…|8|9
上传时间: 2015-11-04
上传用户:zhengzg