Giter Site home page Giter Site logo

Comments (2)

Xanadrel avatar Xanadrel commented on September 2, 2024

It's just in the source :

#define LEN_MAX 32

Line length limit is set to 32, if you change the order of your files it works because at step 2 all lines are under 32 characters :

$ ./combinator3.exe qaz.txt wsx.txt 12345.txt > combi3.out

$ ./combinator.exe qaz.txt wsx.txt > combi.step1.out
$ ./combinator.exe combi.step1.out 12345.txt > combi.step2.out

$ sort -u -o combi3.out combi3.out
$ sort -u -o combi.step2.out combi.step2.out

$ wc -l *.out
    256 combi.step1.out
 226560 combi.step2.out
 226560 combi3.out
 453376 total

$ md5sum.exe *.out
1a5c439c15b44f8217420f6455d3aaf6 *combi.step1.out
add1e0561949f11082517f70cd43f206 *combi.step2.out
add1e0561949f11082517f70cd43f206 *combi3.out

You can also easily increase the limit and recompile depending on your needs :)

from hashcat-utils.

Wikinaut avatar Wikinaut commented on September 2, 2024

I would like to propose the increasement of this value to, for example, 256. Would you accept such a regular pull request?

from hashcat-utils.

Related Issues (20)

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.