Lenovo ideapad 500s bios locked dump

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • ameego
    New Member
    • Jun 2018
    • 4
    • united kingdom

    #1

    Lenovo ideapad 500s bios locked dump

    Hi all,

    lenovo ideapad 500s asking for bios password. Any solutions please? Where can i find dump for this model?

    Thanks in advance
  • imranromi
    Badcaps Legend
    • Jan 2015
    • 1288
    • Pakistan

    #2
    Re: Lenovo ideapad 500s bios locked dump

    Originally posted by ameego
    Hi all,

    lenovo ideapad 500s asking for bios password. Any solutions please? Where can i find dump for this model?

    Thanks in advance
    Post here old lock bios.

    Comment

    • Af19
      New Member
      • Aug 2015
      • 4
      • portugal

      #3
      Re: Lenovo ideapad 500s bios locked dump

      hi pll

      i need bios for this model 

      Comment

      • selek3
        New Member
        • Jul 2021
        • 3
        • Germany

        #4
        Re: Lenovo ideapad 500s bios locked dump

        Originally posted by imranromi
        Post here old lock bios.

        Bios is with password
        can someone help me
        Attached Files

        Comment

        • BootLoader1
          Senior Member
          • Aug 2020
          • 70
          • Poland

          #5
          Re: Lenovo ideapad 500s bios locked dump

          Originally posted by selek3
          Bios is with password
          can someone help me
          Try this password :

          - Admin Password : sezfe

          Comment

          • selek3
            New Member
            • Jul 2021
            • 3
            • Germany

            #6
            Re: Lenovo ideapad 500s bios locked dump

            Originally posted by BootLoader1
            Try this password :

            - Admin Password : sezfe
            that was quick
            Thank you very much, it works


            can you tell us how you read it out

            Comment

            • onizzbox
              Banned
              • Nov 2018
              • 604
              • Brazil

              #7
              Re: Lenovo ideapad 500s bios locked dump

              Originally posted by selek3
              that was quick
              Thank you very much, it works


              can you tell us how you read it out
              @selek3
              Don't waste your time with this... Just a security bug developed by some manufacturers. Few models offer the possibility to extract the password without encryption.

              Comment

              • SMDFlea
                Super Moderator
                • Jan 2018
                • 20300
                • UK

                #8
                Re: Lenovo ideapad 500s bios locked dump

                Scancode 1F 12 2C 21 12
                All donations to badcaps are welcome, click on this link to donate. Thanks to all supporters

                Comment

                • Maxpower3
                  Bad Veteran
                  • Feb 2018
                  • 1164
                  • France

                  #9
                  Re: Lenovo ideapad 500s bios locked dump

                  Originally posted by selek3
                  can you tell us how you read it out
                  Originally posted by SMDFlea
                  Scancode 1F 12 2C 21 12
                  05 1F 12 2C 21 12 6B

                  And checksum is last byte

                  6B = FF - somme of bytes - numbers caracteres +1

                  or 6B= FF - somme of bytes - (05)first byte + 1

                  i think it's good, need to compare on other to be sure and know first byte

                  Comment

                  • onizzbox
                    Banned
                    • Nov 2018
                    • 604
                    • Brazil

                    #10
                    Re: Lenovo ideapad 500s bios locked dump

                    Originally posted by Maxpower3
                    05 1F 12 2C 21 12 6B

                    And checksum is last byte

                    6B = FF - somme of bytes - numbers caracteres +1

                    or 6B= FF - somme of bytes - (05)first byte + 1

                    i think it's good, need to compare on other to be sure and know first byte
                    @Maxpower3

                    def hash_decrypt(hex_str):
                    hash_str = []
                    password = ''
                    for i in range(0, len(hex_str), 2):
                    hash_str.append(int(hex_str[i: i + 2], 16))
                    chk_hash = sum(hash_str) % 256
                    if chk_hash != 0:
                    return None

                    for x in range(hash_str[0]):
                    w = hash_str[x + 1]
                    if w in keyboardDict:
                    password += keyboardDict[w]
                    else:
                    return None
                    return password
                    Last edited by SMDFlea; 07-27-2021, 11:39 AM.

                    Comment

                    • Maxpower3
                      Bad Veteran
                      • Feb 2018
                      • 1164
                      • France

                      #11
                      Re: Lenovo ideapad 500s bios locked dump

                      Originally posted by onizzbox
                      @Maxpower3

                      def hash_decrypt(hex_str):
                      hash_str = []
                      password = ''
                      for i in range(0, len(hex_str), 2):
                      hash_str.append(int(hex_str[i: i + 2], 16))
                      chk_hash = sum(hash_str) % 256
                      if chk_hash != 0:
                      return None

                      for x in range(hash_str[0]):
                      w = hash_str[x + 1]
                      if w in keyboardDict:
                      password += keyboardDict[w]
                      else:
                      return None
                      return password
                      ok nice thanks

                      Comment

                      • selek3
                        New Member
                        • Jul 2021
                        • 3
                        • Germany

                        #12
                        Re: Lenovo ideapad 500s bios locked dump

                        all right. I did not understand anything. Here you need Python knowledge to do something yourself

                        Comment

                        • onizzbox
                          Banned
                          • Nov 2018
                          • 604
                          • Brazil

                          #13
                          Re: Lenovo ideapad 500s bios locked dump

                          Originally posted by Maxpower3
                          ok nice thanks
                          @Maxpower3
                          The checksum calculation is very simple...
                          Just add all the digits of the string to get the value.

                          a.g.
                          Password : mikrovr
                          Hex string: 07 32 17 25 13 18 2F 13 1E
                          first digit: 07 => 07 password length
                          last digit: 1E => 256 checksum

                          07 + 32 + 17 + 25 + 13 + 18 + 2F + 13 + 1E = 256
                          The checksum may vary depending on the password;
                          2, 4, 8, 16, 32, 64, 128, 256, 512, 1024 etc.
                          Last edited by onizzbox; 07-30-2021, 12:38 PM.

                          Comment

                          • Maxpower3
                            Bad Veteran
                            • Feb 2018
                            • 1164
                            • France

                            #14
                            Re: Lenovo ideapad 500s bios locked dump

                            Originally posted by onizzbox
                            @Maxpower3
                            The checksum calculation is very simple...
                            Originally posted by Maxpower3
                            05 1F 12 2C 21 12 6B


                            6B = FF - somme of bytes - numbers caracteres +1

                            or 6B= FF - somme of bytes - (05)first byte + 1
                            6B= FF+1 (256) - sum of hash

                            @onizzbox
                            I wanted to make it more complicated
                            and didn't understand that I was right with first byte
                            and my first reasoning was good.
                            Attached Files
                            Last edited by Maxpower3; 07-30-2021, 03:36 PM.

                            Comment

                            Related Topics

                            Collapse

                            • Document Archive
                              Lenovo IdeaPad 500s Notebook 500 Specification for Upgrade or Repair
                              by Document Archive
                              This specification for the Lenovo IdeaPad 500s Notebook can be useful for upgrading or repairing a laptop that is not working. As a community we are working through our specifications to add valuable data like the 500s boardview and 500s schematic. Our users have donated over 1 million documents which are being added to the site. This page will be updated soon with additional information. Alternatively you can request additional help from our users directly on the relevant badcaps forum. Please note that we offer no warranties that any specification, datasheet, or download for Lenovo IdeaPad 500s...
                              09-06-2024, 06:00 AM
                            • Document Archive
                              Lenovo IdeaPad 500s Notebook 500 Specification for Upgrade or Repair
                              by Document Archive
                              This specification for the Lenovo IdeaPad 500s Notebook can be useful for upgrading or repairing a laptop that is not working. As a community we are working through our specifications to add valuable data like the 500s boardview and 500s schematic. Our users have donated over 1 million documents which are being added to the site. This page will be updated soon with additional information. Alternatively you can request additional help from our users directly on the relevant badcaps forum. Please note that we offer no warranties that any specification, datasheet, or download for Lenovo IdeaPad 500s...
                              09-06-2024, 05:30 AM
                            • Document Archive
                              Lenovo IdeaPad IdeaPad Gaming 3 15IHU6 Ultrabook 3 Specification for Upgrade or Repair
                              by Document Archive
                              This specification for the Lenovo IdeaPad IdeaPad Gaming 3 15IHU6 Ultrabook can be useful for upgrading or repairing a laptop that is not working. As a community we are working through our specifications to add valuable data like the IdeaPad Gaming 3 15IHU6 boardview and IdeaPad Gaming 3 15IHU6 schematic. Our users have donated over 1 million documents which are being added to the site. This page will be updated soon with additional information. Alternatively you can request additional help from our users directly on the relevant badcaps forum. Please note that we offer no warranties that any...
                              09-07-2024, 05:20 AM
                            • Document Archive
                              Lenovo IdeaPad IdeaPad 3 17ITL6 Notebook 3 Specification for Upgrade or Repair
                              by Document Archive
                              This specification for the Lenovo IdeaPad IdeaPad 3 17ITL6 Notebook can be useful for upgrading or repairing a laptop that is not working. As a community we are working through our specifications to add valuable data like the IdeaPad 3 17ITL6 boardview and IdeaPad 3 17ITL6 schematic. Our users have donated over 1 million documents which are being added to the site. This page will be updated soon with additional information. Alternatively you can request additional help from our users directly on the relevant badcaps forum. Please note that we offer no warranties that any specification, datasheet,...
                              09-07-2024, 05:20 AM
                            • Document Archive
                              Lenovo IdeaPad IdeaPad 3 15IGL05 Notebook 3 Specification for Upgrade or Repair
                              by Document Archive
                              This specification for the Lenovo IdeaPad IdeaPad 3 15IGL05 Notebook can be useful for upgrading or repairing a laptop that is not working. As a community we are working through our specifications to add valuable data like the IdeaPad 3 15IGL05 boardview and IdeaPad 3 15IGL05 schematic. Our users have donated over 1 million documents which are being added to the site. This page will be updated soon with additional information. Alternatively you can request additional help from our users directly on the relevant badcaps forum. Please note that we offer no warranties that any specification, datasheet,...
                              09-07-2024, 05:20 AM
                            • Loading...
                            • No more items.
                            Working...