Posts

Es werden Posts vom 2019 angezeigt.

[ENGLISH] Capture the Flag at UCF - Write Up - Crypto - XORLY

Bild
With in this blog post, we are going to solve the xorly.py challenge available at:  https://ctf.hackucf.org/challenges#xorly   Below you find the challenge we have to solve. #!/usr/bin/env python2 def encrypt(plaintext, key): ciphertext = [] for i in xrange(0, len(plaintext)): ciphertext.append(ord(plaintext[i]) ^ ord(key[i%len(key)])) return ''.join(map(chr, ciphertext)) decrypt = encrypt ''' I'll give you a sample of how this works: Plaintext: "Here is a sample. Pay close attention!" Ciphertext: (encoded in hex) 2e0c010d46000048074900090b191f0d484923091f491004091a1648071d070d081d1a070848 Flag: (encoded in hex, encrypted with the same key) 0005120f1d111c1a3900003712011637080c0437070c0015 ''' The source code is written in python2 as you have seen above. The most important part here is where the actual encryption happens. ciphertext.append(ord(plaintext[i]) ^ ord(key[i%len(key)])) In this line, our inp...

Re-Cognize -- Offizieller Start

Neben dem Arbeitsalltag und der Wartung von r3d-soft.de , habe ich an einem weiteren Projekt gearbeitet. Dieses Projekt ist nun soweit fortgeschritten, dass ich es euch nun auch gerne Vorstellen möchte. Hierbei handelt es sich um ein neues Social-Network names: Re-Cognize Die Idee hinter diesem Projekt ist simpel. Teilt ihr gerne Musik sowie ich mit euren Freunden? Dann habt ihr hiermit die Möglichkeit weitaus mehr Leute zu erreichen. Schaut es euch doch gern mal an: https://re-cognize.app