News:

Happy New Year! Yes, the current one, not a previous one; this is a new post, we swear!

Main Menu

File Protector/Encryptor

Started by Koga73, September 14, 2005, 10:41:20 PM

Previous topic - Next topic

0 Members and 4 Guests are viewing this topic.

iago

Quote from: Sidoh on September 15, 2005, 01:18:21 PM
Yeah.  Bruting 8 bites is a pretty insignificant task.

Do you mean bits or bytes? It's hard to tell :P

Quik

Quote from: iago on September 15, 2005, 07:29:18 PM
Quote from: Sidoh on September 15, 2005, 01:18:21 PM
Yeah. Bruting 8 bites is a pretty insignificant task.

Do you mean bits or bytes? It's hard to tell :P

See my post.

Also: (16:25:34) Quik: There's a bit, and a byte, but bites are new to me
Quote[20:21:13] xar: i was just thinking about the time iago came over here and we made this huge bomb and light up the sky for 6 min
[20:21:15] xar: that was funny

iago

Quote from: Quik on September 15, 2005, 08:00:35 PM
Quote from: iago on September 15, 2005, 07:29:18 PM
Quote from: Sidoh on September 15, 2005, 01:18:21 PM
Yeah. Bruting 8 bites is a pretty insignificant task.

Do you mean bits or bytes? It's hard to tell :P

See my post.

Also: (16:25:34) Quik: There's a bit, and a byte, but bites are new to me

The question still wasn't answered. 

Koga73

Ok, i made a simple exe in qbasic that contains a single word. Then, i encrypted the program with my program. So, lets see some bruting! If you crack it and get the answer.exe to work, just reply with the word in the program. Heres a url to downlad the answer.exe and the encryptor:

http://mercury.walagata.com/w/koga73/Crack_Me.zip

Quik

Quote from: Koga73 on September 20, 2005, 03:30:45 PM
Ok, i made a simple exe in qbasic that contains a single word. Then, i encrypted the program with my program. So, lets see some bruting! If you crack it and get the answer.exe to work, just reply with the word in the program. Heres a url to downlad the answer.exe and the encryptor:

http://mercury.walagata.com/w/koga73/Crack_Me.zip

Oh, if only zorm visited these forums.
Quote[20:21:13] xar: i was just thinking about the time iago came over here and we made this huge bomb and light up the sky for 6 min
[20:21:15] xar: that was funny

Koga73

hmm, well even if u dont crack it, could u at least respond sayin u tried?

iago

Sorry it took me so long.  The word is "Deliquesce".  The encryption key was "102", and the speed was "2". 

I can't believe how slllooooow your program is.  I write an implementation in C that encrypts your 16kb file, at speed 1, in milliseconds. :-P


Joe

#22
wrote*?

Sidoh, thanks man! Much better than my old integral division encoding.

EDIT -
Heres my code. By no means secure, due to having the key right in it, but you go right ahead and do what you think is best with it. =)
Option Explicit

Public Function Decode(S As String) As String
    Dim Ret As String, Key As Byte, Char As Byte, I As Byte
    Key = Asc(Mid(S, 1, 1))
    For I = 2 To Len(S)
        Char = Asc(Mid(S, I, 1))
        Char = Char Xor Key
        Ret = Ret & Chr(Char)
    Next I
    Decode = Ret
End Function

Public Function Encode(S As String) As String
    Dim Ret As String, Key As Byte, Char As Byte, I As Byte
    Randomize: Key = Int(Rnd * &HFF) + 1
    Ret = Chr(Key)
    For I = 1 To Len(S)
        Char = Asc(Mid(S, I, 1))
        Char = Char Xor Key
        Ret = Ret & Chr(Char)
    Next I
    Encode = Ret
End Function
Quote from: Camel on June 09, 2009, 04:12:23 PMI'd personally do as Joe suggests

Quote from: AntiVirus on October 19, 2010, 02:36:52 PM
You might be right about that, Joe.


Sidoh

Quote from: Joe[e2] on September 20, 2005, 09:37:24 PM
wrote*?

Sidoh, thanks man! Much better than my old integral division encoding.
Haha, sure.

Quote from: iago on September 20, 2005, 08:46:16 PM
Sorry it took me so long. The word is "Deliquesce". The encryption key was "102", and the speed was "2".

I can't believe how slllooooow your program is. I write an implementation in C that encrypts your 16kb file, at speed 1, in milliseconds. :-P


Lmao

iago

Quote from: Koga73 on September 20, 2005, 08:28:03 PM
hmm, well even if u dont crack it, could u at least respond sayin u tried?

Well, are you going to admit that I rock or what? :P

Joe

iago rocks. (Please approve me. =p)
Quote from: Camel on June 09, 2009, 04:12:23 PMI'd personally do as Joe suggests

Quote from: AntiVirus on October 19, 2010, 02:36:52 PM
You might be right about that, Joe.