Code Monkey home page Code Monkey logo

cudamd5's Introduction

CudaMD5

Finding strings that get md5'ed to php type juggleable hash

Quick info on PHP type juggling

from here.

Usage

Some login mechanisms use non-strict checks and are vulnerable to type juggling. This issue is hard to spot without source code because check is being made on the hash itself, and hashes are often salted. This code aims to MD5 hashes matching the pattern ^0e[0-9]{30}$ in which php non-strict check will attempt to convert string as integer.

If hashes are salted and you know what the salt might me (for example it often is username), change the salt and saltlen in md5.h.

Dont use debug mode if you arent building on this tool. Debug mode defeats the whole point of using CUDA.

Known Issues

  • If there are two solutions in BLOCKSIZE*THREADSIZE distance away, only the last one will be detected. (Odds are incredibly low, on average they should be ~10M away)
  • Instead of ^0e[0-9]{30}$, ^0*e[0-9]*$ should be used for pattern checking. This will slightly increase the yield.
  • Some of the artifacts remain from starting only in debug mode, which can be removed to slightly optimize runtime.

cudamd5's People

Contributors

ignis-sec avatar

Watchers

 avatar

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.