⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 superpwdspydlg.h

📁 利用钩子与API截获方法获取WEB网页及应用程序密码编辑框中的密码
💻 H
字号:
// SuperPwdSpyDlg.h : header file
//

/************************************
  REVISION LOG ENTRY
  Revision By: Zhang, Zhefu
  Contact: codetiger@hotmail.com
  Revised on 12/7/2002 10:44:33 AM
  Comment: Following Source is Written To Contribute to WWW.CodeGuru.Com
  Also check http://codeguru.earthweb.com/ieprogram/SPwdSpy.html
       for latest patch
 ************************************/

#if !defined(AFX_SUPERPWDSPYDLG_H__6253BB29_CF16_428E_83BA_ACFC8A16CA69__INCLUDED_)
#define AFX_SUPERPWDSPYDLG_H__6253BB29_CF16_428E_83BA_ACFC8A16CA69__INCLUDED_

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000

/////////////////////////////////////////////////////////////////////////////
// CSuperPwdSpyDlg dialog
#include "SuperPwdHook.h"
#include "ZToolTipCtrl.h"
class CSuperPwdSpyDlg : public CDialog
{
// Construction
public:
	void ShowMoreInfo(BOOL b);
	CSuperPwdSpyDlg(CWnd* pParent = NULL);	// standard constructor
    void UpdateGUI(HWND hWnd, CPoint point);
	UINT m_msg;

	CBrush		  m_HollowBrush;
	CBrush		  m_WhiteBrush;
	CZToolTipCtrl m_tt;
	void RelayEvent(UINT message, WPARAM wParam, LPARAM lParam);
	static int m_nTransparent[];
// Dialog Data
	//{{AFX_DATA(CSuperPwdSpyDlg)
	enum { IDD = IDD_SUPERPWDSPY_DIALOG };
	CComboBox	m_comboTransparent;
	CStatic	m_look;
	CEdit	m_editCtrlID;
	CEdit	m_editWndClass;
	CEdit	m_editPwd;
	CEdit	m_editPID;
	CEdit	m_editMousePos;
	CEdit	m_strIsPwd;
	CEdit	m_editHandle;
	CEdit	m_editExePath;
	CEdit	m_editExeName;
	CEdit	m_editCaption;
	BOOL	m_bMore;
	//}}AFX_DATA

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

private:
	BOOL m_bCapture;
	BOOL m_bStayOnTop;
	BOOL m_bHighLighted;
	HWND m_hTarget;
	CRect m_rect;
	HWND m_hwndSpying;
	HWND m_hPrevSpyWnd;

// Implementation
protected:
	HICON m_hIcon;

	// Generated message map functions
	//{{AFX_MSG(CSuperPwdSpyDlg)
	virtual BOOL OnInitDialog();
	afx_msg void OnSysCommand(UINT nID, LPARAM lParam);
	afx_msg void OnPaint();
	afx_msg HCURSOR OnQueryDragIcon();
	afx_msg void OnLButtonDown(UINT nFlags, CPoint point);
	afx_msg void OnLButtonUp(UINT nFlags, CPoint point);
	afx_msg void OnMouseMove(UINT nFlags, CPoint point);
	afx_msg BOOL OnCopyData(CWnd* pWnd, COPYDATASTRUCT* pCopyDataStruct);
	afx_msg BOOL OnEraseBkgnd(CDC* pDC);
	afx_msg HBRUSH OnCtlColor(CDC* pDC, CWnd* pWnd, UINT nCtlColor);
	afx_msg void OnCheckMore();
	afx_msg void OnSelchangeComboTransparent();
	//}}AFX_MSG
	DECLARE_MESSAGE_MAP()
};

//{{AFX_INSERT_LOCATION}}
// Microsoft Visual C++ will insert additional declarations immediately before the previous line.

#endif // !defined(AFX_SUPERPWDSPYDLG_H__6253BB29_CF16_428E_83BA_ACFC8A16CA69__INCLUDED_)

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -