Dumping flash from HTC Desire 510

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • stj
    Great Sage 齊天大聖
    • Dec 2009
    • 30985
    • Albion

    #101
    Re: Dumping flash from HTC Desire 510

    10 second problem may be solved by sending a backspace every 5 seconds - or some other keycode that is not a valid character.

    Comment

    • stj
      Great Sage 齊天大聖
      • Dec 2009
      • 30985
      • Albion

      #102
      Re: Dumping flash from HTC Desire 510

      http://www.elm-chan.org/fsw/ff/00index_e.html

      Comment

      • Spork Schivago
        Badcaps Legend
        • Mar 2012
        • 4734
        • United States of America

        #103
        Re: Dumping flash from HTC Desire 510

        Okay, I got the prevent_screenlock(); function working properly now. Essentially, I move the mouse up and then down, then I just click a button every 5 seconds.

        This works well. Now, I just need to implement the file I/O stuff with the MicroSD card.

        I think I need to open the file for reading / writing as soon as the device gets powered and read in the value, and then close the file descriptor. Then, when I try a new PIN, open it for writing, write the new pin, close. Then just keep doing that. That way, if the phone gets turned off, the file doesn't get damaged because the file handle is still opened or anything. There's a chance it could get shut off right when I'm writing a PIN, but I think that there's a very small chance for that to happen.
        -- Law of Expanding Memory: Applications Will Also Expand Until RAM Is Full

        Comment

        • Spork Schivago
          Badcaps Legend
          • Mar 2012
          • 4734
          • United States of America

          #104
          Re: Dumping flash from HTC Desire 510

          Originally posted by stj
          10 second problem may be solved by sending a backspace every 5 seconds - or some other keycode that is not a valid character.
          I tried that, and it didn't work. I tried sending the ENTER key, and I also tried sending the 0 key. For some reason, when it's doing the 30 second countdown, it didn't work. Probably because keyboard is disabled during that time. But the mouse clicking worked.
          -- Law of Expanding Memory: Applications Will Also Expand Until RAM Is Full

          Comment

          • goontron
            5000!
            • Dec 2011
            • 4108
            • US

            #105
            Re: Dumping flash from HTC Desire 510

            ^ you are wearing the fuck out of the SDcard doing that way.... But i doubt you will do any damage, considering wear leveling is a thing. I would keep an eye on it after 8 Million or so writes, though And they fail gracefully. They go read-only to prevent (severe) data loss.
            Last edited by goontron; 07-09-2017, 01:21 PM.
            Things I've fixed: anything from semis to crappy Chinese $2 radios, and now an IoT Dildo....

            "Dude, this is Wyoming, i hopped on and sent 'er. No fucking around." -- Me

            Excuse me while i do something dangerous


            You must have a sad, sad boring life if you hate on people harmlessly enjoying life with an animal costume.

            Sometimes you need to break shit to fix it.... Thats why my lawnmower doesn't have a deadman switch or engine brake anymore

            Follow the white rabbit.

            Comment

            • Spork Schivago
              Badcaps Legend
              • Mar 2012
              • 4734
              • United States of America

              #106
              Re: Dumping flash from HTC Desire 510

              Yes, I know I'm damaging the SDCard. Unfortunately, I couldn't find an easy way to do it without risking the damage.

              It's running now, it does 30 attempts before the phone restarts. The problem originally was I wasn't closing the handle for the SD card (essentially, I wasn't unmounting it). It was a bit more complicated than I thought to write the code for the SD card stuff, but it works.

              Every single attempt, I open the SD card, I write the new number, I flush the buffers, I close the file handle and the unmount the SD card, then I do it all over again. I believe this is the only way, because if the phone turns off while the SD card handle is opened or the file handle is open, it seems to open the card in read-only mode. The best time to turn it off is during the 30 second countdown. Got kinda lucky how it always turns off during the 30 second countdown.

              If it's successful and it gets in, does anyone know if the countdown timer will still be active and have to be killed manually? If so, I have to sit here and watch it run, which could take a long, long time.....if not, I'm going to hook the phone up to my programmable power supply to power the phone and just let it run for a week or so.
              -- Law of Expanding Memory: Applications Will Also Expand Until RAM Is Full

              Comment

              • goontron
                5000!
                • Dec 2011
                • 4108
                • US

                #107
                Re: Dumping flash from HTC Desire 510

                ^ Not 100% sure if im parsing that last question correctly, but if you have a state file why didn't you write your program to start from the last pin attempt?
                Things I've fixed: anything from semis to crappy Chinese $2 radios, and now an IoT Dildo....

                "Dude, this is Wyoming, i hopped on and sent 'er. No fucking around." -- Me

                Excuse me while i do something dangerous


                You must have a sad, sad boring life if you hate on people harmlessly enjoying life with an animal costume.

                Sometimes you need to break shit to fix it.... Thats why my lawnmower doesn't have a deadman switch or engine brake anymore

                Follow the white rabbit.

                Comment

                • stj
                  Great Sage 齊天大聖
                  • Dec 2009
                  • 30985
                  • Albion

                  #108
                  Re: Dumping flash from HTC Desire 510

                  Originally posted by Spork Schivago
                  Yes, I know I'm damaging the SDCard. Unfortunately, I couldn't find an easy way to do it without risking the damage.
                  microchip makes an 8pin spi ram chip

                  Comment

                  • Spork Schivago
                    Badcaps Legend
                    • Mar 2012
                    • 4734
                    • United States of America

                    #109
                    Re: Dumping flash from HTC Desire 510

                    Originally posted by goontron
                    ^ Not 100% sure if im parsing that last question correctly, but if you have a state file why didn't you write your program to start from the last pin attempt?
                    That's what it does. But because the phone can reset, I have to write the pin to flash immediately, then unmount the SDCard (in case the phone resets), and then when it tries the next pin, it remounts the SDCard, and writes it to the file, then unmounts it and repeats. It only reads the pin number from the pin_num.txt file when it first starts up.

                    I'll try to give an example as to why I have to do it this way:
                    Let's say I mount the MicroSD card as soon as the Teeensy powers up and I read the last tried pin number, but I never unmount the SD card. As soon as the phone restarts, the MicroSD card seems to get mounted in read-only mode. I cannot write to it until I pull it from the Teensy and then run fsck.vfat on it.

                    I almost thought of powering the Teensy board myself, so it never loses power, and then trying to find away to monitor the USB port and see if I could detect the hub resetting....or maybe, instead of reading and writing the pin to microSD card, maybe I could read it from the serial console? I have a USB to TTL serial adapter that I hooked up to the Teensy and I send debugging messages to it. I send what pin number I'm on, etc. Maybe I can just write the pin to the serial console and then read it back when the USB hub resets? I dunno.
                    -- Law of Expanding Memory: Applications Will Also Expand Until RAM Is Full

                    Comment

                    • Spork Schivago
                      Badcaps Legend
                      • Mar 2012
                      • 4734
                      • United States of America

                      #110
                      Re: Dumping flash from HTC Desire 510

                      Originally posted by goontron
                      ^ Not 100% sure if im parsing that last question correctly, but if you have a state file why didn't you write your program to start from the last pin attempt?
                      I think I misunderstood what you were saying.

                      The last question there. Okay, so right now, the phone thinks I'm trying to hack into it, which I am. It sets some sort of kill timer. So, after so many minutes, regardless of whether I type something or not, the phone will physically restart. When this happens, my Teensy board loses power temporary and restarts.

                      My program does read the last pin it started out at. But I can't figure out how to write code to see if the Teensy entered the proper code. So, the idea was, let it run, even while I'm sleeping....and maybe one morning I wake up and it's logged into the phone, and still sending numbers to it.

                      My question was if it successfully enters the pin, will that shutdown timer still be active? I don't know much about smart phones. If the Teensy successfully guesses the pin, will I have to be there to watch it so I can manually kill the shutdown timer?
                      -- Law of Expanding Memory: Applications Will Also Expand Until RAM Is Full

                      Comment

                      • goontron
                        5000!
                        • Dec 2011
                        • 4108
                        • US

                        #111
                        Re: Dumping flash from HTC Desire 510

                        ^ You could use the 5v from the OTG to run the reset pin on the board (may need inversion). You would need to add a boot delay to your code... Really its no big deal to wear out an SD card every 30 phones or so. SD cards fail read-only. Just copy the firmware and state file from the old SD to the new one and keep going. The Ducky was sold with a low storage capacity (256m), high write capacity (100,000+ writes/cyl) SDcard.

                        The timer would probably have a prompt you need to click, so 100% autonomous isn't the best idea. and by throwing input events at the phone, it should keep the phone awake and unlocked once the timer stops.
                        Last edited by goontron; 07-10-2017, 12:21 PM.
                        Things I've fixed: anything from semis to crappy Chinese $2 radios, and now an IoT Dildo....

                        "Dude, this is Wyoming, i hopped on and sent 'er. No fucking around." -- Me

                        Excuse me while i do something dangerous


                        You must have a sad, sad boring life if you hate on people harmlessly enjoying life with an animal costume.

                        Sometimes you need to break shit to fix it.... Thats why my lawnmower doesn't have a deadman switch or engine brake anymore

                        Follow the white rabbit.

                        Comment

                        • Spork Schivago
                          Badcaps Legend
                          • Mar 2012
                          • 4734
                          • United States of America

                          #112
                          Re: Dumping flash from HTC Desire 510

                          Originally posted by goontron
                          ^ You could use the 5v from the OTG to run the reset pin on the board (may need inversion). You would need to add a boot delay to your code... Really its no big deal to wear out an SD card every 30 phones or so. SD cards fail read-only. Just copy the firmware and state file from the old SD to the new one and keep going. The Ducky was sold with a low storage capacity (256m), high write capacity (100,000+ writes/cyl) SDcard.

                          The timer would probably have a prompt you need to click, so 100% autonomous isn't the best idea. and by throwing input events at the phone, it should keep the phone awake and unlocked once the timer stops.
                          This phone also has some sort of SerialUSB port. I remember using modprobe usbserial vendor=<vendorID> product=<productID> I wonder if that serial port shows anything with invalid attempts or something. If there's a prompt for the timer once we're successfully in, just keeping the phone awake won't work. I'll have to watch it try every attempt, because it'll still reset the phone.

                          There's actually no firmware on the MicroSD card, just the pin_num.txt file. The firmware is all in the Teensy. I used the built-in serial port in there and hooked the TX, RX, and GND up to my USB TTL to serial converter. I send "updates" through the serial port connection, just so I got an idea of what's going on. I send what pin it's currently trying. When the phone restarts, I see where it stopped and when it starts back up, I make sure it starts where it left off at. If the MicroSD somehow gets in read-only mode or if the file system or file somehow gets corrupt, it'll just end up retrying the same pins each time and never properly updating the file.

                          My code just assumes a lot of things, and I know that's not good, but I don't really need it to be perfect.

                          Could you go a bit more in detail about the 5V / reset pin? The Teensy I'm using only supports 3.3V, so I'll need to step that 5V down. I already have a delay in the boot code, but that's if the Teensy gets reset (which it does when the phone gets reset). So I'd drop the 5V down to 3.3V, and hook it to some reset pin on the Teensy and just monitor that pin while I provide external power to my Teensy, and whenever I see the reset pin go low or something, I'd just jump back to the original bootup delay code? It sounds like the reset pin might, well, reset the Teensy. If it does that, wouldn't I lose the variables I have stored in memory and have to use the pin_num.txt on the MicroSD card anyways? Thanks!
                          -- Law of Expanding Memory: Applications Will Also Expand Until RAM Is Full

                          Comment

                          • goontron
                            5000!
                            • Dec 2011
                            • 4108
                            • US

                            #113
                            Re: Dumping flash from HTC Desire 510

                            ^ you will find output of failed attempts in the logcat. If debugging is enabled.

                            Use the 5v from the otg to drive a transistor that switches ground to the reset pin. You could also use some GPIO in the same way, being, when GPIO whatever is low (or high) run the program, otherwise hold.

                            I'm not familiar with microcontrollers, otherwise I could be of more help.
                            Last edited by goontron; 07-10-2017, 09:51 PM.
                            Things I've fixed: anything from semis to crappy Chinese $2 radios, and now an IoT Dildo....

                            "Dude, this is Wyoming, i hopped on and sent 'er. No fucking around." -- Me

                            Excuse me while i do something dangerous


                            You must have a sad, sad boring life if you hate on people harmlessly enjoying life with an animal costume.

                            Sometimes you need to break shit to fix it.... Thats why my lawnmower doesn't have a deadman switch or engine brake anymore

                            Follow the white rabbit.

                            Comment

                            • Spork Schivago
                              Badcaps Legend
                              • Mar 2012
                              • 4734
                              • United States of America

                              #114
                              Re: Dumping flash from HTC Desire 510

                              Originally posted by goontron
                              ^ you will find output of failed attempts in the logcat. If debugging is enabled.

                              Use the 5v from the otg to drive a transistor that switches ground to the reset pin. You could also use some GPIO in the same way, being, when GPIO whatever is low (or high) run the program, otherwise hold.

                              I'm not familiar with microcontrollers, otherwise I could be of more help.
                              Okay. Wouldn't the reset pin completely reset the Teensy and my program? Debugging on the phone is turned off. If it was enabled, I could do a lot more I think.

                              I like the GPIO idea though. Then I could do away with the MicroSD card, so long as I never stopped the program from running. Maybe it's best to keep the MicroSD card in, so I can watch it for a couple hours, take a break, start again the next day, etc.
                              -- Law of Expanding Memory: Applications Will Also Expand Until RAM Is Full

                              Comment

                              • goontron
                                5000!
                                • Dec 2011
                                • 4108
                                • US

                                #115
                                Re: Dumping flash from HTC Desire 510

                                Originally posted by Spork Schivago
                                Okay. Wouldn't the reset pin completely reset the Teensy and my program? Debugging on the phone is turned off. If it was enabled, I could do a lot more I think.

                                I like the GPIO idea though. Then I could do away with the MicroSD card, so long as I never stopped the program from running. Maybe it's best to keep the MicroSD card in, so I can watch it for a couple hours, take a break, start again the next day, etc.
                                That's how you do it with the ducky. run it for 5 hours, stop, charge the phone, and start again.
                                Things I've fixed: anything from semis to crappy Chinese $2 radios, and now an IoT Dildo....

                                "Dude, this is Wyoming, i hopped on and sent 'er. No fucking around." -- Me

                                Excuse me while i do something dangerous


                                You must have a sad, sad boring life if you hate on people harmlessly enjoying life with an animal costume.

                                Sometimes you need to break shit to fix it.... Thats why my lawnmower doesn't have a deadman switch or engine brake anymore

                                Follow the white rabbit.

                                Comment

                                • Spork Schivago
                                  Badcaps Legend
                                  • Mar 2012
                                  • 4734
                                  • United States of America

                                  #116
                                  Re: Dumping flash from HTC Desire 510

                                  I've successfully cracked the pin using the Teensy 3.6 board and the firmware I wrote. I've actually only ran it twice, once the firmware was done. The first night, just to see if it was working, and then just now, when I had some free time.

                                  The pin is: 0241

                                  I don't see how to turn on Dev Mode yet....
                                  -- Law of Expanding Memory: Applications Will Also Expand Until RAM Is Full

                                  Comment

                                  • Spork Schivago
                                    Badcaps Legend
                                    • Mar 2012
                                    • 4734
                                    • United States of America

                                    #117
                                    Re: Dumping flash from HTC Desire 510

                                    I got dev mode turned on now. I think I was mistaken about the kill timer. Now that I'm in, I seen the clock thing and I touched it. It opened an app and I stopped a timer, but it was some sort of wake up alarm. Anyway, even after being in, the phone restarts. Then when I log back in, it says the phone lost power unexpectedly (or something along those lines), hit here to send the report to HTC. I cannot view the report.

                                    I know I lost one of those little tiny thermal pads under the heatsink near the NAND and CPU and RAM and all that. I think that's causing it. Where can I purchase thermal pads? It'd be nice to buy one giant roll or sheet that I can just cut into small pieces, so I can use it for other stuff. Is there any type you guys recommend? Maybe it's like thermal paste, where some brands are better than others?

                                    I just cannot believe I got in! I wanted to thank Goontron for suggesting the Ducky, Diif for mentioning the Teensy, and Stj for the help with the code and all that! You guys really are the best!!!! I am SOOOOO glad I didn't let it run overnight while I was sleeping! If I hadn't been actually watching it, when it logged in, the phone would have still restarted and I'd probably be trying the 5-digit pins now! I'm kinda lucky he set a low pin number, 0241. I'm going to configure the USBSerial port on the Teensy and see when the correct pin is entered, if it sends anything over the USBSerial port (or SerialUSB port, whatever it's called). In Linux, I did the modprobe usbserial product=<productID> vendor=<vendorID> and then I used screen. It did stuff, I can't remember if I saw the dmesg log when it started, but I was able to type stuff. I couldn't type anything useful. Every time I typed one character, it'd say invalid command.

                                    I think I'm supposed to send AT commands to it or something, but I think I'm supposed to use something besides screen to do it?

                                    Also, to remove the pin, you have to know the current pin, so again, good thing I was watching! I don't remember who suggested to watch, but thanks! The smart phone my wife just bought me, I type 5 invalid attempts, and then I have to wait 30 seconds. Then I type 5 invalid attempts and I have to wait a minute, then 5 minutes, then 30 minutes, than an hour, then 2 hours. I haven't gone past the two hour thing, but I don't think this firmware I wrote for the Teensy would work with a newer version of Android. But if anyone wants a copy of the code, I can upload it. I used TeensyDuino (Arduino with some configuration / libraries to work with the Teensy board). I'd like to port the code over to just use the normal arm-gcc cross compiler....maybe later in life though.

                                    Thanks!
                                    Last edited by Spork Schivago; 07-11-2017, 05:39 PM.
                                    -- Law of Expanding Memory: Applications Will Also Expand Until RAM Is Full

                                    Comment

                                    • diif
                                      Badcaps Legend
                                      • Feb 2014
                                      • 6978
                                      • England

                                      #118
                                      Re: Dumping flash from HTC Desire 510

                                      Nice work Spork.
                                      I've bought various thickness thermal sheets from Aliexpress.
                                      No idea on the quality vs USA made or elsewhere but I've never had an issue when using or a comeback.
                                      I'd be interested to see your code.

                                      Comment

                                      • goontron
                                        5000!
                                        • Dec 2011
                                        • 4108
                                        • US

                                        #119
                                        Re: Dumping flash from HTC Desire 510

                                        Glad you got it working. Welcome to infosec, the head-bashing wall is to your left, and the hash tables to your right. The papers to do a write up are every 10* around you.

                                        I am also curious of your code.
                                        Last edited by goontron; 07-11-2017, 06:13 PM.
                                        Things I've fixed: anything from semis to crappy Chinese $2 radios, and now an IoT Dildo....

                                        "Dude, this is Wyoming, i hopped on and sent 'er. No fucking around." -- Me

                                        Excuse me while i do something dangerous


                                        You must have a sad, sad boring life if you hate on people harmlessly enjoying life with an animal costume.

                                        Sometimes you need to break shit to fix it.... Thats why my lawnmower doesn't have a deadman switch or engine brake anymore

                                        Follow the white rabbit.

                                        Comment

                                        • Spork Schivago
                                          Badcaps Legend
                                          • Mar 2012
                                          • 4734
                                          • United States of America

                                          #120
                                          Re: Dumping flash from HTC Desire 510

                                          Originally posted by diif
                                          Nice work Spork.
                                          I've bought various thickness thermal sheets from Aliexpress.
                                          No idea on the quality vs USA made or elsewhere but I've never had an issue when using or a comeback.
                                          I'd be interested to see your code.
                                          How should I upload it? Should I use a .tar.gz file or a more windows friendly archive format, like .7z or .zip? Not sure what OS you use. Remember, it's currently made for the TeensyDuino stuff. Essentially, you install Arduino, and then on the Teensy website, you download TeensyDuino and point it to where Arduino is installed. Then you have options in the Arduino interface to select the Teensy board and configure various options.
                                          -- Law of Expanding Memory: Applications Will Also Expand Until RAM Is Full

                                          Comment

                                          Related Topics

                                          Collapse

                                          • SluggerB
                                            Help with trying to fix phone that is not charging (Pics inside)
                                            by SluggerB
                                            I have two TCL A30 phones.

                                            Old Phone: This phone worked fine for years, then stopped charging If you plugged a charger into it, the phone would make the charging sound, the phone would tell you it is charging, but the battery icon would not have the charging symbol in it and the battery would not charge.I tried new battery, same behavior.

                                            New Phone: Works fine, bought as a donor board to try and repair Old Phone

                                            My interest here is to repair Old Phone, using components parts off New Phone if needed. I am not interested in replacing Old Phone with New Phone....
                                            08-12-2024, 08:11 AM
                                          • ekozeko333
                                            [Help] Lenovo Yoga Slim 7-14ARE05 (DA0LS3MBAF0) – 25Q80DVN1G Flash Is All FF, USB-C PD Stuck at 5V
                                            by ekozeko333
                                            Hi all,
                                            I’m trying to recover a Lenovo Yoga Slim 7-14ARE05 with board DA0LS3MBAF0 Rev:F. I’ve run into an unusual issue where USB-C PD is stuck at 4.7–5V and the system won’t boot (keyboard lights flash briefly, then nothing).
                                            🔥 The Problem Started After Suspected ESD/PD Fault
                                            I experienced a power issue or ESD event through a USB-C charger
                                            After that, the NX20P5090 power switch was visibly burned and was replaced
                                            Now the PD controller always negotiates 5V @ 2A, even with known-good chargers
                                            🧠 What I’ve Done So Far
                                            Flashed...
                                            06-21-2025, 02:48 AM
                                          • corrize
                                            Nikon D800 camera - flash don’t work and capacitor don’t charge
                                            by corrize
                                            Hello, I'm stuck in troubleshooting…
                                            The flash system works like that : when the (mechanic) flash button is pressed, the flash mecanically pop up, and a circuit buck boost elevate 7v (batt) to 200-300v (?) for charging the big capacitor. And when the photo shoot button is pressed, the capacitor is discharged in the xeon light.

                                            In the D800, there is a first « power board » close to the battery. 2 wires (batt 7v) goes to another little « flash board ». I measured 7v, so ok.
                                            When I press the flash button, it's detected by the system, flash icon appear on LDC display....
                                            10-01-2022, 10:02 AM
                                          • keeney123
                                            new OS on a Sonim XP5s phone
                                            by keeney123
                                            To you programmers out there I want to know if it is possible to put a new OS on the Sonim XP5s phone? I only need this phone to make calls, receive calls, have a list of contacts and be able to call voice mail.
                                            I bought this phone new Sep.2021 as an unlock phone from a third-party seller. The phone worked fine until Jan 2022. I then had intermittent problems with the sound setting resetting itself. One of the settings, outdoor, would go to silent all by itself. When in silent mode it does not indicate a call has come in. I missed very important phone calls. All the other setting in sound...
                                            05-13-2022, 07:19 PM
                                          • abajor
                                            Canon VIXIA HF S10 A read data from inernal flash memory.
                                            by abajor
                                            Hello I've had somebody bring in one of these charming little cameras to attempt retrieving data from the internal 32GB flash.
                                            Something is damaged inside the cameras lens assembly I can hear it clunking around and it has probably dislodged the sensor, powering up the camera gives a blank screen and the focus motor sounds like it's having a fit.
                                            The camera will not connect to a computer via USB in this state, I have no options no navigation, just power up and focus/zoom motor noises.

                                            I think my best shot is to figure out a way to read the internal flash memory outside...
                                            07-20-2024, 12:04 AM
                                          • Loading...
                                          • No more items.
                                          Working...