php创建多级目录
exchen 11年前 (2014-03-12) 4790浏览
function create_dir($path,$mode) { if (is_dir($path)){ //判断目录存在否,存在不创建 echo "目...
exchen's blog专注软件安全
exchen 11年前 (2014-03-12) 4790浏览
function create_dir($path,$mode) { if (is_dir($path)){ //判断目录存在否,存在不创建 echo "目...
exchen 11年前 (2014-03-11) 5009浏览
一.插入中文到数据库乱码 插入中文到数据库显示?号或者乱码,需要注意以下几点 1.php页面要保存为UTF-8的编码格式。 2.php在数据提交的是要用UTF8。 3.MYSQL创建表的时候要用ENGINE=MyISAM DEFAULT CHARSE...
exchen 11年前 (2014-03-07) 4486浏览
临时修改 root # ifconfig eth0 192.168.1.10 #设置ip root # route add default gw 192.168.1....
exchen 11年前 (2014-02-28) 4123浏览
mysql_connect() //连接MySQL服务器 mysql_select_db() //选择数据库文件 mysql_query() //执行SQL语句 mysql_fetch_array() ...
exchen 12年前 (2014-02-10) 5397浏览
mark一下! #include <windows.h> #include <WinInet.h> #include <string> using name...
exchen 12年前 (2014-02-05) 10557浏览
本人业余时间写的一款系统分析工具 SystemKit 欢迎大家来下载试用 SystemKitV1.1 下载地址:http://pan.baidu.com/s/1jGv81ds 支持系统:Windows XP/2003/7 x86 and x64 文件...
exchen 12年前 (2014-01-19) 5507浏览
#include <Windows.h> #include <TlHelp32.h> int InjectDllWithApc(char DllFullPath[MAX_P...
exchen 12年前 (2014-01-11) 5189浏览
试了半个小时才找到你,哈哈 选择菜单—Popup-false Separator—true 转载请注明:exchen's blog » VC菜单分割符...
exchen 12年前 (2013-12-27) 5169浏览
在内存中读取函数的ShellCode并执行 下面是一个例子,实现的效果是将fun1函数的十六进制读取出来,在内存中将str1的地址改成str2,分配一块内存,将改好的函数的ShellCode写入并执行。 // FunT...
exchen 12年前 (2013-12-17) 6079浏览
在MFC程序的主线程中如果使用WaitForSingleObject等线子线程,而子线程里使用了有关于消息的函数,比如SetWindowText,InsertItem,SetItemText这些函数,就有会导致主主线程阻塞问题,看看这段代码。 ...
exchen 12年前 (2013-12-04) 5972浏览
寄存器 EAX:累加寄存器 EBX:基址寄存器 ECX:计数寄存器 EDX:数据寄存器 ESI:来源寄存器 EDI:目标寄存器 EBP:基址指针寄存器 ESP:堆栈指针寄存器 EIP:指令指针寄存器 条件跳转指令 ja CF=0 and ZF=0 j...
exchen 12年前 (2013-12-01) 4855浏览
F2 //下断点 F3 //加载一个可执行程序 F4 //程序执行到光标处 F5 //缩小,还原当前窗口 F7 //单步步入 F8 //单步步过 F9 //直接运行程序,遇到断点处,程序会暂停 Ctrl+F2 重新运行程序到起始处,用于重新调...