Guest User

Untitled

a guest
Jun 22nd, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 66.17 KB | None | 0 0
  1. ## fsdump.py [python]
  2. #!/usr/bin/python
  3. import sys, struct
  4.  
  5. def fguid(s):
  6. a, b, c, d, e = struct.unpack("<IHHH6s", s)
  7. return "%08x-%04x-%04x-%04x-%s"%(a,b,c,d,''.join('%02x'%ord(c) for c in e))
  8.  
  9. class FFSSection(object):
  10. def __init__(self, data):
  11. hdr = data[:0x4]
  12. self.size, self.type = struct.unpack("<3sB", hdr)
  13. self.size = struct.unpack("<I", self.size + "\x00")[0]
  14. data = data[0x4:self.size]
  15. self.data = data
  16. self.subsections = None
  17. if self.type == 0x02:
  18. dguid = self.data[:16]
  19. if dguid == "\xb0\xcd\x1b\xfc\x31\x7d\xaa\x49\x93\x6a\xa4\x60\x0d\x9d\xd0\x83":
  20. self.subsections = []
  21. data = data[0x18:]
  22. while len(data):
  23. s = FFSSection(data)
  24. self.subsections.append(s)
  25. data = data[(s.size+3)&(~3):]
  26. def showinfo(self, ts=''):
  27. if self.type == 0x01:
  28. print ts+"Compression section"
  29. elif self.type == 0x02:
  30. print ts+"GUID-defined section"
  31. if self.subsections is not None:
  32. print ts+" CRC32 subsection container:"
  33. for i, s in enumerate(self.subsections):
  34. print ts+" Subsection %d: type 0x%02x, size 0x%x"%(i,s.type,s.size)
  35. s.showinfo(ts+" ")
  36. elif self.type == 0x03:
  37. print ts+"Disposable section"
  38. elif self.type == 0x10:
  39. print ts+"PE Image"
  40. elif self.type == 0x11:
  41. print ts+"PE PIC Image"
  42. elif self.type == 0x12:
  43. print ts+"TE Image"
  44. elif self.type == 0x13:
  45. print ts+"DXE Dependency Expression"
  46. elif self.type == 0x14:
  47. print ts+"Version"
  48. elif self.type == 0x15:
  49. n = self.data.decode("utf-16le").split("\0")[0]
  50. print ts+"User Interface name:", n
  51. elif self.type == 0x16:
  52. print ts+"Compatibility16"
  53. elif self.type == 0x17:
  54. print ts+"Firmware Volume Image"
  55. elif self.type == 0x18:
  56. print ts+"Freeform Subtype GUID"
  57. elif self.type == 0x19:
  58. print ts+"RAW"
  59. elif self.type == 0x1b:
  60. print ts+"PEI Dependency Expression"
  61. elif self.type == 0x1c:
  62. print ts+"SMM Dependency Expression"
  63. else:
  64. print ts+"Unknown section type"
  65. def dump(self, base):
  66.  
  67. if self.subsections is not None:
  68. for i,s in enumerate(self.subsections):
  69. s.dump("%s.sub%d"%(base, i))
  70. return
  71.  
  72. ext = {
  73. 0x01: "compression",
  74. 0x02: "guiddef",
  75. 0x03: "disp",
  76. 0x10: "pe",
  77. 0x11: "pic.pe",
  78. 0x12: "te",
  79. 0x13: "dxe.depex",
  80. 0x14: "ver",
  81. 0x15: "name",
  82. 0x16: "16bit",
  83. 0x17: "fvi",
  84. 0x18: "guid",
  85. 0x19: "raw",
  86. 0x1b: "pei.depex",
  87. 0x1c: "smm.depex"
  88. }.get(self.type, "unknown.bin")
  89.  
  90. name = "%s.%s"%(base, ext)
  91. fd = open(name, "wb")
  92. fd.write(self.data)
  93. fd.close()
  94. print name
  95.  
  96. class FFSFile(object):
  97. def __init__(self, data):
  98. hdr = data[:0x18]
  99. self.guid, self.checksum, self.type, self.attributes, self.size, self.state = struct.unpack("<16sHBB3sB", hdr)
  100. self.size = struct.unpack("<I", self.size + "\x00")[0]
  101. data = data[0x18:self.size]
  102. self.data = data
  103. if self.type == 0xf0:
  104. self.sections = None
  105. else:
  106. self.sections = []
  107. while len(data):
  108. s = FFSSection(data)
  109. self.sections.append(s)
  110. data = data[(s.size+3)&(~3):]
  111. def showinfo(self, ts=''):
  112. print ts+"GUID:", fguid(self.guid)
  113. print ts+"Size: 0x%x (data 0x%x)"%(self.size,len(self.data))
  114. print ts+"Type: 0x%02x"%self.type
  115. print ts+"Attributes: 0x%02x"%self.attributes
  116. print ts+"State: 0x%02x"%(self.state ^0xFF)
  117. if self.sections is not None:
  118. for i, s in enumerate(self.sections):
  119. print ts+" Section %d: type 0x%02x, size 0x%x"%(i,s.type,s.size)
  120. s.showinfo(ts+" ")
  121. else:
  122. print ts+"This is a padding file"
  123. def dump(self):
  124. if self.sections is not None:
  125. for i, s in enumerate(self.sections):
  126. s.dump("%s.sec%d"%(fguid(self.guid), i))
  127.  
  128. class FS(object):
  129. def __init__(self,data):
  130. self.files = []
  131. while len(data) and data[:16] != ("\xff"*16):
  132. f = FFSFile(data)
  133. self.files.append(f)
  134. data = data[(f.size+7)&(~7):]
  135. def showinfo(self, ts=''):
  136. for f in self.files:
  137. print ts+"File:"
  138. f.showinfo(ts+' ')
  139. def dump(self):
  140. for f in self.files:
  141. f.dump()
  142.  
  143. if __name__ == "__main__":
  144. f = open(sys.argv[1],"rb")
  145.  
  146. d = f.read()
  147.  
  148. fs = FS(d)
  149.  
  150. print "Filesystem:"
  151. fs.showinfo(' ')
  152. print "Dumping..."
  153. fs.dump()
  154. ## log.txt [plain_text]
  155. Filesystem:
  156. File:
  157. GUID: 35b898ca-b6a9-49ce-728c-904735cc49b7
  158. Size: 0xe270 (data 0xe258)
  159. Type: 0x05
  160. Attributes: 0x40
  161. State: 0x07
  162. Section 0: type 0x10, size 0xe244
  163. PE Image
  164. Section 1: type 0x15, size 0x14
  165. User Interface name: DxeMain
  166. File:
  167. GUID: 4d37da42-3a0c-4eda-ebb9-bc0e1db4713b
  168. Size: 0x5608 (data 0x55f0)
  169. Type: 0x06
  170. Attributes: 0x40
  171. State: 0x07
  172. Section 0: type 0x10, size 0x55c4
  173. PE Image
  174. Section 1: type 0x15, size 0x2c
  175. User Interface name: PpisNeededByDxeCore
  176. File:
  177. GUID: 51c9f40c-5243-4473-65b2-b3c8ffaff9fa
  178. Size: 0x5c4 (data 0x5ac)
  179. Type: 0x07
  180. Attributes: 0x40
  181. State: 0x07
  182. Section 0: type 0x02, size 0x5ac
  183. GUID-defined section
  184. CRC32 subsection container:
  185. Subsection 0: type 0x13, size 0x16
  186. DXE Dependency Expression
  187. Subsection 1: type 0x20, size 0x8
  188. Unknown section type
  189. Subsection 2: type 0x10, size 0x544
  190. PE Image
  191. Subsection 3: type 0x15, size 0x2c
  192. User Interface name: Crc32SectionExtract
  193. File:
  194. GUID: c95e6a28-fb95-49f2-01ae-f38166fd4524
  195. Size: 0x1990 (data 0x1978)
  196. Type: 0x07
  197. Attributes: 0x40
  198. State: 0x07
  199. Section 0: type 0x02, size 0x1978
  200. GUID-defined section
  201. CRC32 subsection container:
  202. Subsection 0: type 0x13, size 0x6
  203. DXE Dependency Expression
  204. Subsection 1: type 0x20, size 0x8
  205. Unknown section type
  206. Subsection 2: type 0x10, size 0x1924
  207. PE Image
  208. Subsection 3: type 0x15, size 0x28
  209. User Interface name: OemServicesDriver
  210. File:
  211. GUID: 1c6b2faf-d8bd-44d1-1ea9-7321b4c2f3d1
  212. Size: 0xea4 (data 0xe8c)
  213. Type: 0x07
  214. Attributes: 0x40
  215. State: 0x07
  216. Section 0: type 0x02, size 0xe8c
  217. GUID-defined section
  218. CRC32 subsection container:
  219. Subsection 0: type 0x13, size 0x6
  220. DXE Dependency Expression
  221. Subsection 1: type 0x20, size 0x8
  222. Unknown section type
  223. Subsection 2: type 0x10, size 0xe44
  224. PE Image
  225. Subsection 3: type 0x15, size 0x1a
  226. User Interface name: ScriptSave
  227. File:
  228. GUID: 2bded685-f733-455f-40a8-43a22b791fb3
  229. Size: 0xc88 (data 0xc70)
  230. Type: 0x07
  231. Attributes: 0x40
  232. State: 0x07
  233. Section 0: type 0x02, size 0xc70
  234. GUID-defined section
  235. CRC32 subsection container:
  236. Subsection 0: type 0x13, size 0x4c
  237. DXE Dependency Expression
  238. Subsection 1: type 0x20, size 0x8
  239. Unknown section type
  240. Subsection 2: type 0x10, size 0xbe4
  241. PE Image
  242. Subsection 3: type 0x15, size 0x1a
  243. User Interface name: AcpiS3Save
  244. File:
  245. GUID: 90cb75db-71fc-489d-cfaa-943477ec7212
  246. Size: 0x958 (data 0x940)
  247. Type: 0x07
  248. Attributes: 0x40
  249. State: 0x07
  250. Section 0: type 0x02, size 0x940
  251. GUID-defined section
  252. CRC32 subsection container:
  253. Subsection 0: type 0x13, size 0x3a
  254. DXE Dependency Expression
  255. Subsection 1: type 0x20, size 0x8
  256. Unknown section type
  257. Subsection 2: type 0x10, size 0x8c4
  258. PE Image
  259. Subsection 3: type 0x15, size 0x1a
  260. User Interface name: SmartTimer
  261. File:
  262. GUID: a8f634a5-28f1-4456-d5a9-7e24b99bdb65
  263. Size: 0x6c4 (data 0x6ac)
  264. Type: 0x07
  265. Attributes: 0x40
  266. State: 0x07
  267. Section 0: type 0x02, size 0x6ac
  268. GUID-defined section
  269. CRC32 subsection container:
  270. Subsection 0: type 0x13, size 0x6
  271. DXE Dependency Expression
  272. Subsection 1: type 0x20, size 0x8
  273. Unknown section type
  274. Subsection 2: type 0x10, size 0x664
  275. PE Image
  276. Subsection 3: type 0x15, size 0x1a
  277. User Interface name: PcxDecoder
  278. File:
  279. GUID: a6f691ac-31c8-4444-4c85-e2c1a6950f92
  280. Size: 0x19044 (data 0x1902c)
  281. Type: 0x07
  282. Attributes: 0x40
  283. State: 0x07
  284. Section 0: type 0x02, size 0x1902c
  285. GUID-defined section
  286. CRC32 subsection container:
  287. Subsection 0: type 0x13, size 0x16
  288. DXE Dependency Expression
  289. Subsection 1: type 0x20, size 0x8
  290. Unknown section type
  291. Subsection 2: type 0x10, size 0x18fe4
  292. PE Image
  293. Subsection 3: type 0x15, size 0xc
  294. User Interface name: Bds
  295. File:
  296. GUID: 62d171cb-78cd-4480-7886-c6a2a797a8de
  297. Size: 0xadb8 (data 0xada0)
  298. Type: 0x07
  299. Attributes: 0x40
  300. State: 0x07
  301. Section 0: type 0x02, size 0xada0
  302. GUID-defined section
  303. CRC32 subsection container:
  304. Subsection 0: type 0x13, size 0xa6
  305. DXE Dependency Expression
  306. Subsection 1: type 0x20, size 0x8
  307. Unknown section type
  308. Subsection 2: type 0x10, size 0xacc4
  309. PE Image
  310. Subsection 3: type 0x15, size 0x10
  311. User Interface name: MpCpu
  312. File:
  313. GUID: 07a9330a-f347-11d4-499a-0090273fc14d
  314. Size: 0x63c (data 0x624)
  315. Type: 0x07
  316. Attributes: 0x40
  317. State: 0x07
  318. Section 0: type 0x02, size 0x624
  319. GUID-defined section
  320. CRC32 subsection container:
  321. Subsection 0: type 0x13, size 0x16
  322. DXE Dependency Expression
  323. Subsection 1: type 0x20, size 0x8
  324. Unknown section type
  325. Subsection 2: type 0x10, size 0x5c4
  326. PE Image
  327. Subsection 3: type 0x15, size 0x24
  328. User Interface name: LegacyMetronome
  329. File:
  330. GUID: 4c862fc6-0e54-4e36-8f8c-ff6f3167951f
  331. Size: 0x1e9c (data 0x1e84)
  332. Type: 0x07
  333. Attributes: 0x40
  334. State: 0x07
  335. Section 0: type 0x02, size 0x1e84
  336. GUID-defined section
  337. CRC32 subsection container:
  338. Subsection 0: type 0x13, size 0x28
  339. DXE Dependency Expression
  340. Subsection 1: type 0x20, size 0x8
  341. Unknown section type
  342. Subsection 2: type 0x10, size 0x1e24
  343. PE Image
  344. Subsection 3: type 0x15, size 0x14
  345. User Interface name: FtwLite
  346. File:
  347. GUID: b601f8c4-43b7-4784-b195-f4226cb40cee
  348. Size: 0x15fc (data 0x15e4)
  349. Type: 0x07
  350. Attributes: 0x40
  351. State: 0x07
  352. Section 0: type 0x02, size 0x15e4
  353. GUID-defined section
  354. CRC32 subsection container:
  355. Subsection 0: type 0x13, size 0x6
  356. DXE Dependency Expression
  357. Subsection 1: type 0x20, size 0x8
  358. Unknown section type
  359. Subsection 2: type 0x10, size 0x15a4
  360. PE Image
  361. Subsection 3: type 0x15, size 0x14
  362. User Interface name: Runtime
  363. File:
  364. GUID: ad608272-d07f-4964-1e80-7bd3b7888652
  365. Size: 0x750 (data 0x738)
  366. Type: 0x07
  367. Attributes: 0x40
  368. State: 0x07
  369. Section 0: type 0x02, size 0x738
  370. GUID-defined section
  371. CRC32 subsection container:
  372. Subsection 0: type 0x13, size 0x28
  373. DXE Dependency Expression
  374. Subsection 1: type 0x20, size 0x8
  375. Unknown section type
  376. Subsection 2: type 0x10, size 0x6c4
  377. PE Image
  378. Subsection 3: type 0x15, size 0x26
  379. User Interface name: MonotonicCounter
  380. File:
  381. GUID: f099d67f-71ae-4c36-a3b2-dceb0eb2b7d8
  382. Size: 0x6f8 (data 0x6e0)
  383. Type: 0x07
  384. Attributes: 0x40
  385. State: 0x07
  386. Section 0: type 0x02, size 0x6e0
  387. GUID-defined section
  388. CRC32 subsection container:
  389. Subsection 0: type 0x13, size 0x16
  390. DXE Dependency Expression
  391. Subsection 1: type 0x20, size 0x8
  392. Unknown section type
  393. Subsection 2: type 0x10, size 0x684
  394. PE Image
  395. Subsection 3: type 0x15, size 0x20
  396. User Interface name: WatchDogTimer
  397. File:
  398. GUID: f1efb523-3d59-4888-71bb-eaa5a96628fa
  399. Size: 0x408 (data 0x3f0)
  400. Type: 0x07
  401. Attributes: 0x40
  402. State: 0x07
  403. Section 0: type 0x02, size 0x3f0
  404. GUID-defined section
  405. CRC32 subsection container:
  406. Subsection 0: type 0x13, size 0x6
  407. DXE Dependency Expression
  408. Subsection 1: type 0x20, size 0x8
  409. Unknown section type
  410. Subsection 2: type 0x10, size 0x3a4
  411. PE Image
  412. Subsection 3: type 0x15, size 0x1e
  413. User Interface name: SecurityStub
  414. File:
  415. GUID: bae7599f-3c6b-43b7-f0bd-9ce07aa91aa6
  416. Size: 0x898 (data 0x880)
  417. Type: 0x07
  418. Attributes: 0x40
  419. State: 0x07
  420. Section 0: type 0x02, size 0x880
  421. GUID-defined section
  422. CRC32 subsection container:
  423. Subsection 0: type 0x13, size 0x6
  424. DXE Dependency Expression
  425. Subsection 1: type 0x20, size 0x8
  426. Unknown section type
  427. Subsection 2: type 0x10, size 0x844
  428. PE Image
  429. Subsection 3: type 0x15, size 0x10
  430. User Interface name: CpuIo
  431. File:
  432. GUID: 6f0198aa-1f1d-426d-3eae-39ab633fcc28
  433. Size: 0xd70 (data 0xd58)
  434. Type: 0x07
  435. Attributes: 0x40
  436. State: 0x07
  437. Section 0: type 0x02, size 0xd58
  438. GUID-defined section
  439. CRC32 subsection container:
  440. Subsection 0: type 0x13, size 0x16
  441. DXE Dependency Expression
  442. Subsection 1: type 0x20, size 0x8
  443. Unknown section type
  444. Subsection 2: type 0x10, size 0xd04
  445. PE Image
  446. Subsection 3: type 0x15, size 0x16
  447. User Interface name: Cf9Reset
  448. File:
  449. GUID: 378d7b65-8da9-4773-e4b6-a47826a833e1
  450. Size: 0x19cc (data 0x19b4)
  451. Type: 0x07
  452. Attributes: 0x40
  453. State: 0x07
  454. Section 0: type 0x02, size 0x19b4
  455. GUID-defined section
  456. CRC32 subsection container:
  457. Subsection 0: type 0x13, size 0x3a
  458. DXE Dependency Expression
  459. Subsection 1: type 0x20, size 0x8
  460. Unknown section type
  461. Subsection 2: type 0x10, size 0x1944
  462. PE Image
  463. Subsection 3: type 0x15, size 0x10
  464. User Interface name: PcRtc
  465. File:
  466. GUID: 9f455d3b-2b8a-4c06-0b96-a71b9714b9cd
  467. Size: 0x22c4 (data 0x22ac)
  468. Type: 0x07
  469. Attributes: 0x40
  470. State: 0x07
  471. Section 0: type 0x02, size 0x22ac
  472. GUID-defined section
  473. CRC32 subsection container:
  474. Subsection 0: type 0x13, size 0x28
  475. DXE Dependency Expression
  476. Subsection 1: type 0x20, size 0x8
  477. Unknown section type
  478. Subsection 2: type 0x10, size 0x2244
  479. PE Image
  480. Subsection 3: type 0x15, size 0x1a
  481. User Interface name: StatusCode
  482. File:
  483. GUID: cbd2e4d5-7068-4ff5-62b4-9822b4ad8d60
  484. Size: 0x2954 (data 0x293c)
  485. Type: 0x07
  486. Attributes: 0x40
  487. State: 0x07
  488. Section 0: type 0x02, size 0x293c
  489. GUID-defined section
  490. CRC32 subsection container:
  491. Subsection 0: type 0x13, size 0x3a
  492. DXE Dependency Expression
  493. Subsection 1: type 0x20, size 0x8
  494. Unknown section type
  495. Subsection 2: type 0x10, size 0x28c4
  496. PE Image
  497. Subsection 3: type 0x15, size 0x16
  498. User Interface name: Variable
  499. File:
  500. GUID: efb9e2c9-1161-438a-48a9-2f524e4b740b
  501. Size: 0x15dc (data 0x15c4)
  502. Type: 0x07
  503. Attributes: 0x40
  504. State: 0x07
  505. Section 0: type 0x02, size 0x15c4
  506. GUID-defined section
  507. CRC32 subsection container:
  508. Subsection 0: type 0x13, size 0x5e
  509. DXE Dependency Expression
  510. Subsection 1: type 0x20, size 0x8
  511. Unknown section type
  512. Subsection 2: type 0x10, size 0x1524
  513. PE Image
  514. Subsection 3: type 0x15, size 0x1c
  515. User Interface name: SmmVariable
  516. File:
  517. GUID: cbd2e4d5-7068-4ff5-66b8-9822b4ad8d60
  518. Size: 0x1624 (data 0x160c)
  519. Type: 0x07
  520. Attributes: 0x40
  521. State: 0x07
  522. Section 0: type 0x02, size 0x160c
  523. GUID-defined section
  524. CRC32 subsection container:
  525. Subsection 0: type 0x13, size 0x6
  526. DXE Dependency Expression
  527. Subsection 1: type 0x20, size 0x8
  528. Unknown section type
  529. Subsection 2: type 0x10, size 0x15c4
  530. PE Image
  531. Subsection 3: type 0x15, size 0x1c
  532. User Interface name: EmuVariable
  533. File:
  534. GUID: 3ed700b5-3a13-43be-5094-00122e8b83d7
  535. Size: 0x554 (data 0x53c)
  536. Type: 0x07
  537. Attributes: 0x40
  538. State: 0x07
  539. Section 0: type 0x02, size 0x53c
  540. GUID-defined section
  541. CRC32 subsection container:
  542. Subsection 0: type 0x13, size 0x28
  543. DXE Dependency Expression
  544. Subsection 1: type 0x20, size 0x8
  545. Unknown section type
  546. Subsection 2: type 0x10, size 0x4c4
  547. PE Image
  548. Subsection 3: type 0x15, size 0x2c
  549. User Interface name: DataHubRecordPolicy
  550. File:
  551. GUID: aed6aa78-d5bf-4bc5-c58c-f9ee47cf9299
  552. Size: 0xc1c (data 0xc04)
  553. Type: 0x07
  554. Attributes: 0x40
  555. State: 0x07
  556. Section 0: type 0x02, size 0xc04
  557. GUID-defined section
  558. CRC32 subsection container:
  559. Subsection 0: type 0x13, size 0x16
  560. DXE Dependency Expression
  561. Subsection 1: type 0x20, size 0x8
  562. Unknown section type
  563. Subsection 2: type 0x10, size 0xba4
  564. PE Image
  565. Subsection 3: type 0x15, size 0x22
  566. User Interface name: CapsuleRuntime
  567. File:
  568. GUID: 240612b5-a063-11d4-3a9a-0090273fc14d
  569. Size: 0x2234 (data 0x221c)
  570. Type: 0x07
  571. Attributes: 0x40
  572. State: 0x07
  573. Section 0: type 0x02, size 0x221c
  574. GUID-defined section
  575. CRC32 subsection container:
  576. Subsection 0: type 0x20, size 0x8
  577. Unknown section type
  578. Subsection 1: type 0x10, size 0x21e4
  579. PE Image
  580. Subsection 2: type 0x15, size 0x12
  581. User Interface name: IsaBus
  582. File:
  583. GUID: 93b80003-9fb3-11d4-3a9a-0090273fc14d
  584. Size: 0x29f8 (data 0x29e0)
  585. Type: 0x07
  586. Attributes: 0x40
  587. State: 0x07
  588. Section 0: type 0x02, size 0x29e0
  589. GUID-defined section
  590. CRC32 subsection container:
  591. Subsection 0: type 0x20, size 0x8
  592. Unknown section type
  593. Subsection 1: type 0x10, size 0x29a4
  594. PE Image
  595. Subsection 2: type 0x15, size 0x18
  596. User Interface name: IsaSerial
  597. File:
  598. GUID: 202a2b0e-9a31-4812-91b2-8747df152439
  599. Size: 0x1ff8 (data 0x1fe0)
  600. Type: 0x07
  601. Attributes: 0x40
  602. State: 0x07
  603. Section 0: type 0x02, size 0x1fe0
  604. GUID-defined section
  605. CRC32 subsection container:
  606. Subsection 0: type 0x20, size 0x8
  607. Unknown section type
  608. Subsection 1: type 0x10, size 0x1fa4
  609. PE Image
  610. Subsection 2: type 0x15, size 0x16
  611. User Interface name: Ps2Mouse
  612. File:
  613. GUID: 69fd8e47-a161-4550-1ab0-5594ceb2b2b2
  614. Size: 0x6f34 (data 0x6f1c)
  615. Type: 0x07
  616. Attributes: 0x40
  617. State: 0x07
  618. Section 0: type 0x02, size 0x6f1c
  619. GUID-defined section
  620. CRC32 subsection container:
  621. Subsection 0: type 0x20, size 0x8
  622. Unknown section type
  623. Subsection 1: type 0x10, size 0x6ee4
  624. PE Image
  625. Subsection 2: type 0x15, size 0x12
  626. User Interface name: IdeBus
  627. File:
  628. GUID: c0734d12-7927-432b-6b98-a7e3a35ba005
  629. Size: 0x831c (data 0x8304)
  630. Type: 0x07
  631. Attributes: 0x40
  632. State: 0x07
  633. Section 0: type 0x02, size 0x8304
  634. GUID-defined section
  635. CRC32 subsection container:
  636. Subsection 0: type 0x20, size 0x8
  637. Unknown section type
  638. Subsection 1: type 0x10, size 0x8264
  639. PE Image
  640. Subsection 2: type 0x15, size 0x28
  641. User Interface name: LightPciBusPciBus
  642. Subsection 3: type 0x14, size 0x52
  643. Version
  644. File:
  645. GUID: 75521dd9-dbf3-4f4d-b780-f5144fd74bf8
  646. Size: 0x4050 (data 0x4038)
  647. Type: 0x07
  648. Attributes: 0x40
  649. State: 0x07
  650. Section 0: type 0x02, size 0x4038
  651. GUID-defined section
  652. CRC32 subsection container:
  653. Subsection 0: type 0x20, size 0x8
  654. Unknown section type
  655. Subsection 1: type 0x10, size 0x4004
  656. PE Image
  657. Subsection 2: type 0x15, size 0xe
  658. User Interface name: Ahci
  659. File:
  660. GUID: 31fd7eaf-80a7-435e-0a8e-3f185f8667dd
  661. Size: 0x4010 (data 0x3ff8)
  662. Type: 0x07
  663. Attributes: 0x40
  664. State: 0x07
  665. Section 0: type 0x02, size 0x3ff8
  666. GUID-defined section
  667. CRC32 subsection container:
  668. Subsection 0: type 0x13, size 0x3a
  669. DXE Dependency Expression
  670. Subsection 1: type 0x20, size 0x8
  671. Unknown section type
  672. Subsection 2: type 0x10, size 0x3f84
  673. PE Image
  674. Subsection 3: type 0x15, size 0x14
  675. User Interface name: UsbCore
  676. File:
  677. GUID: b40612b9-a063-11d4-3a9a-0090273fc14d
  678. Size: 0xe34 (data 0xe1c)
  679. Type: 0x07
  680. Attributes: 0x40
  681. State: 0x07
  682. Section 0: type 0x02, size 0xe1c
  683. GUID-defined section
  684. CRC32 subsection container:
  685. Subsection 0: type 0x20, size 0x8
  686. Unknown section type
  687. Subsection 1: type 0x10, size 0xde4
  688. PE Image
  689. Subsection 2: type 0x15, size 0x12
  690. User Interface name: UsbBot
  691. File:
  692. GUID: a3527d16-e6cc-42f5-dbba-bf3de177742b
  693. Size: 0xed4 (data 0xebc)
  694. Type: 0x07
  695. Attributes: 0x40
  696. State: 0x07
  697. Section 0: type 0x02, size 0xebc
  698. GUID-defined section
  699. CRC32 subsection container:
  700. Subsection 0: type 0x20, size 0x8
  701. Unknown section type
  702. Subsection 1: type 0x10, size 0xe84
  703. PE Image
  704. Subsection 2: type 0x15, size 0x12
  705. User Interface name: UsbCbi
  706. File:
  707. GUID: 2d2e62cf-9ecf-43b7-1982-94e7fc713dfe
  708. Size: 0x2b88 (data 0x2b70)
  709. Type: 0x07
  710. Attributes: 0x40
  711. State: 0x07
  712. Section 0: type 0x02, size 0x2b70
  713. GUID-defined section
  714. CRC32 subsection container:
  715. Subsection 0: type 0x13, size 0x16
  716. DXE Dependency Expression
  717. Subsection 1: type 0x20, size 0x8
  718. Unknown section type
  719. Subsection 2: type 0x10, size 0x2b24
  720. PE Image
  721. Subsection 3: type 0x15, size 0x10
  722. User Interface name: UsbKb
  723. File:
  724. GUID: 9fb4b4a7-42c0-4bcd-4085-9bcc6711f83e
  725. Size: 0x21c4 (data 0x21ac)
  726. Type: 0x07
  727. Attributes: 0x40
  728. State: 0x07
  729. Section 0: type 0x02, size 0x21ac
  730. GUID-defined section
  731. CRC32 subsection container:
  732. Subsection 0: type 0x20, size 0x8
  733. Unknown section type
  734. Subsection 1: type 0x10, size 0x2164
  735. PE Image
  736. Subsection 2: type 0x15, size 0x22
  737. User Interface name: UsbMassStorage
  738. File:
  739. GUID: 2d2e62aa-9ecf-43b7-1982-94e7fc713dfe
  740. Size: 0x21b0 (data 0x2198)
  741. Type: 0x07
  742. Attributes: 0x40
  743. State: 0x07
  744. Section 0: type 0x02, size 0x2198
  745. GUID-defined section
  746. CRC32 subsection container:
  747. Subsection 0: type 0x13, size 0x16
  748. DXE Dependency Expression
  749. Subsection 1: type 0x20, size 0x8
  750. Unknown section type
  751. Subsection 2: type 0x10, size 0x2144
  752. PE Image
  753. Subsection 3: type 0x15, size 0x16
  754. User Interface name: UsbMouse
  755. File:
  756. GUID: bdfe430e-8f2a-4db0-9199-6f856594777e
  757. Size: 0x5910 (data 0x58f8)
  758. Type: 0x07
  759. Attributes: 0x40
  760. State: 0x07
  761. Section 0: type 0x02, size 0x58f8
  762. GUID-defined section
  763. CRC32 subsection container:
  764. Subsection 0: type 0x20, size 0x8
  765. Unknown section type
  766. Subsection 1: type 0x10, size 0x58c4
  767. PE Image
  768. Subsection 2: type 0x15, size 0xe
  769. User Interface name: Ehci
  770. File:
  771. GUID: 2fb92efa-2ee0-4bae-b69e-7464125e1ef7
  772. Size: 0x4af0 (data 0x4ad8)
  773. Type: 0x07
  774. Attributes: 0x40
  775. State: 0x07
  776. Section 0: type 0x02, size 0x4ad8
  777. GUID-defined section
  778. CRC32 subsection container:
  779. Subsection 0: type 0x20, size 0x8
  780. Unknown section type
  781. Subsection 1: type 0x10, size 0x4aa4
  782. PE Image
  783. Subsection 2: type 0x15, size 0xe
  784. User Interface name: Uhci
  785. File:
  786. GUID: 240612b7-a063-11d4-3a9a-0090273fc14d
  787. Size: 0x47b4 (data 0x479c)
  788. Type: 0x07
  789. Attributes: 0x40
  790. State: 0x07
  791. Section 0: type 0x02, size 0x479c
  792. GUID-defined section
  793. CRC32 subsection container:
  794. Subsection 0: type 0x20, size 0x8
  795. Unknown section type
  796. Subsection 1: type 0x10, size 0x4764
  797. PE Image
  798. Subsection 2: type 0x15, size 0x12
  799. User Interface name: UsbBus
  800. File:
  801. GUID: 5552575a-7e00-4d61-a4a3-f7547351b49e
  802. Size: 0x3f58 (data 0x3f40)
  803. Type: 0x07
  804. Attributes: 0x40
  805. State: 0x07
  806. Section 0: type 0x02, size 0x3f40
  807. GUID-defined section
  808. CRC32 subsection container:
  809. Subsection 0: type 0x13, size 0x82
  810. DXE Dependency Expression
  811. Subsection 1: type 0x20, size 0x8
  812. Unknown section type
  813. Subsection 2: type 0x10, size 0x3e84
  814. PE Image
  815. Subsection 3: type 0x15, size 0x14
  816. User Interface name: SmmBase
  817. File:
  818. GUID: 9cc55d7d-fbff-431c-14bc-334eaea6052b
  819. Size: 0x2f90 (data 0x2f78)
  820. Type: 0x07
  821. Attributes: 0x40
  822. State: 0x07
  823. Section 0: type 0x02, size 0x2f78
  824. GUID-defined section
  825. CRC32 subsection container:
  826. Subsection 0: type 0x13, size 0x6
  827. DXE Dependency Expression
  828. Subsection 1: type 0x20, size 0x8
  829. Unknown section type
  830. Subsection 2: type 0x10, size 0x2f24
  831. PE Image
  832. Subsection 3: type 0x15, size 0x28
  833. User Interface name: SmmCoreDispatcher
  834. File:
  835. GUID: 7fed72ee-0170-4814-7898-a8fb1864dfaf
  836. Size: 0xfa4 (data 0xf8c)
  837. Type: 0x07
  838. Attributes: 0x40
  839. State: 0x07
  840. Section 0: type 0x02, size 0xf8c
  841. GUID-defined section
  842. CRC32 subsection container:
  843. Subsection 0: type 0x13, size 0x6
  844. DXE Dependency Expression
  845. Subsection 1: type 0x20, size 0x8
  846. Unknown section type
  847. Subsection 2: type 0x10, size 0xf44
  848. PE Image
  849. Subsection 3: type 0x15, size 0x1c
  850. User Interface name: SmmRelocate
  851. File:
  852. GUID: abb74f50-fd2d-4072-21a3-cafc72977efa
  853. Size: 0xe46 (data 0xe2e)
  854. Type: 0x06
  855. Attributes: 0x40
  856. State: 0x07
  857. Section 0: type 0x1b, size 0x6
  858. PEI Dependency Expression
  859. Section 1: type 0x10, size 0xe04
  860. PE Image
  861. Section 2: type 0x15, size 0x22
  862. User Interface name: PeiSmmRelocate
  863. File:
  864. GUID: d9608fcb-72e6-4a81-11be-e81e31db09ec
  865. Size: 0x7e8 (data 0x7d0)
  866. Type: 0x07
  867. Attributes: 0x40
  868. State: 0x07
  869. Section 0: type 0x02, size 0x7d0
  870. GUID-defined section
  871. CRC32 subsection container:
  872. Subsection 0: type 0x13, size 0x16
  873. DXE Dependency Expression
  874. Subsection 1: type 0x20, size 0x8
  875. Unknown section type
  876. Subsection 2: type 0x10, size 0x784
  877. PE Image
  878. Subsection 3: type 0x15, size 0xe
  879. User Interface name: Smrr
  880. File:
  881. GUID: c866bd71-7c79-4bf1-3ba9-066b830d8f9a
  882. Size: 0x2292 (data 0x227a)
  883. Type: 0x06
  884. Attributes: 0x40
  885. State: 0x07
  886. Section 0: type 0x1b, size 0x6
  887. PEI Dependency Expression
  888. Section 1: type 0x10, size 0x2264
  889. PE Image
  890. Section 2: type 0x15, size 0xe
  891. User Interface name: MpS3
  892. File:
  893. GUID: 7c79ac8c-5e6c-4e3d-6fba-c260ee7c172e
  894. Size: 0x13f4 (data 0x13dc)
  895. Type: 0x07
  896. Attributes: 0x40
  897. State: 0x07
  898. Section 0: type 0x02, size 0x13dc
  899. GUID-defined section
  900. CRC32 subsection container:
  901. Subsection 0: type 0x13, size 0x16
  902. DXE Dependency Expression
  903. Subsection 1: type 0x20, size 0x8
  904. Unknown section type
  905. Subsection 2: type 0x10, size 0x1384
  906. PE Image
  907. Subsection 3: type 0x15, size 0x1a
  908. User Interface name: SmmRuntime
  909. File:
  910. GUID: 8d3be215-d6f6-4264-a6be-28073fb13aea
  911. Size: 0x1230 (data 0x1218)
  912. Type: 0x07
  913. Attributes: 0x40
  914. State: 0x07
  915. Section 0: type 0x02, size 0x1218
  916. GUID-defined section
  917. CRC32 subsection container:
  918. Subsection 0: type 0x13, size 0x16
  919. DXE Dependency Expression
  920. Subsection 1: type 0x20, size 0x8
  921. Unknown section type
  922. Subsection 2: type 0x10, size 0x11c4
  923. PE Image
  924. Subsection 3: type 0x15, size 0x16
  925. User Interface name: SmmThunk
  926. File:
  927. GUID: 981a25e0-0d83-436d-8491-c1aa53bb143a
  928. Size: 0x968 (data 0x950)
  929. Type: 0x07
  930. Attributes: 0x40
  931. State: 0x07
  932. Section 0: type 0x02, size 0x950
  933. GUID-defined section
  934. CRC32 subsection container:
  935. Subsection 0: type 0x13, size 0x16
  936. DXE Dependency Expression
  937. Subsection 1: type 0x20, size 0x8
  938. Unknown section type
  939. Subsection 2: type 0x10, size 0x8e4
  940. PE Image
  941. Subsection 3: type 0x15, size 0x2e
  942. User Interface name: SmmOemServicesDriver
  943. File:
  944. GUID: f50251da-b608-4177-1a99-7df4278c9753
  945. Size: 0xc90 (data 0xc78)
  946. Type: 0x07
  947. Attributes: 0x40
  948. State: 0x07
  949. Section 0: type 0x02, size 0xc78
  950. GUID-defined section
  951. CRC32 subsection container:
  952. Subsection 0: type 0x13, size 0x16
  953. DXE Dependency Expression
  954. Subsection 1: type 0x20, size 0x8
  955. Unknown section type
  956. Subsection 2: type 0x10, size 0xc24
  957. PE Image
  958. Subsection 3: type 0x15, size 0x18
  959. User Interface name: SmmAccess
  960. File:
  961. GUID: 8d6756b9-e55e-4d6a-a5a3-5e4d72ddf772
  962. Size: 0x2148 (data 0x2130)
  963. Type: 0x07
  964. Attributes: 0x40
  965. State: 0x07
  966. Section 0: type 0x02, size 0x2130
  967. GUID-defined section
  968. CRC32 subsection container:
  969. Subsection 0: type 0x13, size 0x28
  970. DXE Dependency Expression
  971. Subsection 1: type 0x20, size 0x8
  972. Unknown section type
  973. Subsection 2: type 0x10, size 0x20c4
  974. PE Image
  975. Subsection 3: type 0x15, size 0x20
  976. User Interface name: PciHostBridge
  977. File:
  978. GUID: 3151f203-546b-4683-72ad-d8b16bc7d75e
  979. Size: 0xcc4 (data 0xcac)
  980. Type: 0x07
  981. Attributes: 0x40
  982. State: 0x07
  983. Section 0: type 0x02, size 0xcac
  984. GUID-defined section
  985. CRC32 subsection container:
  986. Subsection 0: type 0x13, size 0x28
  987. DXE Dependency Expression
  988. Subsection 1: type 0x20, size 0x8
  989. Unknown section type
  990. Subsection 2: type 0x10, size 0xc44
  991. PE Image
  992. Subsection 3: type 0x15, size 0x1a
  993. User Interface name: DxeMchInit
  994. File:
  995. GUID: cdc204a8-f5db-44f6-c6bd-446eee54316f
  996. Size: 0x1e60 (data 0x1e48)
  997. Type: 0x07
  998. Attributes: 0x40
  999. State: 0x07
  1000. Section 0: type 0x02, size 0x1e48
  1001. GUID-defined section
  1002. CRC32 subsection container:
  1003. Subsection 0: type 0x13, size 0x4c
  1004. DXE Dependency Expression
  1005. Subsection 1: type 0x10, size 0x1dc4
  1006. PE Image
  1007. Subsection 2: type 0x15, size 0x1c
  1008. User Interface name: IgdOpRegion
  1009. File:
  1010. GUID: 90f1e37a-a26b-4e50-199a-f9dd65f9f173
  1011. Size: 0x33a0 (data 0x3388)
  1012. Type: 0x07
  1013. Attributes: 0x40
  1014. State: 0x07
  1015. Section 0: type 0x02, size 0x3388
  1016. GUID-defined section
  1017. CRC32 subsection container:
  1018. Subsection 0: type 0x13, size 0x16
  1019. DXE Dependency Expression
  1020. Subsection 1: type 0x10, size 0x3344
  1021. PE Image
  1022. Subsection 2: type 0x15, size 0xe
  1023. User Interface name: HDCP
  1024. File:
  1025. GUID: 3aa01781-5e40-4524-cab6-1acb3b45578c
  1026. Size: 0x11f0 (data 0x11d8)
  1027. Type: 0x07
  1028. Attributes: 0x40
  1029. State: 0x07
  1030. Section 0: type 0x02, size 0x11d8
  1031. GUID-defined section
  1032. CRC32 subsection container:
  1033. Subsection 0: type 0x13, size 0x82
  1034. DXE Dependency Expression
  1035. Subsection 1: type 0x10, size 0x1124
  1036. PE Image
  1037. Subsection 2: type 0x15, size 0x14
  1038. User Interface name: HDCPSMI
  1039. File:
  1040. GUID: ca49b5c8-e977-4612-0687-91b82cd14c87
  1041. Size: 0x14c (data 0x134)
  1042. Type: 0x02
  1043. Attributes: 0x40
  1044. State: 0x07
  1045. Section 0: type 0x19, size 0x134
  1046. RAW
  1047. File:
  1048. GUID: b09cb87c-67d8-412b-9dbb-9f4b214d720a
  1049. Size: 0xe68 (data 0xe50)
  1050. Type: 0x07
  1051. Attributes: 0x40
  1052. State: 0x07
  1053. Section 0: type 0x02, size 0xe50
  1054. GUID-defined section
  1055. CRC32 subsection container:
  1056. Subsection 0: type 0x13, size 0x3a
  1057. DXE Dependency Expression
  1058. Subsection 1: type 0x20, size 0x8
  1059. Unknown section type
  1060. Subsection 2: type 0x10, size 0xde4
  1061. PE Image
  1062. Subsection 3: type 0x15, size 0xc
  1063. User Interface name: VTd
  1064. File:
  1065. GUID: 21094ecb-9f20-4781-4bae-50728b389a6e
  1066. Size: 0x37b8 (data 0x37a0)
  1067. Type: 0x07
  1068. Attributes: 0x40
  1069. State: 0x07
  1070. Section 0: type 0x02, size 0x37a0
  1071. GUID-defined section
  1072. CRC32 subsection container:
  1073. Subsection 0: type 0x13, size 0x3a
  1074. DXE Dependency Expression
  1075. Subsection 1: type 0x20, size 0x8
  1076. Unknown section type
  1077. Subsection 2: type 0x10, size 0x3724
  1078. PE Image
  1079. Subsection 3: type 0x15, size 0x1a
  1080. User Interface name: DxeIchInit
  1081. File:
  1082. GUID: bb65942b-521f-4ec3-f9ba-a92540cf60d2
  1083. Size: 0x3204 (data 0x31ec)
  1084. Type: 0x07
  1085. Attributes: 0x40
  1086. State: 0x07
  1087. Section 0: type 0x02, size 0x31ec
  1088. GUID-defined section
  1089. CRC32 subsection container:
  1090. Subsection 0: type 0x20, size 0x8
  1091. Unknown section type
  1092. Subsection 1: type 0x10, size 0x31a4
  1093. PE Image
  1094. Subsection 2: type 0x15, size 0x22
  1095. User Interface name: SataController
  1096. File:
  1097. GUID: e052d8a6-224a-4c32-378d-2e0ae162364d
  1098. Size: 0x16c4 (data 0x16ac)
  1099. Type: 0x07
  1100. Attributes: 0x40
  1101. State: 0x07
  1102. Section 0: type 0x02, size 0x16ac
  1103. GUID-defined section
  1104. CRC32 subsection container:
  1105. Subsection 0: type 0x13, size 0x28
  1106. DXE Dependency Expression
  1107. Subsection 1: type 0x20, size 0x8
  1108. Unknown section type
  1109. Subsection 2: type 0x10, size 0x1644
  1110. PE Image
  1111. Subsection 3: type 0x15, size 0x1c
  1112. User Interface name: DxeIchSmbus
  1113. File:
  1114. GUID: a0bad9f7-ab78-491b-83b5-c52b7f84b9e0
  1115. Size: 0xa7c (data 0xa64)
  1116. Type: 0x07
  1117. Attributes: 0x40
  1118. State: 0x07
  1119. Section 0: type 0x02, size 0xa64
  1120. GUID-defined section
  1121. CRC32 subsection container:
  1122. Subsection 0: type 0x20, size 0x8
  1123. Unknown section type
  1124. Subsection 1: type 0x10, size 0xa24
  1125. PE Image
  1126. Subsection 2: type 0x15, size 0x1a
  1127. User Interface name: SmmControl
  1128. File:
  1129. GUID: b0d6ed53-b844-43f5-2fbd-61095264e77e
  1130. Size: 0x4350 (data 0x4338)
  1131. Type: 0x07
  1132. Attributes: 0x40
  1133. State: 0x07
  1134. Section 0: type 0x02, size 0x4338
  1135. GUID-defined section
  1136. CRC32 subsection container:
  1137. Subsection 0: type 0x13, size 0x28
  1138. DXE Dependency Expression
  1139. Subsection 1: type 0x20, size 0x8
  1140. Unknown section type
  1141. Subsection 2: type 0x10, size 0x42c4
  1142. PE Image
  1143. Subsection 3: type 0x15, size 0x26
  1144. User Interface name: IchSmmDispatcher
  1145. File:
  1146. GUID: 501737ab-9d1a-4856-d386-7f1287fa5a55
  1147. Size: 0x10a38 (data 0x10a20)
  1148. Type: 0x02
  1149. Attributes: 0x40
  1150. State: 0x07
  1151. Section 0: type 0x02, size 0x10a20
  1152. GUID-defined section
  1153. CRC32 subsection container:
  1154. Subsection 0: type 0x19, size 0x10a04
  1155. RAW
  1156. File:
  1157. GUID: b017c09d-edc1-4940-3eb1-57e95660c90f
  1158. Size: 0x4238 (data 0x4220)
  1159. Type: 0x02
  1160. Attributes: 0x40
  1161. State: 0x07
  1162. Section 0: type 0x02, size 0x4220
  1163. GUID-defined section
  1164. CRC32 subsection container:
  1165. Subsection 0: type 0x19, size 0x4204
  1166. RAW
  1167. File:
  1168. GUID: c194c6ea-b68c-4981-4bb6-9bd271474b20
  1169. Size: 0x2070 (data 0x2058)
  1170. Type: 0x07
  1171. Attributes: 0x40
  1172. State: 0x07
  1173. Section 0: type 0x02, size 0x2058
  1174. GUID-defined section
  1175. CRC32 subsection container:
  1176. Subsection 0: type 0x13, size 0x6
  1177. DXE Dependency Expression
  1178. Subsection 1: type 0x20, size 0x8
  1179. Unknown section type
  1180. Subsection 2: type 0x10, size 0x2004
  1181. PE Image
  1182. Subsection 3: type 0x15, size 0x26
  1183. User Interface name: RuntimeDxeIchSpi
  1184. File:
  1185. GUID: fc1b7640-3466-4c06-ccb1-1c935394b5c2
  1186. Size: 0xab8 (data 0xaa0)
  1187. Type: 0x07
  1188. Attributes: 0x40
  1189. State: 0x07
  1190. Section 0: type 0x02, size 0xaa0
  1191. GUID-defined section
  1192. CRC32 subsection container:
  1193. Subsection 0: type 0x13, size 0x16
  1194. DXE Dependency Expression
  1195. Subsection 1: type 0x20, size 0x8
  1196. Unknown section type
  1197. Subsection 2: type 0x10, size 0xa44
  1198. PE Image
  1199. Subsection 3: type 0x15, size 0x20
  1200. User Interface name: IchSerialGpio
  1201. File:
  1202. GUID: 2374eddf-f203-4fc0-0ea2-61bad73089d6
  1203. Size: 0x151c (data 0x1504)
  1204. Type: 0x07
  1205. Attributes: 0x40
  1206. State: 0x07
  1207. Section 0: type 0x02, size 0x1504
  1208. GUID-defined section
  1209. CRC32 subsection container:
  1210. Subsection 0: type 0x13, size 0x28
  1211. DXE Dependency Expression
  1212. Subsection 1: type 0x20, size 0x8
  1213. Unknown section type
  1214. Subsection 2: type 0x10, size 0x14a4
  1215. PE Image
  1216. Subsection 3: type 0x15, size 0x12
  1217. User Interface name: IoTrap
  1218. File:
  1219. GUID: de5b1e13-1427-453f-c4ac-cdeb0e15797e
  1220. Size: 0x1558 (data 0x1540)
  1221. Type: 0x07
  1222. Attributes: 0x40
  1223. State: 0x07
  1224. Section 0: type 0x02, size 0x1540
  1225. GUID-defined section
  1226. CRC32 subsection container:
  1227. Subsection 0: type 0x13, size 0x5e
  1228. DXE Dependency Expression
  1229. Subsection 1: type 0x20, size 0x8
  1230. Unknown section type
  1231. Subsection 2: type 0x10, size 0x14a4
  1232. PE Image
  1233. Subsection 3: type 0x15, size 0x18
  1234. User Interface name: IchS3Save
  1235. File:
  1236. GUID: dbb5f303-214d-41c4-a3be-a1b56a42da8b
  1237. Size: 0x18b8 (data 0x18a0)
  1238. Type: 0x07
  1239. Attributes: 0x40
  1240. State: 0x07
  1241. Section 0: type 0x02, size 0x18a0
  1242. GUID-defined section
  1243. CRC32 subsection container:
  1244. Subsection 0: type 0x13, size 0x16
  1245. DXE Dependency Expression
  1246. Subsection 1: type 0x20, size 0x8
  1247. Unknown section type
  1248. Subsection 2: type 0x10, size 0x1844
  1249. PE Image
  1250. Subsection 3: type 0x15, size 0x20
  1251. User Interface name: IsaAcpiDriver
  1252. File:
  1253. GUID: 1e469095-efc8-4147-db97-4d68b727e2e0
  1254. Size: 0x4a7c (data 0x4a64)
  1255. Type: 0x07
  1256. Attributes: 0x40
  1257. State: 0x07
  1258. Section 0: type 0x02, size 0x4a64
  1259. GUID-defined section
  1260. CRC32 subsection container:
  1261. Subsection 0: type 0x13, size 0x16
  1262. DXE Dependency Expression
  1263. Subsection 1: type 0x20, size 0x8
  1264. Unknown section type
  1265. Subsection 2: type 0x10, size 0x4a04
  1266. PE Image
  1267. Subsection 3: type 0x15, size 0x22
  1268. User Interface name: FwBlockService
  1269. File:
  1270. GUID: 74d936fa-d8bd-4633-4db6-6424bdd23d24
  1271. Size: 0x3264 (data 0x324c)
  1272. Type: 0x07
  1273. Attributes: 0x40
  1274. State: 0x07
  1275. Section 0: type 0x02, size 0x324c
  1276. GUID-defined section
  1277. CRC32 subsection container:
  1278. Subsection 0: type 0x13, size 0x3a
  1279. DXE Dependency Expression
  1280. Subsection 1: type 0x20, size 0x8
  1281. Unknown section type
  1282. Subsection 2: type 0x10, size 0x31c4
  1283. PE Image
  1284. Subsection 3: type 0x15, size 0x28
  1285. User Interface name: SmmFwBlockService
  1286. File:
  1287. GUID: 1967dd9b-b72c-4328-808c-d4acfc83fdf8
  1288. Size: 0x784 (data 0x76c)
  1289. Type: 0x07
  1290. Attributes: 0x40
  1291. State: 0x07
  1292. Section 0: type 0x02, size 0x76c
  1293. GUID-defined section
  1294. CRC32 subsection container:
  1295. Subsection 0: type 0x13, size 0x6
  1296. DXE Dependency Expression
  1297. Subsection 1: type 0x20, size 0x8
  1298. Unknown section type
  1299. Subsection 2: type 0x10, size 0x724
  1300. PE Image
  1301. Subsection 3: type 0x15, size 0x1a
  1302. User Interface name: PciHotPlug
  1303. File:
  1304. GUID: 0e664c9f-8d6a-4763-ed8f-cb61c376232d
  1305. Size: 0x860 (data 0x848)
  1306. Type: 0x07
  1307. Attributes: 0x40
  1308. State: 0x07
  1309. Section 0: type 0x02, size 0x848
  1310. GUID-defined section
  1311. CRC32 subsection container:
  1312. Subsection 0: type 0x13, size 0x16
  1313. DXE Dependency Expression
  1314. Subsection 1: type 0x20, size 0x8
  1315. Unknown section type
  1316. Subsection 2: type 0x10, size 0x7e4
  1317. PE Image
  1318. Subsection 3: type 0x15, size 0x26
  1319. User Interface name: BootOptionPolicy
  1320. File:
  1321. GUID: fe3542fe-c1d3-4ef8-7c65-8048606ff670
  1322. Size: 0x49928 (data 0x49910)
  1323. Type: 0x07
  1324. Attributes: 0x40
  1325. State: 0x07
  1326. Section 0: type 0x02, size 0x49910
  1327. GUID-defined section
  1328. CRC32 subsection container:
  1329. Subsection 0: type 0x13, size 0x28
  1330. DXE Dependency Expression
  1331. Subsection 1: type 0x20, size 0x8
  1332. Unknown section type
  1333. Subsection 2: type 0x10, size 0x498a4
  1334. PE Image
  1335. Subsection 3: type 0x15, size 0x1e
  1336. User Interface name: SetupUtility
  1337. File:
  1338. GUID: 94edd12a-419b-447f-3494-9b3b70783903
  1339. Size: 0x1edc (data 0x1ec4)
  1340. Type: 0x07
  1341. Attributes: 0x40
  1342. State: 0x07
  1343. Section 0: type 0x02, size 0x1ec4
  1344. GUID-defined section
  1345. CRC32 subsection container:
  1346. Subsection 0: type 0x13, size 0x5e
  1347. DXE Dependency Expression
  1348. Subsection 1: type 0x20, size 0x8
  1349. Unknown section type
  1350. Subsection 2: type 0x10, size 0x1e24
  1351. PE Image
  1352. Subsection 3: type 0x15, size 0x1c
  1353. User Interface name: DxePlatform
  1354. File:
  1355. GUID: fda14fa3-affc-469a-bbb7-34bcdd4ac096
  1356. Size: 0x4b4 (data 0x49c)
  1357. Type: 0x07
  1358. Attributes: 0x40
  1359. State: 0x07
  1360. Section 0: type 0x02, size 0x49c
  1361. GUID-defined section
  1362. CRC32 subsection container:
  1363. Subsection 0: type 0x13, size 0x16
  1364. DXE Dependency Expression
  1365. Subsection 1: type 0x20, size 0x8
  1366. Unknown section type
  1367. Subsection 2: type 0x10, size 0x444
  1368. PE Image
  1369. Subsection 3: type 0x15, size 0x1c
  1370. User Interface name: PlatformIde
  1371. File:
  1372. GUID: f7731b4c-58a2-4df4-8089-5645d39ece58
  1373. Size: 0x5288 (data 0x5270)
  1374. Type: 0x07
  1375. Attributes: 0x40
  1376. State: 0x07
  1377. Section 0: type 0x02, size 0x5270
  1378. GUID-defined section
  1379. CRC32 subsection container:
  1380. Subsection 0: type 0x13, size 0x5e
  1381. DXE Dependency Expression
  1382. Subsection 1: type 0x20, size 0x8
  1383. Unknown section type
  1384. Subsection 2: type 0x10, size 0x51c4
  1385. PE Image
  1386. Subsection 3: type 0x15, size 0x26
  1387. User Interface name: PowerManagement2
  1388. File:
  1389. GUID: 161be597-e9c5-49db-50ae-c462ab54eeda
  1390. Size: 0x1705 (data 0x16ed)
  1391. Type: 0x02
  1392. Attributes: 0x40
  1393. State: 0x07
  1394. Section 0: type 0x19, size 0x53b
  1395. RAW
  1396. Section 1: type 0x19, size 0x479
  1397. RAW
  1398. Section 2: type 0x19, size 0x25d
  1399. RAW
  1400. Section 3: type 0x19, size 0x91
  1401. RAW
  1402. Section 4: type 0x19, size 0x1d3
  1403. RAW
  1404. Section 5: type 0x19, size 0x213
  1405. RAW
  1406. Section 6: type 0x19, size 0x659
  1407. RAW
  1408. File:
  1409. GUID: 99c20a37-042a-46e2-f480-e4027fdbc86f
  1410. Size: 0x9280 (data 0x9268)
  1411. Type: 0x07
  1412. Attributes: 0x40
  1413. State: 0x07
  1414. Section 0: type 0x02, size 0x9268
  1415. GUID-defined section
  1416. CRC32 subsection container:
  1417. Subsection 0: type 0x13, size 0x82
  1418. DXE Dependency Expression
  1419. Subsection 1: type 0x20, size 0x8
  1420. Unknown section type
  1421. Subsection 2: type 0x10, size 0x91a4
  1422. PE Image
  1423. Subsection 3: type 0x15, size 0x1c
  1424. User Interface name: SmmPlatform
  1425. File:
  1426. GUID: 7b7b65b6-e350-4139-e48f-665772d32a47
  1427. Size: 0x1ee0 (data 0x1ec8)
  1428. Type: 0x07
  1429. Attributes: 0x40
  1430. State: 0x07
  1431. Section 0: type 0x02, size 0x1ec8
  1432. GUID-defined section
  1433. CRC32 subsection container:
  1434. Subsection 0: type 0x13, size 0x70
  1435. DXE Dependency Expression
  1436. Subsection 1: type 0x20, size 0x8
  1437. Unknown section type
  1438. Subsection 2: type 0x10, size 0x1e24
  1439. PE Image
  1440. Subsection 3: type 0x15, size 0x10
  1441. User Interface name: Ihisi
  1442. File:
  1443. GUID: 30806658-1e9c-4a13-1e97-707a69e958c8
  1444. Size: 0x12a4 (data 0x128c)
  1445. Type: 0x07
  1446. Attributes: 0x40
  1447. State: 0x07
  1448. Section 0: type 0x02, size 0x128c
  1449. GUID-defined section
  1450. CRC32 subsection container:
  1451. Subsection 0: type 0x13, size 0x5e
  1452. DXE Dependency Expression
  1453. Subsection 1: type 0x20, size 0x8
  1454. Unknown section type
  1455. Subsection 2: type 0x10, size 0x11e4
  1456. PE Image
  1457. Subsection 3: type 0x15, size 0x22
  1458. User Interface name: Int15Microcode
  1459. File:
  1460. GUID: cc1baa36-11eb-45cc-dc9a-7565e273ac70
  1461. Size: 0x1f74 (data 0x1f5c)
  1462. Type: 0x07
  1463. Attributes: 0x40
  1464. State: 0x07
  1465. Section 0: type 0x02, size 0x1f5c
  1466. GUID-defined section
  1467. CRC32 subsection container:
  1468. Subsection 0: type 0x13, size 0x5e
  1469. DXE Dependency Expression
  1470. Subsection 1: type 0x20, size 0x8
  1471. Unknown section type
  1472. Subsection 2: type 0x10, size 0x1ec4
  1473. PE Image
  1474. Subsection 3: type 0x15, size 0x12
  1475. User Interface name: SmmPnp
  1476. File:
  1477. GUID: eaf59c0e-bd46-413a-e99a-dd9f6d1a927d
  1478. Size: 0x441c (data 0x4404)
  1479. Type: 0x07
  1480. Attributes: 0x40
  1481. State: 0x07
  1482. Section 0: type 0x02, size 0x4404
  1483. GUID-defined section
  1484. CRC32 subsection container:
  1485. Subsection 0: type 0x13, size 0x28
  1486. DXE Dependency Expression
  1487. Subsection 1: type 0x20, size 0x8
  1488. Unknown section type
  1489. Subsection 2: type 0x10, size 0x43a4
  1490. PE Image
  1491. Subsection 3: type 0x15, size 0x12
  1492. User Interface name: Smbios
  1493. File:
  1494. GUID: eda791a4-384b-4906-d189-ee4dc972fe4a
  1495. Size: 0x14bc (data 0x14a4)
  1496. Type: 0x07
  1497. Attributes: 0x40
  1498. State: 0x07
  1499. Section 0: type 0x02, size 0x14a4
  1500. GUID-defined section
  1501. CRC32 subsection container:
  1502. Subsection 0: type 0x13, size 0x3a
  1503. DXE Dependency Expression
  1504. Subsection 1: type 0x20, size 0x8
  1505. Unknown section type
  1506. Subsection 2: type 0x10, size 0x1424
  1507. PE Image
  1508. Subsection 3: type 0x15, size 0x1e
  1509. User Interface name: SmbiosMemory
  1510. File:
  1511. GUID: ef0c99b6-b1d3-4025-0594-bf6a560fe0e0
  1512. Size: 0x2720 (data 0x2708)
  1513. Type: 0x07
  1514. Attributes: 0x40
  1515. State: 0x07
  1516. Section 0: type 0x02, size 0x2708
  1517. GUID-defined section
  1518. CRC32 subsection container:
  1519. Subsection 0: type 0x13, size 0x5e
  1520. DXE Dependency Expression
  1521. Subsection 1: type 0x20, size 0x8
  1522. Unknown section type
  1523. Subsection 2: type 0x10, size 0x2664
  1524. PE Image
  1525. Subsection 3: type 0x15, size 0x1e
  1526. User Interface name: MiscSubclass
  1527. File:
  1528. GUID: 708b48e3-ff04-42ce-ba8d-46ce6950d7ad
  1529. Size: 0xb1c (data 0xb04)
  1530. Type: 0x07
  1531. Attributes: 0x40
  1532. State: 0x07
  1533. Section 0: type 0x02, size 0xb04
  1534. GUID-defined section
  1535. CRC32 subsection container:
  1536. Subsection 0: type 0x20, size 0x8
  1537. Unknown section type
  1538. Subsection 1: type 0x10, size 0xac4
  1539. PE Image
  1540. Subsection 2: type 0x15, size 0x1c
  1541. User Interface name: SysPassword
  1542. File:
  1543. GUID: fd0221f3-e519-4925-06b4-3858bb430f26
  1544. Size: 0xdbc (data 0xda4)
  1545. Type: 0x07
  1546. Attributes: 0x40
  1547. State: 0x07
  1548. Section 0: type 0x02, size 0xda4
  1549. GUID-defined section
  1550. CRC32 subsection container:
  1551. Subsection 0: type 0x13, size 0x16
  1552. DXE Dependency Expression
  1553. Subsection 1: type 0x20, size 0x8
  1554. Unknown section type
  1555. Subsection 2: type 0x10, size 0xd44
  1556. PE Image
  1557. Subsection 3: type 0x15, size 0x24
  1558. User Interface name: PasswordConsole
  1559. File:
  1560. GUID: 98e16629-d3ca-49b3-11af-30be8ad14312
  1561. Size: 0x3548 (data 0x3530)
  1562. Type: 0x07
  1563. Attributes: 0x40
  1564. State: 0x07
  1565. Section 0: type 0x02, size 0x3530
  1566. GUID-defined section
  1567. CRC32 subsection container:
  1568. Subsection 0: type 0x13, size 0x3a
  1569. DXE Dependency Expression
  1570. Subsection 1: type 0x20, size 0x8
  1571. Unknown section type
  1572. Subsection 2: type 0x10, size 0x34a4
  1573. PE Image
  1574. Subsection 3: type 0x15, size 0x2a
  1575. User Interface name: HddPswdServiceBody
  1576. File:
  1577. GUID: 518ec161-ea1c-4736-629c-6c2e11941234
  1578. Size: 0x132c (data 0x1314)
  1579. Type: 0x07
  1580. Attributes: 0x40
  1581. State: 0x07
  1582. Section 0: type 0x02, size 0x1314
  1583. GUID-defined section
  1584. CRC32 subsection container:
  1585. Subsection 0: type 0x13, size 0x28
  1586. DXE Dependency Expression
  1587. Subsection 1: type 0x20, size 0x8
  1588. Unknown section type
  1589. Subsection 2: type 0x10, size 0x12a4
  1590. PE Image
  1591. Subsection 3: type 0x15, size 0x22
  1592. User Interface name: HddPswdService
  1593. File:
  1594. GUID: fcd337ab-b1d3-4ef8-7c95-8048606ff670
  1595. Size: 0x3fa4 (data 0x3f8c)
  1596. Type: 0x07
  1597. Attributes: 0x40
  1598. State: 0x07
  1599. Section 0: type 0x02, size 0x3f8c
  1600. GUID-defined section
  1601. CRC32 subsection container:
  1602. Subsection 0: type 0x13, size 0x6
  1603. DXE Dependency Expression
  1604. Subsection 1: type 0x20, size 0x8
  1605. Unknown section type
  1606. Subsection 2: type 0x10, size 0x3f44
  1607. PE Image
  1608. Subsection 3: type 0x15, size 0x1c
  1609. User Interface name: HiiDatabase
  1610. File:
  1611. GUID: 4f921013-4f71-4c6c-f8bc-419b2b801932
  1612. Size: 0x19144 (data 0x1912c)
  1613. Type: 0x07
  1614. Attributes: 0x40
  1615. State: 0x07
  1616. Section 0: type 0x02, size 0x1912c
  1617. GUID-defined section
  1618. CRC32 subsection container:
  1619. Subsection 0: type 0x20, size 0x8
  1620. Unknown section type
  1621. Subsection 1: type 0x10, size 0x190e4
  1622. PE Image
  1623. Subsection 2: type 0x15, size 0x24
  1624. User Interface name: OemSetupBrowser
  1625. File:
  1626. GUID: e2eae962-c492-4ca4-1fa1-1a7cbb050a41
  1627. Size: 0xc3c (data 0xc24)
  1628. Type: 0x07
  1629. Attributes: 0x40
  1630. State: 0x07
  1631. Section 0: type 0x02, size 0xc24
  1632. GUID-defined section
  1633. CRC32 subsection container:
  1634. Subsection 0: type 0x13, size 0x6
  1635. DXE Dependency Expression
  1636. Subsection 1: type 0x20, size 0x8
  1637. Unknown section type
  1638. Subsection 2: type 0x10, size 0xbe4
  1639. PE Image
  1640. Subsection 3: type 0x15, size 0x14
  1641. User Interface name: English
  1642. File:
  1643. GUID: b273cc44-e62a-41dc-ad9c-bdb4235459d8
  1644. Size: 0xed0 (data 0xeb8)
  1645. Type: 0x07
  1646. Attributes: 0x40
  1647. State: 0x07
  1648. Section 0: type 0x02, size 0xeb8
  1649. GUID-defined section
  1650. CRC32 subsection container:
  1651. Subsection 0: type 0x13, size 0x28
  1652. DXE Dependency Expression
  1653. Subsection 1: type 0x20, size 0x8
  1654. Unknown section type
  1655. Subsection 2: type 0x10, size 0xe44
  1656. PE Image
  1657. Subsection 3: type 0x15, size 0x26
  1658. User Interface name: UnicodeCollation
  1659. File:
  1660. GUID: 51ccf399-4fdf-4e55-5ba4-e123f84d456a
  1661. Size: 0x133c (data 0x1324)
  1662. Type: 0x07
  1663. Attributes: 0x40
  1664. State: 0x07
  1665. Section 0: type 0x02, size 0x1324
  1666. GUID-defined section
  1667. CRC32 subsection container:
  1668. Subsection 0: type 0x20, size 0x8
  1669. Unknown section type
  1670. Subsection 1: type 0x10, size 0x12e4
  1671. PE Image
  1672. Subsection 2: type 0x15, size 0x1c
  1673. User Interface name: ConPlatform
  1674. File:
  1675. GUID: 408edcec-cf6d-477c-a8a5-b4844e3de281
  1676. Size: 0x4a9c (data 0x4a84)
  1677. Type: 0x07
  1678. Attributes: 0x40
  1679. State: 0x07
  1680. Section 0: type 0x02, size 0x4a84
  1681. GUID-defined section
  1682. CRC32 subsection container:
  1683. Subsection 0: type 0x20, size 0x8
  1684. Unknown section type
  1685. Subsection 1: type 0x10, size 0x4a44
  1686. PE Image
  1687. Subsection 2: type 0x15, size 0x1c
  1688. User Interface name: ConSplitter
  1689. File:
  1690. GUID: cccb0c28-4b24-11d5-5a9a-0090273fc14d
  1691. Size: 0x3444 (data 0x342c)
  1692. Type: 0x07
  1693. Attributes: 0x40
  1694. State: 0x07
  1695. Section 0: type 0x02, size 0x342c
  1696. GUID-defined section
  1697. CRC32 subsection container:
  1698. Subsection 0: type 0x20, size 0x8
  1699. Unknown section type
  1700. Subsection 1: type 0x10, size 0x33e4
  1701. PE Image
  1702. Subsection 2: type 0x15, size 0x24
  1703. User Interface name: GraphicsConsole
  1704. File:
  1705. GUID: 9e863906-a40f-4875-7f97-5b93ff237fc6
  1706. Size: 0x3af8 (data 0x3ae0)
  1707. Type: 0x07
  1708. Attributes: 0x40
  1709. State: 0x07
  1710. Section 0: type 0x02, size 0x3ae0
  1711. GUID-defined section
  1712. CRC32 subsection container:
  1713. Subsection 0: type 0x20, size 0x8
  1714. Unknown section type
  1715. Subsection 1: type 0x10, size 0x3aa4
  1716. PE Image
  1717. Subsection 2: type 0x15, size 0x16
  1718. User Interface name: Terminal
  1719. File:
  1720. GUID: bf89f10d-b205-474f-e396-7a7bb1b4a407
  1721. Size: 0x15b8 (data 0x15a0)
  1722. Type: 0x07
  1723. Attributes: 0x40
  1724. State: 0x07
  1725. Section 0: type 0x02, size 0x15a0
  1726. GUID-defined section
  1727. CRC32 subsection container:
  1728. Subsection 0: type 0x20, size 0x8
  1729. Unknown section type
  1730. Subsection 1: type 0x10, size 0x1564
  1731. PE Image
  1732. Subsection 2: type 0x15, size 0x16
  1733. User Interface name: VgaClass
  1734. File:
  1735. GUID: 506533a6-e626-4500-4fb1-17939c0e5b60
  1736. Size: 0x173c (data 0x1724)
  1737. Type: 0x07
  1738. Attributes: 0x40
  1739. State: 0x07
  1740. Section 0: type 0x02, size 0x1724
  1741. GUID-defined section
  1742. CRC32 subsection container:
  1743. Subsection 0: type 0x20, size 0x8
  1744. Unknown section type
  1745. Subsection 1: type 0x10, size 0x16e4
  1746. PE Image
  1747. Subsection 2: type 0x15, size 0x1c
  1748. User Interface name: AcpiSupport
  1749. File:
  1750. GUID: 7e374e25-8e01-4fee-f287-390c23c606cd
  1751. Size: 0x95d4 (data 0x95bc)
  1752. Type: 0x02
  1753. Attributes: 0x40
  1754. State: 0x07
  1755. Section 0: type 0x19, size 0xf8
  1756. RAW
  1757. Section 1: type 0x19, size 0x44
  1758. RAW
  1759. Section 2: type 0x19, size 0x3c
  1760. RAW
  1761. Section 3: type 0x19, size 0x70
  1762. RAW
  1763. Section 4: type 0x19, size 0x40
  1764. RAW
  1765. Section 5: type 0x19, size 0xa9
  1766. RAW
  1767. Section 6: type 0x19, size 0x9140
  1768. RAW
  1769. Section 7: type 0x19, size 0x17a
  1770. RAW
  1771. Section 8: type 0x19, size 0x2c
  1772. RAW
  1773. File:
  1774. GUID: afc04099-0d39-405d-46be-846f08c51a31
  1775. Size: 0x348c (data 0x3474)
  1776. Type: 0x07
  1777. Attributes: 0x40
  1778. State: 0x07
  1779. Section 0: type 0x02, size 0x3474
  1780. GUID-defined section
  1781. CRC32 subsection container:
  1782. Subsection 0: type 0x13, size 0x4c
  1783. DXE Dependency Expression
  1784. Subsection 1: type 0x20, size 0x8
  1785. Unknown section type
  1786. Subsection 2: type 0x10, size 0x33e4
  1787. PE Image
  1788. Subsection 3: type 0x15, size 0x1e
  1789. User Interface name: AcpiPlatform
  1790. File:
  1791. GUID: 53bcc14f-c24f-434c-94b2-8ed2d4cc1860
  1792. Size: 0xb3c (data 0xb24)
  1793. Type: 0x07
  1794. Attributes: 0x40
  1795. State: 0x07
  1796. Section 0: type 0x02, size 0xb24
  1797. GUID-defined section
  1798. CRC32 subsection container:
  1799. Subsection 0: type 0x13, size 0x6
  1800. DXE Dependency Expression
  1801. Subsection 1: type 0x20, size 0x8
  1802. Unknown section type
  1803. Subsection 2: type 0x10, size 0xae4
  1804. PE Image
  1805. Subsection 3: type 0x15, size 0x14
  1806. User Interface name: DataHub
  1807. File:
  1808. GUID: ca515306-00ce-4032-4e87-11b755ff6866
  1809. Size: 0x5b8 (data 0x5a0)
  1810. Type: 0x07
  1811. Attributes: 0x40
  1812. State: 0x07
  1813. Section 0: type 0x02, size 0x5a0
  1814. GUID-defined section
  1815. CRC32 subsection container:
  1816. Subsection 0: type 0x13, size 0x16
  1817. DXE Dependency Expression
  1818. Subsection 1: type 0x20, size 0x8
  1819. Unknown section type
  1820. Subsection 2: type 0x10, size 0x544
  1821. PE Image
  1822. Subsection 3: type 0x15, size 0x20
  1823. User Interface name: DataHubStdErr
  1824. File:
  1825. GUID: 9c1080ee-d02e-487f-3294-f3bf086ec180
  1826. Size: 0x12cc (data 0x12b4)
  1827. Type: 0x07
  1828. Attributes: 0x40
  1829. State: 0x07
  1830. Section 0: type 0x02, size 0x12b4
  1831. GUID-defined section
  1832. CRC32 subsection container:
  1833. Subsection 0: type 0x13, size 0x16
  1834. DXE Dependency Expression
  1835. Subsection 1: type 0x20, size 0x8
  1836. Unknown section type
  1837. Subsection 2: type 0x10, size 0x1244
  1838. PE Image
  1839. Subsection 3: type 0x15, size 0x32
  1840. User Interface name: LightGenericMemoryTest
  1841. File:
  1842. GUID: e2441b64-7ef4-41fe-a3b3-8caa7f8d3017
  1843. Size: 0xadc (data 0xac4)
  1844. Type: 0x07
  1845. Attributes: 0x40
  1846. State: 0x07
  1847. Section 0: type 0x02, size 0xac4
  1848. GUID-defined section
  1849. CRC32 subsection container:
  1850. Subsection 0: type 0x20, size 0x8
  1851. Unknown section type
  1852. Subsection 1: type 0x10, size 0xa84
  1853. PE Image
  1854. Subsection 2: type 0x15, size 0x1c
  1855. User Interface name: PciPlatform
  1856. File:
  1857. GUID: 79ca4208-bba1-4a9a-5684-e1e66a81484e
  1858. Size: 0xa94 (data 0xa7c)
  1859. Type: 0x07
  1860. Attributes: 0x40
  1861. State: 0x07
  1862. Section 0: type 0x02, size 0xa7c
  1863. GUID-defined section
  1864. CRC32 subsection container:
  1865. Subsection 0: type 0x13, size 0x16
  1866. DXE Dependency Expression
  1867. Subsection 1: type 0x20, size 0x8
  1868. Unknown section type
  1869. Subsection 2: type 0x10, size 0xa24
  1870. PE Image
  1871. Subsection 3: type 0x15, size 0x1a
  1872. User Interface name: Legacy8259
  1873. File:
  1874. GUID: effc8f05-b526-4eb5-6bb3-8cd889923c0c
  1875. Size: 0x638 (data 0x620)
  1876. Type: 0x07
  1877. Attributes: 0x40
  1878. State: 0x07
  1879. Section 0: type 0x02, size 0x620
  1880. GUID-defined section
  1881. CRC32 subsection container:
  1882. Subsection 0: type 0x13, size 0x16
  1883. DXE Dependency Expression
  1884. Subsection 1: type 0x20, size 0x8
  1885. Unknown section type
  1886. Subsection 2: type 0x10, size 0x5c4
  1887. PE Image
  1888. Subsection 3: type 0x15, size 0x1e
  1889. User Interface name: LegacyRegion
  1890. File:
  1891. GUID: c1c418f9-591d-461c-a282-b9cd96dfea86
  1892. Size: 0x654 (data 0x63c)
  1893. Type: 0x07
  1894. Attributes: 0x40
  1895. State: 0x07
  1896. Section 0: type 0x02, size 0x63c
  1897. GUID-defined section
  1898. CRC32 subsection container:
  1899. Subsection 0: type 0x20, size 0x8
  1900. Unknown section type
  1901. Subsection 1: type 0x10, size 0x5e4
  1902. PE Image
  1903. Subsection 2: type 0x15, size 0x34
  1904. User Interface name: IntelIchLegacyInterrupt
  1905. File:
  1906. GUID: 5479662b-6ae4-49e8-bda6-6de4b625811f
  1907. Size: 0x1740 (data 0x1728)
  1908. Type: 0x07
  1909. Attributes: 0x40
  1910. State: 0x07
  1911. Section 0: type 0x02, size 0x1728
  1912. GUID-defined section
  1913. CRC32 subsection container:
  1914. Subsection 0: type 0x20, size 0x8
  1915. Unknown section type
  1916. Subsection 1: type 0x10, size 0x16e4
  1917. PE Image
  1918. Subsection 2: type 0x15, size 0x1e
  1919. User Interface name: BiosKeyboard
  1920. File:
  1921. GUID: 29cf55f8-b675-4f5d-2f8f-b87a3ecfd063
  1922. Size: 0x3798 (data 0x3780)
  1923. Type: 0x07
  1924. Attributes: 0x40
  1925. State: 0x07
  1926. Section 0: type 0x02, size 0x3780
  1927. GUID-defined section
  1928. CRC32 subsection container:
  1929. Subsection 0: type 0x20, size 0x8
  1930. Unknown section type
  1931. Subsection 1: type 0x10, size 0x3744
  1932. PE Image
  1933. Subsection 2: type 0x15, size 0x18
  1934. User Interface name: BiosVideo
  1935. File:
  1936. GUID: 27beda18-ae2b-43c2-6baf-74952441de28
  1937. Size: 0x564 (data 0x54c)
  1938. Type: 0x07
  1939. Attributes: 0x40
  1940. State: 0x07
  1941. Section 0: type 0x02, size 0x54c
  1942. GUID-defined section
  1943. CRC32 subsection container:
  1944. Subsection 0: type 0x13, size 0x28
  1945. DXE Dependency Expression
  1946. Subsection 1: type 0x20, size 0x8
  1947. Unknown section type
  1948. Subsection 2: type 0x10, size 0x4e4
  1949. PE Image
  1950. Subsection 3: type 0x15, size 0x1a
  1951. User Interface name: MonitorKey
  1952. File:
  1953. GUID: f122a15c-c10b-4d54-488f-60f4f06dd1ad
  1954. Size: 0x926c (data 0x9254)
  1955. Type: 0x07
  1956. Attributes: 0x40
  1957. State: 0x07
  1958. Section 0: type 0x02, size 0x9254
  1959. GUID-defined section
  1960. CRC32 subsection container:
  1961. Subsection 0: type 0x13, size 0x70
  1962. DXE Dependency Expression
  1963. Subsection 1: type 0x20, size 0x8
  1964. Unknown section type
  1965. Subsection 2: type 0x10, size 0x91a4
  1966. PE Image
  1967. Subsection 3: type 0x15, size 0x1a
  1968. User Interface name: LegacyBios
  1969. File:
  1970. GUID: f84cfff4-511e-41c8-29b8-519f5152f444
  1971. Size: 0x31b4 (data 0x319c)
  1972. Type: 0x07
  1973. Attributes: 0x40
  1974. State: 0x07
  1975. Section 0: type 0x02, size 0x319c
  1976. GUID-defined section
  1977. CRC32 subsection container:
  1978. Subsection 0: type 0x13, size 0x28
  1979. DXE Dependency Expression
  1980. Subsection 1: type 0x20, size 0x8
  1981. Unknown section type
  1982. Subsection 2: type 0x10, size 0x3124
  1983. PE Image
  1984. Subsection 3: type 0x15, size 0x2a
  1985. User Interface name: LegacyBiosPlatform
  1986. File:
  1987. GUID: 1547b4f3-3e8a-4fef-c881-328ed647ab1a
  1988. Size: 0x14e58 (data 0x14e40)
  1989. Type: 0x02
  1990. Attributes: 0x40
  1991. State: 0x07
  1992. Section 0: type 0x02, size 0x14e40
  1993. GUID-defined section
  1994. CRC32 subsection container:
  1995. Subsection 0: type 0x19, size 0x14e24
  1996. RAW
  1997. File:
  1998. GUID: 8dfae5d4-b50e-4c10-e696-f2c266cacbb6
  1999. Size: 0x10038 (data 0x10020)
  2000. Type: 0x02
  2001. Attributes: 0x40
  2002. State: 0x07
  2003. Section 0: type 0x02, size 0x10020
  2004. GUID-defined section
  2005. CRC32 subsection container:
  2006. Subsection 0: type 0x19, size 0x10004
  2007. RAW
  2008. File:
  2009. GUID: 340ad445-06ef-43f1-9789-fcd67fc27eef
  2010. Size: 0x3a0 (data 0x388)
  2011. Type: 0x02
  2012. Attributes: 0x40
  2013. State: 0x07
  2014. Section 0: type 0x02, size 0x388
  2015. GUID-defined section
  2016. CRC32 subsection container:
  2017. Subsection 0: type 0x19, size 0x369
  2018. RAW
  2019. File:
  2020. GUID: 981a25e0-0d83-436d-8391-c1aa53b81438
  2021. Size: 0xb98 (data 0xb80)
  2022. Type: 0x07
  2023. Attributes: 0x40
  2024. State: 0x07
  2025. Section 0: type 0x02, size 0xb80
  2026. GUID-defined section
  2027. CRC32 subsection container:
  2028. Subsection 0: type 0x13, size 0x16
  2029. DXE Dependency Expression
  2030. Subsection 1: type 0x20, size 0x8
  2031. Unknown section type
  2032. Subsection 2: type 0x10, size 0xb24
  2033. PE Image
  2034. Subsection 3: type 0x15, size 0x1e
  2035. User Interface name: AcerFunction
  2036. File:
  2037. GUID: 36f7da6e-d4cf-41de-4081-363bd12a63a8
  2038. Size: 0x5450 (data 0x5438)
  2039. Type: 0x07
  2040. Attributes: 0x40
  2041. State: 0x07
  2042. Section 0: type 0x02, size 0x5438
  2043. GUID-defined section
  2044. CRC32 subsection container:
  2045. Subsection 0: type 0x13, size 0x4c
  2046. DXE Dependency Expression
  2047. Subsection 1: type 0x20, size 0x8
  2048. Unknown section type
  2049. Subsection 2: type 0x10, size 0x53a4
  2050. PE Image
  2051. Subsection 3: type 0x15, size 0x22
  2052. User Interface name: Int15Interface
  2053. File:
  2054. GUID: 8da47f11-aa15-48c8-a7b0-23ee4852086b
  2055. Size: 0x10f0 (data 0x10d8)
  2056. Type: 0x07
  2057. Attributes: 0x40
  2058. State: 0x07
  2059. Section 0: type 0x02, size 0x10d8
  2060. GUID-defined section
  2061. CRC32 subsection container:
  2062. Subsection 0: type 0x13, size 0x82
  2063. DXE Dependency Expression
  2064. Subsection 1: type 0x20, size 0x8
  2065. Unknown section type
  2066. Subsection 2: type 0x10, size 0x1024
  2067. PE Image
  2068. Subsection 3: type 0x15, size 0xc
  2069. User Interface name: WMI
  2070. File:
  2071. GUID: 1a1e2341-a2fb-42c7-178d-3073d08eb21d
  2072. Size: 0xd4 (data 0xbc)
  2073. Type: 0x02
  2074. Attributes: 0x40
  2075. State: 0x07
  2076. Section 0: type 0x02, size 0xbc
  2077. GUID-defined section
  2078. CRC32 subsection container:
  2079. Subsection 0: type 0x19, size 0xa0
  2080. RAW
  2081. File:
  2082. GUID: dd6569a7-e455-4ee5-bab2-ecda84acbc99
  2083. Size: 0xf0 (data 0xd8)
  2084. Type: 0x02
  2085. Attributes: 0x40
  2086. State: 0x07
  2087. Section 0: type 0x02, size 0xd8
  2088. GUID-defined section
  2089. CRC32 subsection container:
  2090. Subsection 0: type 0x19, size 0xba
  2091. RAW
  2092. File:
  2093. GUID: 2380197b-acb6-4294-1baf-73bf39d636e0
  2094. Size: 0xbdc (data 0xbc4)
  2095. Type: 0x07
  2096. Attributes: 0x40
  2097. State: 0x07
  2098. Section 0: type 0x02, size 0xbc4
  2099. GUID-defined section
  2100. CRC32 subsection container:
  2101. Subsection 0: type 0x13, size 0x28
  2102. DXE Dependency Expression
  2103. Subsection 1: type 0x10, size 0xb64
  2104. PE Image
  2105. Subsection 2: type 0x15, size 0x1a
  2106. User Interface name: Jmb38xInit
  2107. File:
  2108. GUID: f7b0e92d-ab47-4a1d-de8b-41e529eb5a70
  2109. Size: 0x1878 (data 0x1860)
  2110. Type: 0x07
  2111. Attributes: 0x40
  2112. State: 0x07
  2113. Section 0: type 0x02, size 0x1860
  2114. GUID-defined section
  2115. CRC32 subsection container:
  2116. Subsection 0: type 0x13, size 0x3a
  2117. DXE Dependency Expression
  2118. Subsection 1: type 0x20, size 0x8
  2119. Unknown section type
  2120. Subsection 2: type 0x10, size 0x17e4
  2121. PE Image
  2122. Subsection 3: type 0x15, size 0x1a
  2123. User Interface name: UnlockPswd
  2124. File:
  2125. GUID: ffffffff-2008-0402-0812-200804021208
  2126. Size: 0x844 (data 0x82c)
  2127. Type: 0x07
  2128. Attributes: 0x40
  2129. State: 0x07
  2130. Section 0: type 0x02, size 0x82c
  2131. GUID-defined section
  2132. CRC32 subsection container:
  2133. Subsection 0: type 0x13, size 0x6
  2134. DXE Dependency Expression
  2135. Subsection 1: type 0x20, size 0x8
  2136. Unknown section type
  2137. Subsection 2: type 0x10, size 0x7e4
  2138. PE Image
  2139. Subsection 3: type 0x15, size 0x1c
  2140. User Interface name: WhenPostEnd
  2141. File:
  2142. GUID: ef33c296-f64c-4146-04ad-347899702c84
  2143. Size: 0x2b08 (data 0x2af0)
  2144. Type: 0x07
  2145. Attributes: 0x40
  2146. State: 0x07
  2147. Section 0: type 0x02, size 0x2af0
  2148. GUID-defined section
  2149. CRC32 subsection container:
  2150. Subsection 0: type 0x13, size 0x28
  2151. DXE Dependency Expression
  2152. Subsection 1: type 0x20, size 0x8
  2153. Unknown section type
  2154. Subsection 2: type 0x10, size 0x2a84
  2155. PE Image
  2156. Subsection 3: type 0x15, size 0x1e
  2157. User Interface name: SmmUsbLegacy
  2158. Dumping...
  2159. 35b898ca-b6a9-49ce-728c-904735cc49b7.sec0.pe
  2160. 35b898ca-b6a9-49ce-728c-904735cc49b7.sec1.name
  2161. 4d37da42-3a0c-4eda-ebb9-bc0e1db4713b.sec0.pe
  2162. 4d37da42-3a0c-4eda-ebb9-bc0e1db4713b.sec1.name
  2163. 51c9f40c-5243-4473-65b2-b3c8ffaff9fa.sec0.sub0.dxe.depex
  2164. 51c9f40c-5243-4473-65b2-b3c8ffaff9fa.sec0.sub1.unknown.bin
  2165. 51c9f40c-5243-4473-65b2-b3c8ffaff9fa.sec0.sub2.pe
  2166. 51c9f40c-5243-4473-65b2-b3c8ffaff9fa.sec0.sub3.name
  2167. c95e6a28-fb95-49f2-01ae-f38166fd4524.sec0.sub0.dxe.depex
  2168. c95e6a28-fb95-49f2-01ae-f38166fd4524.sec0.sub1.unknown.bin
  2169. c95e6a28-fb95-49f2-01ae-f38166fd4524.sec0.sub2.pe
  2170. c95e6a28-fb95-49f2-01ae-f38166fd4524.sec0.sub3.name
  2171. 1c6b2faf-d8bd-44d1-1ea9-7321b4c2f3d1.sec0.sub0.dxe.depex
  2172. 1c6b2faf-d8bd-44d1-1ea9-7321b4c2f3d1.sec0.sub1.unknown.bin
  2173. 1c6b2faf-d8bd-44d1-1ea9-7321b4c2f3d1.sec0.sub2.pe
  2174. 1c6b2faf-d8bd-44d1-1ea9-7321b4c2f3d1.sec0.sub3.name
  2175. 2bded685-f733-455f-40a8-43a22b791fb3.sec0.sub0.dxe.depex
  2176. 2bded685-f733-455f-40a8-43a22b791fb3.sec0.sub1.unknown.bin
  2177. 2bded685-f733-455f-40a8-43a22b791fb3.sec0.sub2.pe
  2178. 2bded685-f733-455f-40a8-43a22b791fb3.sec0.sub3.name
  2179. 90cb75db-71fc-489d-cfaa-943477ec7212.sec0.sub0.dxe.depex
  2180. 90cb75db-71fc-489d-cfaa-943477ec7212.sec0.sub1.unknown.bin
  2181. 90cb75db-71fc-489d-cfaa-943477ec7212.sec0.sub2.pe
  2182. 90cb75db-71fc-489d-cfaa-943477ec7212.sec0.sub3.name
  2183. a8f634a5-28f1-4456-d5a9-7e24b99bdb65.sec0.sub0.dxe.depex
  2184. a8f634a5-28f1-4456-d5a9-7e24b99bdb65.sec0.sub1.unknown.bin
  2185. a8f634a5-28f1-4456-d5a9-7e24b99bdb65.sec0.sub2.pe
  2186. a8f634a5-28f1-4456-d5a9-7e24b99bdb65.sec0.sub3.name
  2187. a6f691ac-31c8-4444-4c85-e2c1a6950f92.sec0.sub0.dxe.depex
  2188. a6f691ac-31c8-4444-4c85-e2c1a6950f92.sec0.sub1.unknown.bin
  2189. a6f691ac-31c8-4444-4c85-e2c1a6950f92.sec0.sub2.pe
  2190. a6f691ac-31c8-4444-4c85-e2c1a6950f92.sec0.sub3.name
  2191. 62d171cb-78cd-4480-7886-c6a2a797a8de.sec0.sub0.dxe.depex
  2192. 62d171cb-78cd-4480-7886-c6a2a797a8de.sec0.sub1.unknown.bin
  2193. 62d171cb-78cd-4480-7886-c6a2a797a8de.sec0.sub2.pe
  2194. 62d171cb-78cd-4480-7886-c6a2a797a8de.sec0.sub3.name
  2195. 07a9330a-f347-11d4-499a-0090273fc14d.sec0.sub0.dxe.depex
  2196. 07a9330a-f347-11d4-499a-0090273fc14d.sec0.sub1.unknown.bin
  2197. 07a9330a-f347-11d4-499a-0090273fc14d.sec0.sub2.pe
  2198. 07a9330a-f347-11d4-499a-0090273fc14d.sec0.sub3.name
  2199. 4c862fc6-0e54-4e36-8f8c-ff6f3167951f.sec0.sub0.dxe.depex
  2200. 4c862fc6-0e54-4e36-8f8c-ff6f3167951f.sec0.sub1.unknown.bin
  2201. 4c862fc6-0e54-4e36-8f8c-ff6f3167951f.sec0.sub2.pe
  2202. 4c862fc6-0e54-4e36-8f8c-ff6f3167951f.sec0.sub3.name
  2203. b601f8c4-43b7-4784-b195-f4226cb40cee.sec0.sub0.dxe.depex
  2204. b601f8c4-43b7-4784-b195-f4226cb40cee.sec0.sub1.unknown.bin
  2205. b601f8c4-43b7-4784-b195-f4226cb40cee.sec0.sub2.pe
  2206. b601f8c4-43b7-4784-b195-f4226cb40cee.sec0.sub3.name
  2207. ad608272-d07f-4964-1e80-7bd3b7888652.sec0.sub0.dxe.depex
  2208. ad608272-d07f-4964-1e80-7bd3b7888652.sec0.sub1.unknown.bin
  2209. ad608272-d07f-4964-1e80-7bd3b7888652.sec0.sub2.pe
  2210. ad608272-d07f-4964-1e80-7bd3b7888652.sec0.sub3.name
  2211. f099d67f-71ae-4c36-a3b2-dceb0eb2b7d8.sec0.sub0.dxe.depex
  2212. f099d67f-71ae-4c36-a3b2-dceb0eb2b7d8.sec0.sub1.unknown.bin
  2213. f099d67f-71ae-4c36-a3b2-dceb0eb2b7d8.sec0.sub2.pe
  2214. f099d67f-71ae-4c36-a3b2-dceb0eb2b7d8.sec0.sub3.name
  2215. f1efb523-3d59-4888-71bb-eaa5a96628fa.sec0.sub0.dxe.depex
  2216. f1efb523-3d59-4888-71bb-eaa5a96628fa.sec0.sub1.unknown.bin
  2217. f1efb523-3d59-4888-71bb-eaa5a96628fa.sec0.sub2.pe
  2218. f1efb523-3d59-4888-71bb-eaa5a96628fa.sec0.sub3.name
  2219. bae7599f-3c6b-43b7-f0bd-9ce07aa91aa6.sec0.sub0.dxe.depex
  2220. bae7599f-3c6b-43b7-f0bd-9ce07aa91aa6.sec0.sub1.unknown.bin
  2221. bae7599f-3c6b-43b7-f0bd-9ce07aa91aa6.sec0.sub2.pe
  2222. bae7599f-3c6b-43b7-f0bd-9ce07aa91aa6.sec0.sub3.name
  2223. 6f0198aa-1f1d-426d-3eae-39ab633fcc28.sec0.sub0.dxe.depex
  2224. 6f0198aa-1f1d-426d-3eae-39ab633fcc28.sec0.sub1.unknown.bin
  2225. 6f0198aa-1f1d-426d-3eae-39ab633fcc28.sec0.sub2.p
Add Comment
Please, Sign In to add comment