Quantcast
Channel: Bios Mods -The Best BIOS Update and Modification Source - All Forums
Viewing all 25959 articles
Browse latest View live

Unlock leishen 911-s1g Advanced Menu

$
0
0
hello everyone,  i search the forum for a modified bios for this laptop, but i not search it. so,  who can help me unlock this bios of hidden advanced mean. thank you help.
-Manufacturer : quanta
-Motherboard Model : nl8e
-Bios revision: P121
-Bios Type: Phoenix BIOS

.bin   bios-911s1g-hp127-unlock-backup.bin (Size: 8 MB / Downloads: 0)

[REQUEST] Acer Nitro AN515-51-70V4 Bios Master Key

$
0
0
I need bios master key.

The unlock code is
1080322722.

I can't install a new hard drive. 

Please help me.

[REQUEST] Lenovo IdeaPad 320-15ABR Whitelist removal

$
0
0
Hello everyone, I just tried to recognize where is whitelist in my bios, but nothing goes right.
I have ch341a programmer and SOIC8 clip
Can you help me to remove whitelist?
There is ch341a programmer BIOS dump from my laptop: Link

lenovo thinkcentre m73z Whitelist(fgjy57usa)

[REQUEST] Bios Unlock Asus Vivobook Pro 17 X705UDR

$
0
0
For some reason Asus decided to throttle my laptop's GPU at 77 degrees Celsius, I don't know if an unlocked BIOS can fix that, but if possible can someone help me out?

My current BIOS is the most recent version (317), here's the download link: 
https://dlcdnets.asus.com/pub/ASUS/nb/X7...RAS317.zip
(I'll add it as an attachment as well)



.zip   X705UDRAS317.zip (Size: 4.43 MB / Downloads: 0)

Can't Install SSD Disk - Sony Vaio Phoenix BIOS

$
0
0
Hello guys,

I have a Sony Vaio VGNFZ430E (with Poenix R2110J7 BIOS) and i am not able to configure an OS using SSD disk. This notebook comes with a sata hard drive from the factory, however when I put an SSD in its place I noticed that the BIOS does not support me to format the system and use it.
For testing purposes, I installed Windows 10 on the SSD on another computer and simply placed this SSD on my Vaio. I went to the BIOS and chose the internal storage disk option as the first boot option. To my surprise I get the message "Operating System not found".
Can anybody help me? Is there any way to make this SSD work on this notebook? Maybe a BIOS update? Or is it not supported?

Appreciate your help
Regards!

Need help with BIOS reverse-engineering

$
0
0
Hello guys,

I'm trying to repair an old ETX-fromfactor module "SECO M671". It is based on Intel Celeron M + 855GM chipset + ICH4 hub. Google can't help with the docs for this module, but I've found out that Kontron pm-15c module is very similar to the M671 I have, i.e. all the chips (from processor/chipset and to small stuff like PCI-ISA bridges etc) are exactly the same, just arranged in a different way. More detailed specs and datasheets are in the Drive folder I share.

The PC (old industrial PC with an AT power supply and LVDS screen, just in case) based on this module suddenly stopped booting at all (black screen). The "baseboard" that the ETX module plugs into does not expose PCI, but does expose ISA in PC/104 from-factor, so I had to assemble (FPGA + some CD4050) an ISA POSTcard to read POSTcodes. The POST sequence turned out to be D0h, 00h, D1h, D2h. It resembles AMIBIOS8 codes (if you ignore 00h), for which D2h means bad bootblock.
I have a backup of the BIOS that OEM has supplied with the PC (and some DOS utilities for flashing BIOS and also CMOS, but they are useless as long as the PC is unable to POST). So I desoldered the BIOS ROM (Intel FWH-compatible chip SST49LF004B) and read it with a parallel programmer (TL866). But I found that the contents were perfectly fine: they matched the backup binary (except some offset difference and an additional VGA BIOS module I've found inside the flash chip, which was not present in any of the backups).
Also I tried to compare the contents to some AMI BIOS binaries and finally concluded, that the BIOS is custom [or is it? Does anyone recognize this code?].

I had no previous x86 assembler reversing experience (nevertheless I've used AVR inline asm, so I'm familiar with basic concepts), but I figured that I had no choice but to understand what happens after D2h.
I loaded the dump of the flash chip into IDA Pro 6.8 and created an appropriate segmentation (gotta say, segmented addressing still drives me crazy sometimes): copied 0x60000-0x7FFFF to 000E:0000-000F:FFFF (chipset datasheet says 128K are mapped, not just 64K) and considering that x86 starts up in 16-bit real mode I set segment bitness to 16. All jump addresses lined up nicely, code started to make sense. I've found the far jump to the main code from the top 16-bytes (x86 reset vector is 0xFFFF_FFF0, and I checked chipset datasheet to ensure that it's mapped to 0xFFFF0 and to the top of the FWH flash).

Further investigation required me to create subroutines (to be able to view function graphs and to enable proximity view). And the thing worked out not so nice this time. First round of questions:
  1. First, how do I control function chunking in IDA? A lot of times it automatically includes into subroutine some fragments ("chunks") that should be marked as functions on their own. Then I've to undefine the function code, make it a code again, define the "chunk" as a separate function and then define the initial function again. Frustrating.
  2. The code does not setup stack "properly", but it does use SP as the return address pointer. IDA fails to pick up things like "mov SP, F123h" and "bswap ESP" (the code uses "two-level stack" sometimes by just swapping the ESP bytes and swapping them back when needed). It's pretty tedious task to recover the call (jump) tree by hand. How can I automate it?
Despite those difficulties, I've started to reverse-engineer the code. And a second round of question arises:
  1. I've found the subroutine that switches to protected mode and parsed the GDT (thanks to IDA's autocomments). It says that the 0x0-0x0000_FFFF (GDT uses linear addressing, right?) segment is 16-bit, 1-byte granular, and the 0x0-0x000F_FFFF segment is 32-bit, 4-KiB granular. Therefore, the BIOS ROM-mapped addresses, i.e. 000F:XXXXh, that are executed after loading the GDT have to be disassembled as 32-bit segments? I have tried to load the blob as a 32-bit segment (make the offsets, etc) and start the analysis at the addresses called after loading GDT (and enabling A20, forgot about that). But it produces garbage: IDA eventually reaches some bytes that are not a valid instruction, and usually it happens at the same addresses where 16-bit analysis produced jumps. Therefore the jumps must've been assembled as 16-bit... But the GDT... !? Do I get something about the segmentation wrong again? 0x0000_FFFF entry can't be in the table for nothing.
  2. There is a piece of code that uses CPUID to determine that it's running on a Pentium 4, and if so it reads 10th bit of 2Ch MSR. I've found that bits 0:15 are reserved on all P4s. Does anyone have any idea on what happens inside reserved MSR bits?
  3. There are LOTS of conditional jumps into an endless loop. Is this a common technique or something? My idea is that it's either a way to reset the CPU using WDT timer in ICH4 (but it has to be configured in advance, right?) or a way to wait for an interrupt, but I can't understand how interrupts can be used if the code does not load IDT. Or is it an error-handling strategy? Just send a POSTcode and go loop forever?
