Results 1 to 15 of 15

Thread: Oh crap, screwed up big time

  1. #1
    Keeper of the Frop Bog How To Go
    Join Date
    Sep 2004
    Location
    Enceladus, Saturn
    Posts
    10,517

    Oh crap, screwed up big time

    I keep all the serial numbers for my games in an Excel Spreadsheet on a detachable USB drive that I almost never hook up. A few weeks ago I got ghost messages from myself that ended up being this: http://www.theinquirer.net/?article=32244

    But I was concerned about my password security so I went and changed them all. To my chagrin, when I go to open my Excel Spreadsheet with all my game SN's in it - I can't! So, is there a way to open my password protected Excel file? The best thing I've found is this:

    http://www.decryptum.com/

    But cripe... $30???

    So, I also found this:
    http://j-walk.com/ss/excel/faqs/protectionFAQ.htm

    OK, I protected my worksheet with a password. Now I can't remember the password I used.
    First, keep in mind that password are case-sensitive. If you entered the password as xyzzy, it won't be unprotected if you enter XYZZY.

    Here's a link to a VBA procedure that may be able to derive a password to unprotect the worksheet. This procedure has been around for a long time, and is widely available -- so I don't have any qualms about reproducing it here. The original author is not known.

    If that fails, you can try one of the commercial password-breaking programs.


    and this code:

    Sub PasswordBreaker()
    'Author unknown
    'Breaks worksheet password protection.
    Dim i As Integer, j As Integer, k As Integer
    Dim l As Integer, m As Integer, n As Integer
    Dim i1 As Integer, i2 As Integer, i3 As Integer
    Dim i4 As Integer, i5 As Integer, i6 As Integer
    On Error Resume Next
    For i = 65 To 66: For j = 65 To 66: For k = 65 To 66
    For l = 65 To 66: For m = 65 To 66: For i1 = 65 To 66
    For i2 = 65 To 66: For i3 = 65 To 66: For i4 = 65 To 66
    For i5 = 65 To 66: For i6 = 65 To 66: For n = 32 To 126
    ActiveSheet.Unprotect Chr(i) & Chr(j) & Chr(k) & _
    Chr(l) & Chr(m) & Chr(i1) & Chr(i2) & Chr(i3) & _
    Chr(i4) & Chr(i5) & Chr(i6) & Chr(n)
    If ActiveSheet.ProtectContents = False Then
    MsgBox "One usable password is " & Chr(i) & Chr(j) & _
    Chr(k) & Chr(l) & Chr(m) & Chr(i1) & Chr(i2) & _
    Chr(i3) & Chr(i4) & Chr(i5) & Chr(i6) & Chr(n)
    Exit Sub
    End If
    Next: Next: Next: Next: Next: Next
    Next: Next: Next: Next: Next: Next
    End Sub



    But I don't have VB and don't konw if I can somehow incorprate this vb script into Excel. (I have Office XP 2002 version)

    Thanks for the help.

  2. #2
    New Romantic
    Join Date
    Jul 2003
    Location
    ExecutionerFive, WHICH LOCATION!?!?!?
    Posts
    5,593
    That's your basic brute force attack. I'd love to see it in Excel, though I don't think it's possible. Certainly not feasible.

    You don't remember anything about your password at all?

  3. #3
    New Romantic
    Join Date
    Nov 2002
    Location
    Scenic Northern NJ Gamertag: JoshuaMarshall
    Posts
    5,339
    This one supposedly has a 30 day trial:
    http://www.crackpassword.com/product...ntegpack/aopr/

  4. #4
    Keeper of the Frop Bog How To Go
    Join Date
    Sep 2004
    Location
    Enceladus, Saturn
    Posts
    10,517
    Quote Originally Posted by Mike O'Malley
    That's your basic brute force attack. I'd love to see it in Excel, though I don't think it's possible. Certainly not feasible.

    You don't remember anything about your password at all?
    I do, but I've tried 100 different combinations to compensate for typos and I still can't get it. What's odd is I typed it in wrong - twice.

    Mono, thanks for the link. I'll give that a try.

    <<<EDIT>>>>

    Didn't need to try it. I finally remembered! I forgot to change it from my temp to perm password.
    Last edited by jpinard; 06-20-2006 at 01:25 PM.

  5. #5
    Social Worker
    Join Date
    Jan 2005
    Location
    Boston, MA
    Posts
    3,900
    try with caps lock on.

    nevermind.

  6. #6
    New Romantic
    Join Date
    Jun 2004
    Location
    Dallas, TX 360/PS3/Steam: tenjackten
    Posts
    7,905
    I strongly encourage you to print that spreadsheet.

  7. #7
    Keeper of the Frop Bog How To Go
    Join Date
    Sep 2004
    Location
    Enceladus, Saturn
    Posts
    10,517
    Quote Originally Posted by RickH
    I strongly encourage you to print that spreadsheet.
    Hehe, I'm doing that right now. Unless a game is really special, I almost never keep boxes, and all my CD's are sans case in 2 giant CD cases that house 200 CD's. All my CD cases are in several "sort through this later" boxes.

  8. #8
    New Romantic
    Join Date
    Jun 2002
    Location
    Seattle
    Posts
    7,166
    Wait, you password protect your spreadsheet? Who are you worried about getting their hands on your game keys?

    Worst case, you can re-enter all of your game keys from the originals. You still have the originals, no?

    - Alan

  9. #9
    How To Go
    Join Date
    Jun 2002
    Location
    Austin, TX. XBOX: Wonginator
    Posts
    12,393
    jp, you know you have a tendency to over-react to certain things, right? Well, in case you were wondering, password protecting a spreadsheet, one that contains no personal data, and that lives on a physically secure USB drive to boot, counts as an over-reaction. :-)

  10. #10
    Mad Chester
    Join Date
    Oct 2002
    Location
    Nashville
    Posts
    1,429
    That's one mother of a for-next loop.

  11. #11
    Keeper of the Frop Bog How To Go
    Join Date
    Sep 2004
    Location
    Enceladus, Saturn
    Posts
    10,517
    Quote Originally Posted by Roger Wong
    jp, you know you have a tendency to over-react to certain things, right? Well, in case you were wondering, password protecting a spreadsheet, one that contains no personal data, and that lives on a physically secure USB drive to boot, counts as an over-reaction. :-)
    Hehehehehe. And I over-reacted to the e-mail thing too. I thought someone had guessed my password and was e-mailing to check to see if it was working. <sigh> I'm such an idiot sometimes - hehe.

  12. #12
    The bees are doing great New Romantic
    Join Date
    Jul 2003
    Location
    Wearing a beard made of bees.
    Posts
    6,295
    But I don't have VB and don't konw if I can somehow incorprate this vb script into Excel. (I have Office XP 2002 version)
    ALT + F11 to open the VBA ide in Office Applications.

  13. #13
    Social Worker
    Join Date
    Nov 2003
    Posts
    3,989
    Quote Originally Posted by RickH
    I strongly encourage you to print that spreadsheet.
    Just don't fall asleep on it.

  14. #14
    Keeper of the Frop Bog How To Go
    Join Date
    Sep 2004
    Location
    Enceladus, Saturn
    Posts
    10,517
    Quote Originally Posted by Warning
    Just don't fall asleep on it.
    Hehe you guys have long memories. :D

  15. #15
    New Romantic
    Join Date
    Jul 2002
    Posts
    7,571
    Quote Originally Posted by jpinard
    Hehe you guys have long memories. :D
    Sure we have long memories and a search function, but that is also a *very* memorable story.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •