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
[REQUEST] Acer Nitro 5 AN515-56 BIOS Unl...
Last Post: Dudu2002
Today 07:25 AM
» Replies: 5
» Views: 873
[REQUEST] Lenovo Y50-70 (9ECNxxWW) BIOS ...
Last Post: Dudu2002
Today 03:52 AM
» Replies: 1972
» Views: 661275
[Request] Acer Aspire Z1620 (h61h aio v1...
Last Post: spingernexx
Yesterday 06:09 PM
» Replies: 2
» Views: 120
[REQUEST] Lenovo G505 (82CNxxWW) Whiteli...
Last Post: khaos
Yesterday 04:15 PM
» Replies: 155
» Views: 55146
Asus Prime b250m plus, RAM compatibility
Last Post: Slayery777
Yesterday 06:23 AM
» Replies: 0
» Views: 128
[REQUEST] Bios Unlock Request Clevo W230...
Last Post: happycrazyman
04-23-2024 03:53 PM
» Replies: 0
» Views: 106
Rog Strix B650E-F BIOS File Extraction
Last Post: panmetrix24
04-23-2024 11:25 AM
» Replies: 0
» Views: 122
[REQUEST] Lenovo G50-70 (9ACNxxWW) White...
Last Post: Pipo89
04-23-2024 06:47 AM
» Replies: 236
» Views: 69592
[REQUEST] Acer Nitro 5 AN517-41 BIOS Unl...
Last Post: onetapxdf
04-23-2024 03:37 AM
» Replies: 11
» Views: 1348
[REQUEST] Lenovo G400S (7BCNxxWW) Whitel...
Last Post: Dudu2002
04-23-2024 03:14 AM
» Replies: 203
» Views: 70568
[REQUEST] Lenovo V570(c) (44CNxxWW) BIOS...
Last Post: d3m3n7r
04-22-2024 05:20 PM
» Replies: 18
» Views: 11163
[REQUEST] Lenovo Y520-15IKBN (4KCNxxWW) ...
Last Post: ati90
04-22-2024 05:02 AM
» Replies: 64
» Views: 36999
[REQUEST] Lenovo G580 (5ECNxxWW) Whiteli...
Last Post: SteamTug
04-22-2024 04:24 AM
» Replies: 1734
» Views: 545587
[REQUEST] Lenovo G410 (79CNxxWW) Whiteli...
Last Post: Dudu2002
04-22-2024 03:58 AM
» Replies: 53
» Views: 10790
Asus h110m-a & xeon e3-1280v5
Last Post: Brutoloco
04-21-2024 08:22 PM
» Replies: 16
» Views: 559
[REQUEST] LG GRAM 14T990 Unlock request
Last Post: riclausk
04-21-2024 12:15 PM
» Replies: 16
» Views: 4248
[REQUEST] SLIC 2.1 for ASRock 880GM-LE F...
Last Post: amijim
04-21-2024 10:27 AM
» Replies: 2
» Views: 134
[REQUEST] Dell Alienware 15 R3 BIOS Unlo...
Last Post: jason.exe
04-21-2024 03:44 AM
» Replies: 1
» Views: 187
[REQUEST] Samsung NP450R5G unlock hide s...
Last Post: magg
04-21-2024 12:54 AM
» Replies: 0
» Views: 199
lenovo e595 20nf bios spw unlock
Last Post: vsteez
04-20-2024 07:56 PM
» Replies: 0
» Views: 188

[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)