Jump to content


IF you forget your BIOS password


9 replies to this topic

#1 OFFLINE   d2e

    Member

  • Members
  • PipPip
  • 37 posts
  • Location:India - Bombay (Mumbai)
  • Interests:to do something diffrent()

Posted 03 July 2005 - 07:41 AM

You can't enter into CMOS setup, if you have forgot the password. There is no way to find the password again. But, you can remove the BIOS password using some utilities or some other ways.

First,
Removing CMOS battery or changing the CMOS jumber settings. If you are having the older type mother board, it is enough to remove the CMOS battery from the motherboard and insert it again after some time. In case of the new mother boards, the battery charge will
persist for 3 to four days. So, it is good to change the jumber settings near the CMOS battery. For finding the CMOS jumber, refer motherboard manual.

Second,
You can use the password crackers.
You can get the BIOS password crackers from the following links.
http://www.pwcracker.com
http://www.cgsrcurity.org
Use any one of these tools. The current settings will be turned to default settings.

Third,
With the C Program.
# include <stdio.h>
# include <dos.h>
typedef unsigned char byte
main()
{
byte i;
for (i=0;i<=225;i++)
{
outp(ox70,i);
outp(0x71,i);
}
}
This should be excecuted in DOS prompt. This will remove the password.


If you use any one of these three ways, and boot the system, you will get an error message. "CMOS checksum error. Press F2 to continue". Press the key, and select 'Load default settings'. Make necessary changes in
settings and exit with save.

Back door passwords for BIOS are also available. They are different for different BIOS, based on the manufacturers and versions.


_________________
-------------------------------------

#2 OFFLINE   d2e

    Member

  • Members
  • PipPip
  • 37 posts
  • Location:India - Bombay (Mumbai)
  • Interests:to do something diffrent()

Posted 03 July 2005 - 07:57 AM

if u want more such trick pls post reply

#3 OFFLINE   Eldmannen

    Annoyance

  • Banned
  • PipPipPipPipPip
  • 2,198 posts
  • Location:Internet
  • Interests:Free software, open-source, GNU GPL, Linux, security, encryption, privacy, anonymity.

Posted 03 July 2005 - 03:31 PM

0x71 is a hexadecimal value.
The first call to outp(); calls it with a "o" (lower case letter o) but it should probably be a 0 (zero).



#4 OFFLINE   Eldmannen

    Annoyance

  • Banned
  • PipPipPipPipPip
  • 2,198 posts
  • Location:Internet
  • Interests:Free software, open-source, GNU GPL, Linux, security, encryption, privacy, anonymity.

Posted 03 July 2005 - 03:35 PM

#include <stdio.h>
#include <dos.h>

typedef unsigned char byte

int main() { 
  byte i;

  for(i=0; i<=225; i++) { 
    outp(0x70, i); 
    outp(0x71, i); 
  }

  puts("Done.");
  return 0;
}




#5 OFFLINE   DjLizard

    Dial-a-fix author

  • Members
  • PipPipPipPip
  • 1,339 posts

Posted 03 July 2005 - 03:38 PM

HAHAHAHAHAHAHAHAHAHAHA

Best. Thread. Ever.

Score:
Eldmannen - 1
d2e - 0

#6 OFFLINE   NiteHawk

    Newbie

  • Members
  • Pip
  • 1 posts

Posted 19 July 2005 - 11:33 PM

I will be the first to admit that I have not read the Jed Clampett Definitive Guide to Home Computer Repair, however, there are a few things here that I must disagree with.

The first method of using the CMOS jumper to reset is tried and true.

However, using a password cracker or even the C script would pre-suppose that you had access into either Windows or at the very least DOS. IF you can't get past a BIOS password, how do you get to DOS? Even using a boot floppy you still have to get past the BIOS.

#7 OFFLINE   ProwZor

    Newbie

  • Members
  • Pip
  • 4 posts

Posted 14 August 2005 - 09:15 PM

http://www.gangstawar.com/index.php?act=sp...link=1260565585 It tells you exactly how to find out your BIOS pw. It takes A little bit but its worth it.

#8 OFFLINE   Dheeraj

    Advanced Member

  • Members
  • PipPipPip
  • 83 posts
  • Location:Mumbai

Posted 02 September 2005 - 01:25 PM

i have 1 simple question why ppl lock bios with password ?

#9 OFFLINE   jobartley515

    Advanced Member

  • Members
  • PipPipPip
  • 116 posts

Posted 02 September 2005 - 04:20 PM

Dheeraj, on Sep 2 2005, 09:25 AM, said:

i have 1 simple question why ppl lock bios with password ?

<{POST_SNAPBACK}>


Makes the person feel more secure...I don't know?.....

#10 OFFLINE   Tarun

    Lunarian

  • Banned
  • PipPipPipPipPip
  • 3,071 posts

Posted 02 September 2005 - 04:47 PM

Security purposes.