pdfcrack-mp icon indicating copy to clipboard operation
pdfcrack-mp copied to clipboard

OpenMP update with patterns for pdfcrack

Results 21 pdfcrack-mp issues
Sort by recently updated
recently updated
newest added

Ensure that pdfcrack-mp runs on the following - Fedora Stable - Debian Stable and Testing - Ubuntu LTS and Latest - Arch - OpenSuse Leap and possibly Tumbleweed - AWS...

The following link shows the result of running pdfcrack-ng on a PDF with a new security revision 6 (AES 256) - that is currently unsupported. https://github.com/x2q/pdfcrack-ng/issues/2 Few details of this...

enhancement
help wanted

The attached file generates a Segmentation fault when running in multi-threaded mode: [Segmentation-Fault-11.pdf](https://github.com/shreepads/pdfcrack-mp/files/2130949/Segmentation-Fault-11.pdf) The single threaded version works fine: `./pdfcrack -o Segmentation-Fault-11.pdf` Output: ```PDF version 1.4 Security Handler: Standard V:...

I have pdfcrack **v.011** installed (from [SF](https://sourceforge.net/projects/pdfcrack/)) for several years. Recently, I installed the **-mp** version and compared it with 0.11 on some PDF files. Here are some observations /...

Add an additional character class to represent words from a Wordlist in the Pattern method. This is on the lines of the other character classes given in Issue # 3...

enhancement

At present, when the user provides an input thread count, if that exceeds the value returned by `omp_get_max_threads()` the number of threads is set to `omp_get_max_threads()`. While this usually makes...

The variable `nrprocessed` that stores a count of the number of passwords processed in order to show runtime stats is `unsigned int`. Change to `unsigned long long int` in line...

bug

The pattern method can handle at most the number of passwords that can be stored in an `unsigned long long int` type. This allows up to 18,446,744,073,709,551,615 pattern passwords. At...

bug

`unsigned long long int`s are presently printed using the format `%lli`. This needs to be replaced by `%llu`

bug