Hope someone can help me sort it all out. Here is a google drive folder (no google account should be required) with the binaries and the datasheets (and current IDA database), I'll attach the binary to the post too, just in case:
https://drive.google.com/open?id=1Mwpiqi...e522236gmq

BTW, I've found chipset/ICH datasheets not too detailed. I know there has to exist a BWG - Intel BIOS writer's guide for this family of processors. I've even seen one for Pentium Pro, but that system architecture is considerably older than mine. So, did any modern BWGs leak to the public? I suppose reading one of these would help me a lot.

.bin   tl_image.BIN (Size: 512 KB / Downloads: 0)

[REQUEST] BIOS Mod for Asus P7h55-M

$
0
0
Hello, I'm a beginner with no experience in mod bios, I have a ASUS P7H55-M with a Xeon x3440,
Currently overclocked @ 3.2Ghz (bclk = 160 multiplier = 20(max)).

My needs are:
-Change RAM, CPU, North Bridge (and etc.) frequency independently of each other, *since it is currently only possible to change all at once through the BCLK*;  (For example: my RAM is 1600MHz, but I can't leave the BCLK at 133 and the RAM at 1600MHz at same time, only if I'm increasing the bckl and with that the CPU clock too!)

-If possible, unlock multiplier beyond 20x with a bios mod, (I don't know if this is a limitation of Mobo or CPU, if it is a CPU, I will buy an X3470);
-Enable SATA 6Gbps, if possible;
-Other improvements that the modder finds necessary and I am not aware.


Motherboard: ASUS P7H55-M (https://www.asus.com/br/Motherboards/P7H...fications/)
Bios: AMI v.1302 (https://dlcdnets.asus.com/pub/ASUS/mb/LG...S-1302.zip)
CPU: Intel Xeon X3440 (in the future, x3470)

I hope you have informed everything right and get some help with it,
Thanks!

[REQUEST] Lenovo Yoga 910 Whitelist Removal

$
0
0
I would like a whitelist removal for a Lenovo Yoga 910-13IKB. The BIOS chip is write protected so I have read the chip's contents with a SOIC8 clip over SPI. I don't think there is much to do with this BIOS other than removing the whitelist, but if there is please let me know. The version is 2JCN39WW (latest).

[REQUEST]Acer V5-571g bios unlock

$
0
0
Здравствуйте! H ELP мне разблокировать  все передовые особенности Биос на этом ноутбуке.
v5-571g
i5-3337u
nvidia 710m  
хочу подключить к нему eGPU.
Спасибо за помощь!


.zip   BIOS_Acer_2.18_A_A (1).zip (Size: 2.37 MB / Downloads: 0)

(REQUEST) Need Asrock H110m-HDV unlocked with BCLK enabled

$
0
0
I have steam keys for free to some Rpg games on steam if you can pull it off! Thanks!
Attached newest bios version from site!

.zip   H110M-HDV(7.60)ROM.zip (Size: 6.85 MB / Downloads: 1)

[REQUEST] HP CQ42 BIOS UNLOCK (21484F.37)

$
0
0
Compaq Presario CQ42-400TU Notebook PC
----
Hello Good day Smile
Can someone help me with my BIOS advance settings - 
this is an old laptop so im sure unlocking this bios is an evil things 0 -
ive tried this one - https://www.bios-mods.com/BIOS/index.php...miloml.exe
but this is only for 142x Platform ID - 
my laptop is 21484 or 1484 platform ID - so this is not compatible i guess.
looking forward for the success .. 
Thanks in Advance@,@ Cheers..
--
btw - my latest BIOS
https://whp-hou4.cold.extweb.hp.com/pub/...p52604.exe

.jpg   IMG20200131212017-min (1).jpg (Size: 304.24 KB / Downloads: 0)

[REQUEST] Unlock Insyde f.47 Bios on HP Notebook 17-by1053dx

$
0
0
Hello, I need an unlock for my HP Notebook 17-by1053dx, which has an Insyde F.47 BIOS. I'm trying to convert more dedicated vram, but as you can see I don't have any advanced options in my BIOS.

.jpg   IMG_1013.JPG (Size: 305.67 KB / Downloads: 2)

.jpg   IMG_1014.JPG (Size: 271.59 KB / Downloads: 3)

.jpg   IMG_1015.JPG (Size: 268.88 KB / Downloads: 2)

here are the specs if you need them

.png   Capture2.PNG (Size: 63.45 KB / Downloads: 2)

.png   Capture.PNG (Size: 23.94 KB / Downloads: 3)
thanks!

[REQUEST] Casper F650 Bios Unlock

$
0
0
Hi, I want to open the features of the bios advanted graphics card graphics 70 degrees when the rate of the GPU frenkans reduces the problem of droping. fps low working. someone opening bios advenced bios settings please ?

GPU : 940MX Limited 70 degrees

.rar   Windows_Ver_205.rar (Size: 4.52 MB / Downloads: 1)

[REQUEST] HP Pavilion dv6-2150us BIOS unlock

$
0
0
Looking for a BIOS unlock for this laptop so I can upgrade the wifi card to something that doesn't suck. I'm sure the last revision (F.1C) is locked down but maybe it's possible to unlock a previous revision while still adding the CPU support that F.1C has?

The laptop's system board ID is 3658, it's the Intel version of the dv6 with a Core i3-M330 processor.

https://ftp.hp.com/pub/softpaq/sp48501-4...p48953.exe (F.1C)

https://ftp.hp.com/pub/softpaq/sp48501-4...p48570.exe (F.1B)

https://ftp.hp.com/pub/softpaq/sp48001-4...p48144.exe (F.1A)


HP's site has a F.1A and a F.1B in addition to the F.1C I currently have installed but the detail pages for them are broken.

#Acer Aspire A315-32 Unlocking "CSM/Legacy Boot Mode Option" in UEFI BIOS (InsydeH20)

$
0
0
~!Greetings Dear Members and Bios-Mod_Administration Team!~

Let me sorry for disturbing in first..

Next..

If possible please, then I need some advices,tips,hints and help in case of unlocking "Legacy Boot Mode Hidden Option" in "Acer Aspire A315-32 ver.1.15" bios file...

I want to install older operating systemm, but without unlocking of legacy boot option its not possible..only UEFI mode is actually available in settings..

And I'm sure,there must be hidden option in BIOS that somehow possible to reveal to change UEFI mode to LEGACY mode...

...

Already Extracted (Section_PE32_image_DriverSampleDxe_SetupUtility_body.efi) from BIOS dump file,and its atached to my post with some of pictures about bios menu also!

With "IRFExtractor" extracted from (Section_PE32_image_DriverSampleDxe_SetupUtility_body.efi) the file String Packages...

Acer_Support_Site_Of_Product_FOR_BIOS_Update_Executable_If_Needed:
https://www.acer.com/ac/en/US/content/support-product/7517

What's next please?

...

Excuse Me For Grammatical Fouls!

Appreciate Any Crumbles of Tips,Hints and Help!

Regards!

Have God Blessed Nice Day!

God Blessing To All!

Bye!

.zip   Section_PE32_image_DriverSampleDxe_SetupUtility_body.EFI.zip (Size: 125.1 KB / Downloads: 1)

.zip   Section_PE32_image_DriverSampleDxe_SetupUtility_body IFR.TXT.zip (Size: 49.79 KB / Downloads: 1)

.jpg   INFO.jpg (Size: 215.44 KB / Downloads: 2)

.jpg   BOOT.jpg (Size: 194.74 KB / Downloads: 1)

.zip   NEXT_PHOTOS_OF_BIOS_TABS.zip (Size: 743.17 KB / Downloads: 1)

[REQUEST] CLEVO - Could you unlock any features please?

Lenovo Yoga 700-14ISK Bios Crisis Recovery

$
0
0
I have a Yoga 700-14ISK laptop where the BIOS has been updated..
 
Since the update the laptop now does not turn on, the screen is completely blank. The keyboard does light up, fans are running and there are a series of beeps. 2 Short and then three longer ones, three more longer ones and then a single beep.
 
Does anyone know if the BIOS can be updated again in this state, somethings clearly gone wrong in the last update. I've seen in other posts that a USB can be loaded with the BIOS file and booted from blind to do the update. Can anyone give any pointers on how to extract the BIOS file from the installer package dbcn27ww.exe.
 
https://support.lenovo.com/us/en/downloads/ds105180

I basically want to perform a crisis recovery if it is possible to do so?
 
Any help would be massively appreciated.

Compaq CQ56 bios unlock

$
0
0
Sorry, new here so be gentle, ok , i wanted to increase my vram on my igpu of my laptop and some tutorials said it needed unlocked bios for your system, so i am requesting a modded bios for my system

[REQUEST] AsRock N68-VS3 UCC bios unlock

$
0
0
Hello, im having problems with this locked bios, every 5th boot my computer freezes when i attempt overclocking it further 3.4ghz.
When i attempt to overclock bclk in my bios to anything above 3.4ghz it doesnt get the overclock. theres a few problems with the HT link multiplier, it doesn't take effect downclocking the multiplier and my computer forces HPET on in windows even i tried using bcdedit /set platformclock no. but it still forces ACPI pmt on windows, i can enable HPET in bios but having both HPET enabled its worse than leaving it disabled in bios, theres no ACPI support for sata on this bios. is it worth flashing/modding this bios ? this all my specs of my mobo
Bios Link: (Windows Flash) http://asrock.pc.cdn.bitgravity.com/BIOS...20)WIN.zip
Bios Link: (Instant Flash) http://asrock.pc.cdn.bitgravity.com/BIOS...20)ROM.zip

Chipset
-------------------------------------------------------------------------

Northbridge AMD K10 Bridge rev. 00
Southbridge NVIDIA nForce 630a rev. A2

do this chipset support AHCI mod?

BIOS
-------------------------------------------------------------------------

UEFI No
BIOS Vendor American Megatrends Inc.
BIOS MSG 63-111-0000010-00101111-091911-nVidia
BIOS Date 09/19/11
Mainboard Vendor 0000010
AMD AGESA V3.7.0.0

Mainboard Model N68-VS3 UCC (0x000002C0 - 0x4E1B9BB0)

Software
-------------------------------------------------------------------------

Windows Version Microsoft Windows 7 (6.1) Ultimate Edition 64-bit  Service Pack 1 (Build 7601) 

DMI
-------------------------------------------------------------------------

SMBIOS Version 2.4

DMI BIOS
vendor American Megatrends Inc.
version P1.20
date 09/19/2011
ROM size 512 KB
Viewing all 25959 articles
Browse latest View live


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>