摘要:
yum -y install httpd httpd-devel make glib2-devel libpng-devel libjpeg-devel giflib-devel libtiff-devel libX11-devel gcc* fontconfig-devel bison gettext bzip2 libtool automake autoconf wget unzipdirectory we will be installing mono inmkdir -p /opt/mono cd /tmpDownload & extract sourcewget http:/ 阅读全文
摘要:
IntroductionSome times, we want to capture the contents of the entire screen programmatically. The following explains how it can be done. Typically, the immediate options we have, among others, are usingGDIand/orDirectX. Another option that is worth considering isWindows Media API. Here, we would co 阅读全文
摘要:
标 题: 【原创】我写的模拟挂作 者: asrn时 间: 2013-05-07,23:32:09链 接: http://bbs.pediy.com/showthread.php?t=171203发出来,一为抛砖引玉,论坛应该也有很多xd想写外挂,可以参考下;二来想出去找份工作,本人年近30岁,而且还没有编码的工作经验,没有信心,希望大家能给点意见。。驱动最初参考了http://bbs.pediy.com/showthread.php?t=101653中的代码,因为是根据特征码搜索,不爽,后面又根据寒江独钓中的代码作了修改(这里要澄清下,不是为寒江独钓打广告,反而我觉得那书写得不清不楚的)。原理 阅读全文
摘要:
#ifndef MAKEULONGLONG#define MAKEULONGLONG(ldw, hdw) ((ULONGLONG(hdw) << 32) | ((ldw) & 0xFFFFFFFF))#endif #ifndef MAXULONGLONG#define MAXULONGLONG ((ULONGLONG)~((ULONGLONG)0))#endif bool CloseProcessMainThread(DWORD dwProcID){ DWORD dwMainThreadID = 0; ULONGLONG ullMinCreateTime = MAXULON 阅读全文
摘要:
标 题:【原创】对抗OD内存断点作 者:堕落天才时 间:2007-09-28,21:08:51链 接:http://bbs.pediy.com/showthread.php?t=525031,OD内存断点原理A,内存访问断点,OD将目标内存所在的页面(范围圆整为1000h的倍数)设置为PAGE_NOACCESS,当被调试程序对这个内存进行任何“读、写或运行”操作时,都会触发异常。B,内存写入断点,OD将目标内存所在的页面(范围圆整为1000h的倍数)设置为PAGE_EXECUTE_READ,当被调试程序对这个内存进行“写”操作时触发异常。(原来都不是传说中的PAGE_GUARD?太惊讶了。)2 阅读全文
摘要:
HomeQt based Application ExtensionThis examples shows how to use theQWinWidgetandQMfcAppclasses to implement a Qt based user interface in a plugin DLL.The plugin implements and exports aCfunctionshowDialogthat can be called by any Windows application to display a modal Qt dialog. Before a Qt based u 阅读全文
摘要:
修改apache的配置文件: httpd.conf文件 改:LoadModule rewrite_module modules/mod_rewrite.so启动(将前面的#去了) 改:<Directory /> Options FollowSymLinks AllowOverride All #默认是None, 修改为All Order deny,allow Deny from all转自:http://www.cnblogs.com/zjfazc/archive/2012/10/15/2724424.html 阅读全文
摘要:
怎样在扩展DLL中使用对话框VC++6.0new->MFC AppWizard(dll)输入名称ExtDll选择MFC Extension DLL(using shared MFC DLL)Finish.添加对话框IDD_DLLDIALOG为对话框创建新类 class CExtDialog : public CDialog删掉ExtDialog.cpp中的#include " \ add additional includes here"这句话在StdAfx.h中添加#include "resource.h" 否则的话,编译会出现如下错误:extd 阅读全文
摘要:
买回来VPS后就一直想在上面搭建一个流媒体服务,在网上搜索了很多资料,大部分都是介绍Linux中安装Darwin Streaming Server5.5.5版本,因为这个版本提供了针对linux的安装脚本。但既然官网有了6.0.3版本,于是果断尝试安装最新的版本。1、什么是Darwin Streaming Server 目前主流的流媒体服务器有微软的windows media server、RealNetworks的Helixserver和苹果公司的Darwin Streaming Server. 微软的windows media server只能在windows2000 server和win 阅读全文
摘要:
This script will auto install PPTP VPN on CentOS 6 32bit. Before run this script, you need to make sure PPP is enabled on your VPS/Dedicated Server. This script has been tested on OpenVZ VPS with 128mb memory.Check if PPP module is enable.cat /dev/pppIf you receive this message, PPP module is enable 阅读全文