VBcoders Guest



Don't have an account yet? Register
 


Forgot Password?



Crack an Access 97 password. the easyway

by Jack Jarvis (6 Submissions)
Category: Encryption
Compatability: VB 6.0
Difficulty: Unknown Difficulty
Originally Published: Sat 15th November 2003
Date Added: Mon 8th February 2021
Rating: (1 Votes)

Crack an Access 97 password. the easyway

API Declarations



all you need is a form , two textboxes and a command button

Rate Crack an Access 97 password. the easyway



'keeping it real

'have fun 


Function AccessPassword()
    
    Dim MaxSize, NextChar, MyChar, secretpos, TempPwd
    Dim secret(13)
    secret(0) = (&H86)
    secret(1) = (&HFB)
    secret(2) = (&HEC)
    secret(3) = (&H37)
    secret(4) = (&H5D)
    secret(5) = (&H44)
    secret(6) = (&H9C)
    secret(7) = (&HFA)
    secret(8) = (&HC6)
    secret(9) = (&H5E)
    secret(10) = (&H28)
    secret(11) = (&HE6)
    secret(12) = (&H13)
    secretpos = 0
    Open TextBox2 For Input As #1 ' Open file for input.


    For NextChar = 67 To 79 Step 1 'Read in Encrypted Password
        Seek #1, NextChar ' Set position.
        MyChar = Input(1, #1) ' Read character.
        TempPwd = TempPwd & Chr(Asc(MyChar) Xor secret(secretpos)) 'Decrypt using Xor
        secretpos = secretpos + 1 'increment pointer
    Next NextChar
    Close #1 ' Close file.
    AccessPassword = TempPwd
End Function
Private Sub CommandButton1_Click()

TextBox1.Text = AccessPassword
End Sub

Download this snippet    Add to My Saved Code

Crack an Access 97 password. the easyway Comments

No comments have been posted about Crack an Access 97 password. the easyway. Why not be the first to post a comment about Crack an Access 97 password. the easyway.

Post your comment

Subject:
Message:
0/1000 characters