Recent content by bdjohns1

  1. B

    Post Wink Hub root

    Awesome that this will always be a fallback option. I can live with them not patching something that requires physical access to the device and some level of technical skill.
  2. B

    Post Wink Hub root

    I haven't seen anything to that effect. I imagine you could just solder in a connector and see what happens. Wink does post their kernel source on GitHub for GPL compliance - it does appear to at least have basic USB support compiled in, so that's a start.
  3. B

    Post Wink Hub root

    Try creating a file called /database/ENABLE_SSH - I think the scripts now look to see that that file exists before trying to launch dropbear (at least via the init.d scripts).
  4. B

    Post Wink Hub root

    I'm fine with them taking away the ability to root the device via the webserver. I'm honestly surprised that such simple exploits even made it out in public and lasted as long as they did. I do think they should leave the ability for enterprising users to locally access their device using...
  5. B

    Post Wink Hub root

    So, to manually update the updater, I assume the basic workflow on a already-rooted wink hub itself should just be: 1) ssh/TTY login as root while the hub is running regularly. 2) curl to grab the updater fs 3) flash the updater fs to the right partition 4) mount the newly flashed updater fs...
  6. B

    Post Wink Hub root

    That's a good idea. I think you would only need to provide an equivalent file to http://wink-hub-images.s3.amazonaws.com/00.01/upgrade_00.01.txt That would be a good way to trick the system into thinking an upgrade was present to be able to get into the updater system. You'd just need to...
  7. B

    Post Wink Hub root

    Good call, forgot about that. Thanks! I'm betting one of those new updater versions they have floating around doesn't have them either.
  8. B

    Post Wink Hub root

    I'm probably missing something obvious in the process - I was trying to use nandsim to mount the updater images in an Ubuntu VM on my computer to poke around in them, review init scripts, etc. Anyone have a guide on how to do it? I'm having a hard time getting the ubiattach command to work...
  9. B

    Post [Q] Searched many places for root for kyocera torque but no results

    Just as a note - I was on Kyocera version 2.000sp (the July Jelly Bean release) and was rooted. I got a notification today for the 2.002sp update, and was able to install it. So far, my root appears to have been preserved - Titanium Backup still reports it can get root.
  10. B

    Post *** New Device Forum Requests ***

    Sero 7 Pro Sero 7 Pro
  11. B

    Post [Q] Searched many places for root for kyocera torque but no results

    Great, glad to hear you were successful!
  12. B

    Post [Q] Searched many places for root for kyocera torque but no results

    You've got some other issues there - adb shouldn't be throwing all of those errors every time you push, and the adb daemon shouldn't need to restart over and over. If you're getting an error saying that cp can't execute the first time you run pwn, that means that your busybox executable isn't...
  13. B

    Post [Q] Searched many places for root for kyocera torque but no results

    Nothing too big - some tweaks to the notification pane to make the header more compact. Basically, just incremental tweaks as best I can tell.
  14. B

    Post [Q] Searched many places for root for kyocera torque but no results

    Actually, I was able to get it to work. Here's the exact sequence I followed (stock Jellybean): 1) adb push busybox, pwn, and su over to /data/local/tmp 2) adb install Superuser.apk 3) adb shell. In the shell, a) cd /data/local/tmp b) ln busybox cp c) ln busybox mount d) ln busybox chmod e)...
  15. B

    Post [Q] Searched many places for root for kyocera torque but no results

    So, I just rejoined the Android world after being away for a year or so when we all got DC phones at work. Obviously, mine's a Torque. My phone got the Jelly Bean update already. I tried Vic's method, and it didn't work. After digging around, I found that the su binary wasn't getting copied...