VC系统扫雷游戏外挂源代码程序下载(转帖

VC系统扫雷游戏外挂源代码程序下载(转帖)
2008-03-04 10:25

经过了多次测试写出了历史上第一个有点意义的MFC程序。效果差强人意。^_^

 

CODE:
// CrackWinmineDlg.cpp : implementation file
//

#include "stdafx.h"
#include "CrackWinmine.h"
#include "CrackWinmineDlg.h"

#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif

/
// CAboutDlg dialog used for App About

class CAboutDlg : public CDialog
{
public:
CAboutDlg();

// Dialog Data
//{{AFX_DATA(CAboutDlg)
enum { IDD = IDD_ABOUTBOX };
//}}AFX_DATA

// ClassWizard generated virtual function overrides
//{{AFX_VIRTUAL(CAboutDlg)
protected:
virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
//}}AFX_VIRTUAL

// Implementation
protected:
//{{AFX_MSG(CAboutDlg)
//}}AFX_MSG
DECLARE_MESSAGE_MAP()
};

CAboutDlg::CAboutDlg() : CDialog(CAboutDlg::IDD)
{
//{{AFX_DATA_INIT(CAboutDlg)
//}}AFX_DATA_INIT
}

void CAboutDlg::DoDataExchange(CDataExchange* pDX)
{
CDialog::DoDataExchange(pDX);
//{{AFX_DATA_MAP(CAboutDlg)
//}}AFX_DATA_MAP
}

BEGIN_MESSAGE_MAP(CAboutDlg, CDialog)
//{{AFX_MSG_MAP(CAboutDlg)
   // No message handlers
//}}AFX_MSG_MAP
END_MESSAGE_MAP()

/
// CCrackWinmineDlg dialog

CCrackWinmineDlg::CCrackWinmineDlg(CWnd* pParent /*=NULL*/)
: CDialog(CCrackWinmineDlg::IDD, pParent)
{
//{{AFX_DATA_INIT(CCrackWinmineDlg)
m_searchstats = _T("");
//}}AFX_DATA_INIT
// Note that LoadIcon does not require a subsequent DestroyIcon in Win32
m_hIcon = AfxGetApp()->LoadIcon(IDR_MAINFRAME);
}

void CCrackWinmineDlg::DoDataExchange(CDataExchange* pDX)
{
CDialog::DoDataExchange(pDX);
//{{AFX_DATA_MAP(CCrackWinmineDlg)
DDX_Control(pDX, IDC_btnOpen, m_btnOpen);
DDX_Control(pDX, IDC_btnCrack, m_btnCrack);
DDX_Text(pDX, IDC_txtSearchWnd, m_searchstats);
//}}AFX_DATA_MAP
}

BEGIN_MESSAGE_MAP(CCrackWinmineDlg, CDialog)
//{{AFX_MSG_MAP(CCrackWinmineDlg)
ON_WM_SYSCOMMAND()
ON_WM_PAINT()
ON_WM_QUERYDRAGICON()
ON_WM_TIMER()
ON_BN_CLICKED(IDC_butAbout, OnbutAbout)
ON_BN_CLICKED(IDC_btnOpen, OnbtnOpen)
ON_BN_CLICKED(IDC_btnCrack, OnbtnCrack)
//}}AFX_MSG_MAP
END_MESSAGE_MAP()

/
// CCrackWinmineDlg message handlers

BOOL CCrackWinmineDlg::OnInitDialog()
{
CDialog::OnInitDialog();

// Add "About..." menu item to system menu.

// IDM_ABOUTBOX must be in the system command range.
ASSERT((IDM_ABOUTBOX & 0xFFF0) == IDM_ABOUTBOX);
ASSERT(IDM_ABOUTBOX < 0xF000);

CMenu* pSysMenu = GetSystemMenu(FALSE);
if (pSysMenu != NULL)
{
   CString strAboutMenu;
   strAboutMenu.LoadString(IDS_ABOUTBOX);
   if (!strAboutMenu.IsEmpty())
   {
    pSysMenu->AppendMenu(MF_SEPARATOR);
    pSysMenu->AppendMenu(MF_STRING, IDM_ABOUTBOX, strAboutMenu);
   }
}

// Set the icon for this dialog. The framework does this automatically
// when the application's main window is not a dialog
SetIcon(m_hIcon, TRUE);    // Set big icon
SetIcon(m_hIcon, FALSE);   // Set small icon

// TODO: Add extra initialization here
int iInstallTimer=SetTimer(1,100,NULL);
if(iInstallTimer==0) MessageBox("无法启动定时器");


return TRUE; // return TRUE unless you set the focus to a control
}

void CCrackWinmineDlg::OnSysCommand(UINT nID, LPARAM lParam)
{
if ((nID & 0xFFF0) == IDM_ABOUTBOX)
{
   CAboutDlg dlgAbout;
   dlgAbout.DoModal();
}
else
{
   CDialog::OnSysCommand(nID, lParam);
}
}

// If you add a minimize button to your dialog, you will need the code below
// to draw the icon. For MFC applications using the document/view model,
// this is automatically done for you by the framework.

void CCrackWinmineDlg::OnPaint()
{
if (IsIconic())
{
   CPaintDC dc(this); // device context for painting

   SendMessage(WM_ICONERASEBKGND, (WPARAM) dc.GetSafeHdc(), 0);

   // Center icon in client rectangle
   int cxIcon = GetSystemMetrics(SM_CXICON);
   int cyIcon = GetSystemMetrics(SM_CYICON);
   CRect rect;
   GetClientRect(&rect);
   int x = (rect.Width() - cxIcon + 1) / 2;
   int y = (rect.Height() - cyIcon + 1) / 2;

   // Draw the icon
   dc.DrawIcon(x, y, m_hIcon);
}
else
{
   CDialog::OnPaint();
}
}

// The system calls this to obtain the cursor to display while the user drags
// the minimized window.
HCURSOR CCrackWinmineDlg::OnQueryDragIcon()
{
return (HCURSOR) m_hIcon;
}

void CCrackWinmineDlg::OnTimer(UINT nIDEvent)
{

UpdateData();
if(SearchProcess()==NULL)
{
   m_searchstats="游戏未启动";
   m_btnOpen.EnableWindow(true);
   m_btnCrack.EnableWindow(false);
}
else
{
   m_searchstats.Format("启动中,PID:%d",proid);
   m_btnOpen.EnableWindow(false);
   m_btnCrack.EnableWindow(true);
}
UpdateData(false);
CDialog::OnTimer(nIDEvent);
}

void CCrackWinmineDlg::OnCancel()
{


CDialog::OnCancel();
}

void CCrackWinmineDlg::OnbutAbout()
{
CAboutDlg dlg;
dlg.DoModal();

}

bool CCrackWinmineDlg::SearchProcess()
{

hwnd=::FindWindow(NULL,"扫雷");
if(hwnd==NULL) return false;
GetWindowThreadProcessId(hwnd,&proid);
handleProc=OpenProcess(PROCESS_ALL_ACCESS,false,proid);
return true;
}

void CCrackWinmineDlg::OnbtnOpen()
{
if(WinExec("c:\\windows\\system32\\winmine.exe",SW_SHOW)<32)
   MessageBox("你系统没有扫雷游戏!");

}

void CCrackWinmineDlg::OnbtnCrack()
{
CPoint clientp;
GetCursorPos(&clientp);
DWORD ads_minenum=0x1005330;
DWORD ads_minew=0x1005334;
DWORD ads_mineh=0x1005338;
DWORD ads_start=0x1005361;
byte hight,weight,num;

ReadProcessMemory(handleProc,(void *)ads_minenum,&num,1,NULL);
ReadProcessMemory(handleProc,(void *)ads_minew,&weight,1,NULL);
ReadProcessMemory(handleProc,(void *)ads_mineh,&hight,1,NULL);
::ShowWindow(hwnd,SW_RESTORE);
::SetForegroundWindow(hwnd);
// return;
CRect rect;
CPoint point;
::GetClientRect(hwnd,&rect);
point.x=rect.left+20;
point.y=rect.top+60;
::ClientToScreen(hwnd,&point);
INPUT lbutton[2],rbutton[2];
ZeroMemory(&lbutton,sizeof(INPUT)*2);
ZeroMemory(&rbutton,sizeof(INPUT)*2);
lbutton[0].type=INPUT_MOUSE;
rbutton[0].type=INPUT_MOUSE;
lbutton[1].type=INPUT_MOUSE;
rbutton[1].type=INPUT_MOUSE;
lbutton[0].mi.dwFlags=MOUSEEVENTF_LEFTDOWN;
lbutton[1].mi.dwFlags=MOUSEEVENTF_LEFTUP;
rbutton[0].mi.dwFlags=MOUSEEVENTF_RIGHTDOWN;
rbutton[1].mi.dwFlags=MOUSEEVENTF_RIGHTUP;

int line,row;
for(row=0;row<hight;row++)
   for (line=0;line<weight;line++)
   {
    byte value;
    ReadProcessMemory(handleProc,(void *)(ads_start+row*32+line),&value,1,NULL);
    SetCursorPos(point.x+line*16,point.y+row*16);
    if(value==0x8f)
    {

     SendInput(2,rbutton,sizeof(INPUT));
    }
    if(value!=0x40)
    {

     SendInput(2,lbutton,sizeof(INPUT));
    }
   }
SetCursorPos(clientp.x,clientp.y);
CloseHandle(handleProc);

}


转载于:https://www.cnblogs.com/mazhenyu/archive/2009/06/04/1496138.html

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/264305.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

signature=54cb1c123491dc1a268a21f3502cccfc,Modelling information routing with noninterference

摘要&#xff1a;To achieve the highest levels of assurance, MILS architectures need to be formally analysed. A key challenge is to reason about the interaction between the software applications running on top of MILS core components, such as the separation…

JAVA面向对象程序设计(第二版) 袁绍欣 第四章答案

面向对象&#xff08;上&#xff09; 1.名词解释&#xff1a;构造方法、抽象 构造方法一般是用来初始化数据成员的&#xff0c;与类名相同&#xff0c;无返回值。 分为有参和无参数&#xff0c;当一个类中没有定义构造函数时&#xff0c;系统会给该类中加一个默认的空参数的构造…

转:看问题的5个层次

转自&#xff1a;http://www.narrativecard.com/%E7%9C%8B%E9%97%AE%E9%A2%98%E7%9A%845%E4%B8%AA%E5%B1%82%E6%AC%A1/ 转自&#xff1a;《创业教我的50件事》 事件当然要处理&#xff0c;就像疼痛必须注意。但若整天只忙于事件&#xff0c;就像疼了一个月还在猛吞止痛药&#…

鸿蒙系统公测版发布,鸿蒙OS2.0系统公测版什么时候发布-适配机型

鸿蒙OS2.0手机开发者Beta版本于今日已正式发布&#xff0c;那么鸿蒙OS2.0系统的公测版本上市时间&#xff0c;适配手机名单有哪些&#xff0c;接下来小编就为大家带来了解答&#xff0c;一起看看吧&#xff01;一、公测版发布时间12月16日&#xff0c;发布了鸿蒙OS2.0手机开发者…

jQuery实现分页

参考网上的资源(必优博客 http://www.biuuu.com/) 注意&#xff1a;CSS样式使分页导航水平显示&#xff0c;如果没有的话将以普通列表方式呈现。 <html><head><script type"text/javascript" src"Library/jquery1.3.1/dist/jquery.js">&…

对acm icpc 的随笔——01

1&#xff0c;提高编程能力2&#xff0c;学习算法&#xff08;读书&#xff0c;读论文&#xff0c;包括一些题目的验证&#xff09;3&#xff0c;准备好面临的挑战&#xff08;熟悉体型&#xff0c;调整心态&#xff09;4&#xff0c;启发思维 <时刻保持镇定&#xff0c;用心…

oracle常用的工具软件

PL/SQL DevelopertoadOBJECT BROWSEREmbarcadero Rapidsql转载于:https://blog.51cto.com/lsg123/1561234

angular 加入原生html,Angular HTML绑定

收到一只叮咚Angular 2.0.0和Angular 4.0.0 final仅为了安全的内容constructor(private sanitizer:DomSanitizer){}transform(style) {return this.sanitizer.bypassSecurityTrustHtml(style);//return this.sanitizer.bypassSecurityTrustStyle(style);// return this.sanitiz…

foriegn web site

http://www.codeproject.com www.ddj.com http://www.guru.com/ 转载于:https://www.cnblogs.com/liulf/archive/2009/06/11/1501670.html

Unity游戏开发之C#快速入门

C#是微软团队在开发.NET框架时开发的&#xff0c;它的构想接近于C、C&#xff0c;也和JAVA十分相似&#xff0c;有许多强大的编程功能。 个人感受是C#吸收了众多编程语言的优点&#xff0c;从中可以看到C、C、Java、Javascript、python的影子&#xff0c;设计思想都是相通的(过…

通过PowerShell获取Windows系统密码Hash

当你拿到了系统控制权之后如何才能更长的时间内控制已经拿到这台机器呢&#xff1f;作为白帽子&#xff0c;已经在对手防线上撕开一个口子&#xff0c;如果你需要进一步扩大战果&#xff0c;你首先需要做的就是潜伏下来&#xff0c;收集更多的信息便于你判断&#xff0c;便于有…

ant引入html页面,antdesign 中 使用 iconfont symbol方式引入图标不展示

最近在写项目遇到了一个问题&#xff0c;我使用vue框架搭建了一个项目。我创建了一个 index.js文件&#xff0c;内容为&#xff1a;import { Icon } from ant-design-vue;const IconFont Icon.createFromIconfontCN({scriptUrl: //at.alicdn.com/t/font_2296540_wpxzi5ar76.js…

java filter

一、Filter简介 Filter也称之为过滤器&#xff0c;它是Servlet技术中最激动人心的技术&#xff0c;WEB开发人员通过Filter技术&#xff0c;对web服务器管理的所有web资源&#xff1a;例如Jsp, Servlet, 静态图片文件或静态 html 文件等进行拦截&#xff0c;从而实现一些特殊的功…

visualstudio调试html,Visual Studio Code中调试JavaScript

一、安装Debugger for Chrome扩展插件二、配置运行环境最左侧菜单找到调试(一个虫子样图标)&#xff0c;点击下图中红色标注或者直接按F5&#xff1a;然后出现下图所示&#xff1a;选择Chrome&#xff0c;会生成Launch.json文件&#xff1a;{// 使用 IntelliSense 了解相关属性…

动态网页技术(二)

SSH整合的基本步骤1、 Spring向下整合Hibernate&#xff08;DAO层&#xff09;1.1使用Spring的IoC容器创建sessionFactory1.2使用Spring的IoC容器创建DAO2、 Spring中间管理业务层2.1使用Spring的IoC容器创建Biz Bean2.2使用Spring的AOP配置业务层事务3、 Spring向上整合Str…

IT人的真实写照

IT人的真实写照Ping MM&#xff1a;Request timed out&#xff1b; & C" i; j0 p }3 d4 I# {5 Y8 ZPing money&#xff1a;Destination unreachable&#xff1b; ! U6 W6 y& U4 N8 X7 X0 A& \- N2 zPing Love&#xff1a;Unkown host name&#xff1b; N E!…

Android之PhotoView使用(原创)

文章大纲 一、什么是PhotoView二、代码实战三、项目源码下载 一、什么是PhotoView 一款 ImageView 展示框架&#xff0c;支持缩放&#xff0c;响应手势&#xff0c;位于图片排行榜的第五位&#xff0c;PhotoView 与上面不同的是图片的展示功能&#xff0c;可以实现类似微信头像…

浏览器打不开html链接,win7系统ie浏览器打不开网站链接怎么办

‍‍有些使用ie浏览器的win7旗舰版用户来&#xff0c;最近发现网站中的链接打不开&#xff0c;严重影响上网体验&#xff0c;遇到这种情况我们该怎么办呢&#xff1f;会出现网站链接无法打开很有可能是ie浏览器出了问题&#xff0c;我们可以通过修复IE组件来解决&#xff0c;下…

IsNull 和 SQL语句中CASE WHEN用法

【转】IsNull 和 SQL语句中CASE WHEN用法收藏 【转】IsNull 和 SQL语句中CASE WHEN用法 1、ISNULL 使用指定的替换值替换 NULL。 语法 ISNULL ( check_expression , replacement_value ) 参数 check_expression 将被检查是…

好玩的代码(1)

看效果&#xff08;gif工具不太会用&#xff0c;效果不是很好&#xff09; 代码很简单&#xff0c;就是对sleep函数和/b的使用。 代码 1 #include <cstdio>2 #include <windows.h>3 using namespace std;4 5 int main(int argc, char **argv)6 {7 printf("…