Click here to Skip to main content
15,885,701 members
Articles / Programming Languages / C++

ExeScanner

Rate me:
Please Sign up or sign in to vote.
4.91/5 (67 votes)
6 Jun 20052 min read 115.5K   4.3K   102  
This article explains how to enumerate all the objects in a Portable Executable and manipulate them.
/******************************************************************************
*
* PROJECT:		ExeScanner
* FILE NAME:	ResourceSection.h
*
* DEVELOPER:	Vishalsinh Jhala
* DATE:			2-Apr-2005
*
* DESCRIPTION:	Declaration file for class ResourceSection.
*
* NOTES:		Owns all Resource Branches.(BITMAPS,ICONS,CURSORS,STRINGS ETC)
*
******************************************************************************/
#pragma once
#include "pebase.h"
#include "ResourceBranch.h"

class ResourceSection :
	public PEBase
{
	DWORD m_dwImageBase,m_dwRVA;
	IMAGE_RESOURCE_DIRECTORY m_resDirRoot;
	ResourceBranch *m_pResBranch[1000];

public:
	ResourceSection(PEFile *pFile, DWORD dwImageBase, DWORD dwRVA);
	~ResourceSection(void);
	virtual void GetPropertyInfo(CString& strInfo);
	virtual void IterateElements(PETreeList *pList);
};

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Web Developer
United States United States
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions