LoginSignup
0
0

Stirlingで構造体編集 その5

Last updated at Posted at 2023-11-02

概要

バイナリエディタStirlingで構造体編集、やってみた。
練習問題、やってみた。

練習問題

exeファイルの構造体を書け。

写真

image.png

exe構造体

struct PE_IMAGE_DOS_HEADER {
	WORD	e_magic;
	WORD	e_cblp;
	WORD	e_cp;
	WORD	e_crlc;
	WORD	e_cparhdr;
	WORD	e_minalloc;
	WORD	e_maxalloc;
	WORD	e_ss;
	WORD	e_sp;
	WORD	e_csum;
	WORD	e_ip;
	WORD	e_cs;
	WORD	e_lfarlc;
	WORD	e_ovno;
	WORD	e_res0;
	WORD	e_res1;
	WORD	e_res2;
	WORD	e_res3;
	WORD	e_oemid;
	WORD	e_oeminfo;
	WORD	e_res20;
	WORD	e_res21;
	WORD	e_res22;
	WORD	e_res23;
	WORD	e_res24;
	WORD	e_res25;
	WORD	e_res26;
	WORD	e_res27;
	WORD	e_res28;
	WORD	e_res29;
	LONG	e_lfanew;
};

以上

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0