You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I've noticed that me_cleaner requires a full dump when used with -s.
I did some comparison of the full dump processed with ifdtool -M 1 and me_cleaner -s and turns out what is being modified in both cases is only a Flash Descriptor. The final hashsums are equal using both tools, thus the algorithm for enabling AltMeDisable is absolutely same.
ifdtool doesn't require a full dump and it's possible use it on a flash descriptor binary. It's very useful when flashing via Intel Flash Programming Tool (FPT) instead of an external programmer.
Of course in any scenario when the FD is unlocked it permits making a fulldump and flashing it back, but in case of Intel Boot Guard-enabled machines it's a kind of overdo, because we can only do fptw -DESC -D fd.bin and flash it back with fptw -DESC -F fd.bin, which is only 4kb instead of the big full dump resulting into the same effect as using a full dump.
It would be great if a full dump was optional when used with -s on Flash Descriptor binaries.
The text was updated successfully, but these errors were encountered:
I think it is necessary to determine the ME version since that affects the strap location IIRC. You can try to either add an extra switch to specify the assumed version or somehow detect it from the descriptor...
I noticed this too - ifdtool works on my dumps but me_cleaner complains about a corrupted image which it most definitely is not, as I've flashed it to my machine many times successfully.
I've noticed that
me_cleaner
requires a full dump when used with-s
.I did some comparison of the full dump processed with
ifdtool -M 1
andme_cleaner -s
and turns out what is being modified in both cases is only a Flash Descriptor. The final hashsums are equal using both tools, thus the algorithm for enabling AltMeDisable is absolutely same.ifdtool
doesn't require a full dump and it's possible use it on a flash descriptor binary. It's very useful when flashing via Intel Flash Programming Tool (FPT) instead of an external programmer.Of course in any scenario when the FD is unlocked it permits making a fulldump and flashing it back, but in case of
Intel Boot Guard
-enabled machines it's a kind of overdo, because we can only dofptw -DESC -D fd.bin
and flash it back withfptw -DESC -F fd.bin
, which is only 4kb instead of the big full dump resulting into the same effect as using a full dump.It would be great if a full dump was optional when used with
-s
on Flash Descriptor binaries.The text was updated successfully, but these errors were encountered: