GithubHelp home page GithubHelp logo

snovvcrash / aes256m-cracker Goto Github PK

View Code? Open in Web Editor NEW
21.0 4.0 11.0 88 KB

:closed_lock_with_key::hammer: Cracking training version of AES-256 (PoC)

Home Page: https://habr.com/post/339910/

License: GNU General Public License v3.0

Python 85.53% Makefile 0.33% C++ 14.14%
cryptography cryptanalysis cracking-ciphers training-ciphers

aes256m-cracker's Introduction

aes256m-cracker

A demonstration program of cracking a training version of AES-256 (AES-256-M, see below for details).

AES-256-M

Let's define a modified version of AES-256 (call it "AES-256-M") which would differ from the original one only by the contents of its S-box, namely the new S-box would be:

2b c4 4d a2 76 99 10 ff 56 b9 30 df 0b e4 6d 82
db 34 bd 52 86 69 e0 0f a6 49 c0 2f fb 14 9d 72
95 7a f3 1c c8 27 ae 41 e8 07 8e 61 b5 5a d3 3c
65 8a 03 ec 38 d7 5e b1 18 f7 7e 91 45 aa 23 cc
cb 24 ad 42 96 79 f0 1f b6 59 d0 3f eb 04 8d 62
3b d4 5d b2 66 89 00 ef 46 a9 20 cf 1b f4 7d 92
75 9a 13 fc 28 c7 4e a1 08 e7 6e 81 55 ba 33 dc
85 6a e3 0c d8 37 be 51 f8 17 9e 71 a5 4a c3 2c
6f 80 09 e6 32 dd 54 bb 12 fd 74 9b 4f a0 29 c6
9f 70 f9 16 c2 2d a4 4b e2 0d 84 6b bf 50 d9 36
d1 3e b7 58 8c 63 ea 05 ac 43 ca 25 f1 1e 97 78
21 ce 47 a8 7c 93 1a f5 5c b3 3a d5 01 ee 67 88
8f 60 e9 06 d2 3d b4 5b f2 1d 94 7b af 40 c9 26
7f 90 19 f6 22 cd 44 ab 02 ed 64 8b 5f b0 39 d6
31 de 57 b8 6c 83 0a e5 4c a3 2a c5 11 fe 77 98
c1 2e a7 48 9c 73 fa 15 bc 53 da 35 e1 0e 87 68

This repo provides a cli-utility to crack a ciphertext crypted with AES-256-M in ECB mode only with one pair of {P, C} available (P - a block of a plaintext, C - the corresponding block of the ciphertext).

Usage

  1. Clone this repo, change directory and resolve necessary dependencies:
$ git clone https://github.com/snovvcrash/aes256m-cracker.git ~/aes256m-cracker
$ cd ~/aes256m-cracker
$ python3 -m pip install -r requirements.txt
  1. Encrypt some file using AES-256-M (aes256m_cpp folder):
~/aes256m-cracker$ cd aes256m_cpp
~/aes256m-cracker/aes256m_cpp$ make
~/aes256m-cracker/aes256m_cpp$ ./aes256m_cpp -e -m ECB -i /path/to/plaintext -o ciphertext -p v3ry_s3cr3t_p4ssw0rd && make clean
  1. Get the string containing the first block of the plaintext (with xxd for example) and copy it to the clipboard:
~/aes256m-cracker/aes256m_cpp$ xxd /path/to/plaintext | head -n 1 | cut -d " " -f 2-9 | tr -d " "
  1. Crack the ciphertext using cracker.py (cracker folder):
~/aes256m-cracker/aes256m_cpp$ cd ../cracker
~/aes256m-cracker/cracker$ python3 crack.py 00ff00ff00ff00ff00ff00ff00ff00ff ../aes256m_cpp/ciphertext

(where 00ff00ff00ff00ff00ff00ff00ff00ff is the first block of the plaintext from your clipboard).

Paperwork

Theoretical part describing how the magic actually works is published here (Cyrillic inside, I warned 👻).

aes256m-cracker's People

Contributors

snovvcrash avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar

aes256m-cracker's Issues

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.