Author Topic: File Protector/Encryptor  (Read 8075 times)

0 Members and 1 Guest are viewing this topic.

Offline iago

  • Leader
  • Administrator
  • Hero Member
  • *****
  • Posts: 17914
  • Fnord.
    • View Profile
    • SkullSecurity
Re: File Protector/Encryptor
« Reply #15 on: September 15, 2005, 07:29:18 pm »
Yeah.  Bruting 8 bites is a pretty insignificant task.

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

Offline Quik

  • Webmaster Guy
  • x86
  • Hero Member
  • *****
  • Posts: 3262
  • \x51 \x75 \x69 \x6B \x5B \x78 \x38 \x36 \x5D
    • View Profile
Re: File Protector/Encryptor
« Reply #16 on: September 15, 2005, 08:00:35 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

Offline iago

  • Leader
  • Administrator
  • Hero Member
  • *****
  • Posts: 17914
  • Fnord.
    • View Profile
    • SkullSecurity
Re: File Protector/Encryptor
« Reply #17 on: September 15, 2005, 08:27:49 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. 

Offline Koga73

  • Newbie
  • *
  • Posts: 19
  • I'm new here!
    • View Profile
Re: File Protector/Encryptor
« Reply #18 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

Offline Quik

  • Webmaster Guy
  • x86
  • Hero Member
  • *****
  • Posts: 3262
  • \x51 \x75 \x69 \x6B \x5B \x78 \x38 \x36 \x5D
    • View Profile
Re: File Protector/Encryptor
« Reply #19 on: September 20, 2005, 05:59:14 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

Offline Koga73

  • Newbie
  • *
  • Posts: 19
  • I'm new here!
    • View Profile
Re: File Protector/Encryptor
« Reply #20 on: September 20, 2005, 08:28:03 pm »
hmm, well even if u dont crack it, could u at least respond sayin u tried?

Offline iago

  • Leader
  • Administrator
  • Hero Member
  • *****
  • Posts: 17914
  • Fnord.
    • View Profile
    • SkullSecurity
Re: File Protector/Encryptor
« Reply #21 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


Offline Joe

  • B&
  • x86
  • Hero Member
  • *****
  • Posts: 10319
  • In Soviet Russia, text read you!
    • View Profile
    • Github
Re: File Protector/Encryptor
« Reply #22 on: September 20, 2005, 09:37:24 pm »
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. =)
Code: [Select]
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
« Last Edit: September 20, 2005, 09:39:13 pm by Joe[e2] »
I'd personally do as Joe suggests

You might be right about that, Joe.


Offline Sidoh

  • x86
  • Hero Member
  • *****
  • Posts: 17634
  • MHNATY ~~~~~
    • View Profile
    • sidoh
Re: File Protector/Encryptor
« Reply #23 on: September 20, 2005, 09:38:39 pm »
wrote*?

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

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

Offline iago

  • Leader
  • Administrator
  • Hero Member
  • *****
  • Posts: 17914
  • Fnord.
    • View Profile
    • SkullSecurity
Re: File Protector/Encryptor
« Reply #24 on: September 22, 2005, 11:20:22 am »
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

Offline Joe

  • B&
  • x86
  • Hero Member
  • *****
  • Posts: 10319
  • In Soviet Russia, text read you!
    • View Profile
    • Github
Re: File Protector/Encryptor
« Reply #25 on: September 22, 2005, 05:57:23 pm »
iago rocks. (Please approve me. =p)
I'd personally do as Joe suggests

You might be right about that, Joe.