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

📄 scandlg.h

📁 一个非常简单的漏洞扫描器,适用于局域网漏洞扫描
💻 H
字号:
// scanDlg.h : header file
//

#if !defined(AFX_SCANDLG_H__61F65E4C_9FDD_4F00_BA00_9DE378F9806E__INCLUDED_)
#define AFX_SCANDLG_H__61F65E4C_9FDD_4F00_BA00_9DE378F9806E__INCLUDED_

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

#define WM_DISPLAY WM_USER+100

#include "HistoryEdit.h"

UINT wScan(LPVOID pParam);
UINT pScan(LPVOID pParam);
UINT fScan(LPVOID pParam);
UINT sScan(LPVOID pParam);
UINT fingerScan(LPVOID pParam);
UINT cgiScan(LPVOID pParam);
UINT getcgi(LPVOID pParam);

struct port{
		char *rmt_host;
		int p;
		int n;
};

/////////////////////////////////////////////////////////////////////////////
// CScanDlg dialog

class CScanDlg : public CDialog
{
// Construction
public:
	LONG OnDisplay(LONG lParam, UINT wParam);
	CScanDlg(CWnd* pParent = NULL);	// standard constructor
	CHistoryEdit m_HistoryEdit;
// Dialog Data
	//{{AFX_DATA(CScanDlg)
	enum { IDD = IDD_SCAN_DIALOG };
	CButton	m_scan;
	CButton	m_about;
	CButton	m_log;
	BOOL	m_checkcgi;
	BOOL	m_checkfinger;
	BOOL	m_checkftp;
	BOOL	m_checksmtp;
	CString	m_res;
	CString	m_ip;
	//}}AFX_DATA

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

// Implementation
protected:
	HICON m_hIcon;
	// Generated message map functions
	//{{AFX_MSG(CScanDlg)
	virtual BOOL OnInitDialog();
	afx_msg void OnPaint();
	afx_msg HCURSOR OnQueryDragIcon();
	afx_msg void OnAbout();
	afx_msg void OnLog();
	afx_msg void OnScan();
	afx_msg void OnClear();
	afx_msg void OnStop();
	//}}AFX_MSG
	DECLARE_MESSAGE_MAP()
};

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

#endif // !defined(AFX_SCANDLG_H__61F65E4C_9FDD_4F00_BA00_9DE378F9806E__INCLUDED_)

⌨️ 快捷键说明

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