Search found 5 matches

by aurquiel
Thu Aug 24, 2017 1:24 am
Forum: Challenges
Topic: Didactic Feedback Cipher Long 2
Replies: 21
Views: 41701

Well the script that i was able to implement in cipher long 1 taked aorund 689 seconds to decrypt the string, so i added another for cicle for the x variable but imagine something like 689 seconds * 0xFFFFFFFF i was running the new sript for two days, it was impossible to get a fast answer. I am usi...
by aurquiel
Sat Aug 19, 2017 12:00 am
Forum: Challenges
Topic: Didactic Feedback Cipher Long 2
Replies: 21
Views: 41701

if i try brute force my program takes to long to guess the 8 bytes 4 from k and another for x, am i doing with the correct point of view?
by aurquiel
Fri Aug 18, 2017 7:27 pm
Forum: Challenges Solved
Topic: Didactic XOR Cipher 2
Replies: 15
Views: 2405

This c program will filter the results with the more commons English words /*Challenge 'Didactic XOR Cipher 2' [Crypto] Here is a string of bytes encoded in hex: 948881859781c4979186898d90c4c68c85878f85808b8b808881c6c4828b96c4908c8d97c4878c858888818a8381 This sequence has been encrypted with the sam...
by aurquiel
Fri Aug 18, 2017 6:53 pm
Forum: Challenges
Topic: Didactic Feedback Cipher Long
Replies: 11
Views: 21359

I have a i5 processor and just guessing the four bytes key with a c program of 50 lines is taking a couple of minutes
By brute force it takes around 3 min of program running.
by aurquiel
Thu Aug 17, 2017 3:48 pm
Forum: Challenges
Topic: Didactic Feedback Cipher
Replies: 23
Views: 48840

In this code

Code: Select all

k = {unknown byte}
for (i = 0; i < len(txt); i++)
  c = txt[i] ^ k
  print c
  k = c
This

Code: Select all

k = c


should be this

Code: Select all

k = txt[i]