该文被密码保护。 阅读全文
posted @ 2009-12-29 14:00 Dragon.Spirit 阅读(1) 评论(0) 推荐(0) 编辑
摘要: 现在越来越多的人开始学习缓冲区溢出方面的原理和应用,这是一件好事,我们在使用别人写的Exploit去Hacker这儿Hacker那儿的时候,应该努力做到知其然,知其所以然。但是很多人在看了几篇即使是看上去很简单的栈溢出方面的文章后便敲起了退堂鼓,因为通篇大量gdb调试的命令和汇编代码让学习看上去变得枯燥无比,但是这方面知识的学习就是这样的。我写这篇文章的目的是总结一下在漏洞发掘中常用的一些gdb命... 阅读全文
posted @ 2009-09-14 01:33 Dragon.Spirit 阅读(265) 评论(0) 推荐(0) 编辑
摘要: MySQL 存取控制包含2个阶段: 阶段1:服务器检查是否允许你连接。阶段2:假定你能连接,服务器检查你发出的每个请求。看你是否有足够的权限实施它。例如,如果你从数据库表中选择(select)行或从数据库删除表,服务器确定你对表有SELECT权限或对数据库有DROP权限。 参考 : 5.8. MySQL用户账户管理 1.权限查看Code highlighting produced by Actip... 阅读全文
posted @ 2009-09-02 22:10 Dragon.Spirit 阅读(199) 评论(0) 推荐(0) 编辑
摘要: 转载自http://bbs2.chinaunix.net/viewthread.php?tid=235728[版本] -0.13 [声明] 这篇文档是我的关于gcc参数的笔记,我很怀念dos年代我用小本子,纪录所有的dos 命令的参数.哈哈,下面的东西可能也不是很全面,我参考了很多的书,和gcc的帮助.不全的原因是,有可能我还没有看到这个参数,另一种原因是,我可能还不会用它 不过,我会慢慢的补齐的... 阅读全文
posted @ 2009-08-31 16:22 Dragon.Spirit 阅读(194) 评论(0) 推荐(0) 编辑
摘要: # apt-cache search linux-image|awk '{print $1}' linux-headers-2.6.24-etchnhalf.1-486 linux-headers-2.6.24-etchnhalf.1-686 linux-headers-2.6.24-etchnhalf.1-686-bigmem linux-headers-2.6.24-etchnhalf.1-a... 阅读全文
posted @ 2009-08-06 19:29 Dragon.Spirit 阅读(401) 评论(1) 推荐(0) 编辑
摘要: 安装jdk448 wget http://down1.chinaunix.net/distfiles/jdk-1_5_0_06-linux-i586.bin451 chmod 755 jdk-1_5_0_06-linux-i586.bin 452 ./jdk-1_5_0_06-linux-i586.bin在/etc/profile最后加上:export J2REDIR=/usr/local/jdk... 阅读全文
posted @ 2009-07-23 16:53 Dragon.Spirit 阅读(909) 评论(0) 推荐(0) 编辑
摘要: (1)检查有没有安装gcc可以通过which gcc或者whereis gcc查看。发现已安装(2)安装内核头文件内核头文件默认是会安装到/usr/src目录下。ls /usr/src查看发现目录为空,即没有安装。hohoer@debian:~$ ls /cdromhohoer@debian:~$ mount /cdrommount: block device /dev/hdc is write-... 阅读全文
posted @ 2009-07-22 17:45 Dragon.Spirit 阅读(449) 评论(0) 推荐(0) 编辑
摘要: #unrar x -ab ****.rar debian:/home/chenxfei/Desktop# unrar x -ab test.rarUNRAR 3.51 freeware Copyright (c) 1993-2005 Alexander RoshalExtracting from test.rarCreating cs8900 OKExtracting cs8900/cs8900.... 阅读全文
posted @ 2009-07-20 10:56 Dragon.Spirit 阅读(248) 评论(0) 推荐(0) 编辑
摘要: http://www.axigen.com/usr/files/axigen-7.1.3/Axigen-7.1.3.msi 阅读全文
posted @ 2009-07-03 16:11 Dragon.Spirit 阅读(138) 评论(0) 推荐(0) 编辑
摘要: Debian 4.0 编译内核 2.6.27.6 1、如果安装Debian 4.0基本系统(不带GUI),执行如下命令(在超级用户下): apt-get install build-essential libncurses5-dev initrd-tools build-essential是编译内核要用到的工具。 ncurse-dev是执行build menuconfig要用到的。 initr... 阅读全文
posted @ 2009-07-03 15:15 Dragon.Spirit 阅读(253) 评论(0) 推荐(0) 编辑