Forum RSS Feed Follow @ Twitter Follow On Facebook

Thread Rating:
  • 2 Vote(s) - 4 Average
  • 1
  • 2
  • 3
  • 4
  • 5
[-]
Welcome
You have to register before you can post on our site.

Username:


Password:





[-]
Latest Threads
HP Victus 16 Bios Splash Screen
Last Post: Onyxcho_Lune
Today 01:22 PM
» Replies: 1
» Views: 346
Huananzhi x79-8d
Last Post: lomajpure
Today 01:13 PM
» Replies: 0
» Views: 20
Alienware M17x R3 Bios Unlock
Last Post: Dudu2002
Today 10:40 AM
» Replies: 12
» Views: 20881
ASUS M2N4-SLI new cpu
Last Post: cocossss
Yesterday 03:21 PM
» Replies: 8
» Views: 2077
[REQUEST] Gigabyte Aorus 15G KC BIOS unl...
Last Post: Dudu2002
10-14-2025 05:10 PM
» Replies: 35
» Views: 15766
Aorus 17G YD unlock bios?
Last Post: Dudu2002
10-14-2025 05:08 PM
» Replies: 1
» Views: 252
Unlocking the Hidden MAINTENANCE Menu of...
Last Post: 123BIOS
10-14-2025 10:31 AM
» Replies: 0
» Views: 403
[REQUEST] Lenovo Z50-70 & Z40-70 (9BCNxx...
Last Post: pitnixu
10-14-2025 04:12 AM
» Replies: 757
» Views: 365652
[REQUEST] Lenovo IdeaPad S400 (6DCNxxWW)...
Last Post: Jamil Missen
10-13-2025 10:04 PM
» Replies: 335
» Views: 166756
[REQUEST] Acer Aspire 5742(G,Z) BIOS Unl...
Last Post: deliter
10-13-2025 09:32 PM
» Replies: 168
» Views: 69797
[REQUEST]wwan whitelist removal ThinkPad...
Last Post: SkyShadow
10-13-2025 02:45 PM
» Replies: 0
» Views: 291
[REQUEST] Lenovo T440(S) (GJETxxWW) Whit...
Last Post: Dudu2002
10-13-2025 07:31 AM
» Replies: 499
» Views: 260728
[REQUEST] Lenovo IdeaPad Gaming 3-15IHU6...
Last Post: Bobby123Patel
10-13-2025 06:38 AM
» Replies: 7
» Views: 4193
[REQUEST] HP Omen 16 InsydeH2O F.18 (08C...
Last Post: Wernexnrs
10-13-2025 04:16 AM
» Replies: 0
» Views: 392
[REQUEST] 775i65g Wolfdale
Last Post: DeathBringer
10-13-2025 01:53 AM
» Replies: 53
» Views: 33890
Dell XPS M1710 Overclock Tab Unlock Mod ...
Last Post: Skeleton
10-12-2025 08:55 PM
» Replies: 0
» Views: 253
[Request] AM3 support for ECS RS485M-M
Last Post: DeathBringer
10-12-2025 07:47 AM
» Replies: 3
» Views: 560
Optiplex 5055 RyzenBIOS Faulty (not upgr...
Last Post: LaszloE
10-12-2025 05:29 AM
» Replies: 2
» Views: 204
Intel Xeon E3 1270 V5 for LGA 1151 (ASUS...
Last Post: abruchez
10-12-2025 03:26 AM
» Replies: 4
» Views: 425
[REQUEST] Lenovo Thinkpad T420 (83ETxxWW...
Last Post: pycckuu4ejl
10-11-2025 07:32 PM
» Replies: 316
» Views: 285442

[REQUEST] Lenovo Thinkpad T430 (G1ETxxWW) Whitelist Removal
hi donovan6000!
thanks for your reply.
i'm lost with your explanation.. hehehehe
i guess i need more research on this issue.
btw, is h20 insyde and phoenix share the same idea/code?
i saw in andy's tool that when i opened my T430 using it, it shown that the bios is EFI/insyde bios.
but all other discussion lead me to believe that it is phoenix's.

(05-08-2014, 02:56 PM)donovan6000 Wrote: Insyde secure flash is certainly annoying lol Tongue

I guess I'll contribute a little bit. Get ready for a long post! When a new rom is flashed via Insyde's programs, it is flashed to a reserved space on the bios chip which is 20MB ( according to the source code). Then immedialey after the computer restarts, then old bios verifies the new bios before overwiriting itself with it. Then the new bios is fully in place.

Since it is the old bios which is verifying the new bios, we can't modify the secure flash verification process since it would require modifying the old rom somehow. Here's some of the code that the old rom preforms at the end of the verifccation process.
Code:
if (*ErrorStatus == EFI_ACCESS_DENIED) {
do {
IfrLibCreatePopUp (8,
&Key,
L"",
L" InsydeH2O - Secure Flash ",
L"",
L" Error : Invalid firmware image!!! ",
L"",
L"",
L" Please press any key to reset system...... ",
L""
);
} while (Key.UnicodeChar == CHAR_NULL);
} else if (*ErrorStatus == EFI_SUCCESS) {
do {
IfrLibCreatePopUp (8,
&Key,
L"",
L" InsydeH2O - Secure Flash ",
L"",
L" Status : Finish!!! ",
L"",
L"",
L" Please press any key to reset system...... ",
L""
);
} while (Key.UnicodeChar == CHAR_NULL);
} else {
do {
IfrLibCreatePopUp (8,
&Key,
L"",
L" InsydeH2O - Secure Flash ",
L"",
L" Error : Firmware update failed!!! ",
L"",
L"",
L" Please press any key to reset system...... ",
L""
);
} while (Key.UnicodeChar == CHAR_NULL);
}

The digital signature for the new rom isn't limited to a fixed hash algorithm. It can be any of the following. Most manufacturers go with one of the asymmetric encryption algorithms, so it's something we can easily change accuratley Undecided
Code:
Sha1
Sha224
Sha245
Sha384
Sha512
Md5
Tdes
Aes
Rsa
Pkcs7
X509

This digital signature is stored in the extra space in the bios rom. You'll notice that the Insyde secure roms are slightly bigger than what they should be. They are also PE32 programs, which you can verify by looking at their header. This program is run by Insyde's flasher programs and it will usually overwrite platforms.ini with an unmodified version to make modifying platforms.ini useless. However my tests have shown that any modifications to platforms.ini's secure flash settings is useless anyway.

So what if we extract the pure rom from the securre flash rom and try to flash that? Thanks to the research done by BDMaster, this is simple Big Grin Unfortunatley InsydeFlash.exe will make sure the rom is secure before flashing it. Special thanks to the person who was willing to test out my ideas on their computer lol
[Image: 4pus9tyemw1jsj8fg.jpg]

So lets bypass that error to make it flash the pure rom.
[Image: d61fv5xyx8yetd3fg.jpg]

So we look up what that error message corresponds to in Iscflash.dll, and we find out that it is a write permission error. And here's where I'm stuck lol Tongue The region of the bios chip that contains the current bios is locked. So we can't directly overwrite it with InsydeFlash.exe. I have some more ideas, but nothing I want to make public right now Wink If I ever buy a laptop that has Insyde Secure bios, then I'll be able to experiment more Sleepy
find
quote
All EFI/UEFI uses Intel's opensource code and compiler as a base. Because of this, they all have to stick to the same standards for everything. That's why we can now develop tools that can easily work on all EFI/UEFI instead of having to focus on just one brand. That's why Insyde, Phoenix, and Aptio are all very similar.
find
quote
Question about the T430, I was looking to run a mini PCIE raid card and I don't get the "unauthorized card inserted" upon start, it just doesn't recognize it at all, would going through these steps to remove the whitelist allow it to be recognized? I'm worried that the card isn't compatible with the motherboard in the first place.
find
quote
(05-12-2014, 07:46 AM)Mysticcal Wrote: Question about the T430, I was looking to run a mini PCIE raid card and I don't get the "unauthorized card inserted" upon start, it just doesn't recognize it at all, would going through these steps to remove the whitelist allow it to be recognized? I'm worried that the card isn't compatible with the motherboard in the first place.

After a request I reuploaded a Bios Mod here new link :

http://rghost.net/55120590

regards

[size=undefined]Your Brain [/size]. . . . It's the best tool U can use ! Wink
[size=undefined]Don't FLASH the Bios Mod if You get a Size Alert, You risk a Brick !!! [/size]
Donate to me for my work, click here BDM
find
quote
Hi and what is the result of your investigation, did you already remove a whitelist, I have the same problem
find
quote
Hello! I have a problem with my Lenovo T430.
I got a new Broadcom PCI card, but the error:
1802: Unauthorized network card is plugged in... 
I tried the no-1802.iso, but in the screen: 

To remove the 1802 error, type "no-1802" (no quotes) and press Enter..

Again, and again i got the A:\

and nothing...

I don't found removed whitelist bios version of me.
Please, help me.


Lenovo T430 with win7 64 bit
BIOS version: UEFI 2.66 G1ETA6WW
BIOS download link: g1uj33us.exe

Thank you very much!
find
quote
I uploaded the BIOS file to rghost.net

http://rghost.net/7tMh5gT79
find
quote
Hi friend,
use this toolo run It as Admin and upload the result file here :

http://rghost.net/58219938

use this tool too and do he same :

http://rghost.net/53128665

let me know
regards

[size=undefined]Your Brain [/size]. . . . It's the best tool U can use ! Wink
[size=undefined]Don't FLASH the Bios Mod if You get a Size Alert, You risk a Brick !!! [/size]
Donate to me for my work, click here BDM
find
quote
okay, this is the backup from my bios.

download link: http://rghost.net/8jkX2rBSK

or the attached rar.


Attached Files
.rar   results.rar (Size: 2.7 MB / Downloads: 9)
find
quote
Hi BDMaster and ucupsz!

I want to ask about progress in BIOS hack for keymapping for Tx30 ThinkPad series... Do you have any progress in this topic? We had already a small discussion on another forum about this issue: look

To bring some more light on our issue: Classic Keyboard on XX30 Series ThinkPads ;-)

Thank you in advance for your answer.

Lenovo Thinkpad T430: 14,1 HD+ / i7-3632QM / Crucial M4 SSD 512GB / HyperX 16GB DDR3 1600MHz CL9 / Intel HD4000 / Sierra AirPrime MC7710 / Expresscard E-SATA & PE4C v2.1 Asus GTX660 / Ultrabay: Toshiba HDD 2,5 1TB / Lenovo 9-cell 70++
Past: Lenovo ThinkPad T420 // on both using Linux
www find
quote


Forum Jump:


Users browsing this thread: 9 Guest(s)