-
Notifications
You must be signed in to change notification settings - Fork 21
/
pdfcrack.c
833 lines (703 loc) · 20.2 KB
/
pdfcrack.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
/**
* Copyright (C) 2006-2015 Henning Norén
* Copyright (C) 1996-2005 Glyph & Cog, LLC.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
* USA.
*/
#include <stdbool.h>
#include <stdint.h>
#include <stdlib.h>
#include <string.h>
#include <time.h>
#include <ctype.h>
#include "pdfcrack.h"
#include "md5.h"
#include "rc4.h"
#include "sha256.h"
#include "passwords.h"
/** sets the number of bytes to decrypt for partial test in revision 3.
Three should be a good number for this as this mean a match should only
happen every 256^3=16777216 check and that should be unique enough to
motivate a full retry on that entry.
*/
#define PARTIAL_TEST_SIZE 3
static const uint8_t
pad[32] = {
0x28,0xBF,0x4E,0x5E,0x4E,0x75,0x8A,0x41,
0x64,0x00,0x4E,0x56,0xFF,0xFA,0x01,0x08,
0x2E,0x2E,0x00,0xB6,0xD0,0x68,0x3E,0x80,
0x2F,0x0C,0xA9,0xFE,0x64,0x53,0x69,0x7A
};
/** buffers for stuff that we can precompute before the actual cracking */
static uint8_t *encKeyWorkSpace;
static uint8_t password_user[40]; /** need to cover 32 char + salt */
static uint8_t *rev3TestKey;
static unsigned int ekwlen;
/** points to the current password in clear-text */
static uint8_t *currPW;
/** current length of the password we are working with */
static unsigned int currPWLen;
/** statistics */
static unsigned int nrprocessed;
static time_t startTime;
/** pointer to the actual encoding-data from the pdf */
static const EncData *encdata;
/** some configuration switches */
static bool crackDone;
static bool knownPassword;
static bool workWithUser;
/** Print out some statistics */
bool
printProgress(void) {
time_t currentTime;
char str[33];
if(crackDone)
return true;
currentTime = time(NULL);
memcpy(str,currPW,currPWLen);
str[currPWLen] = '\0';
printf("Average Speed: %.1f w/s. ",
nrprocessed/difftime(currentTime,startTime));
printf("Current Word: '%s'\n",str);
fflush(stdout);
nrprocessed = 0;
startTime = time(NULL);
return false;
}
/**
* Initialisation of the encryption key workspace to manage a bit faster
* switching between keys
*/
static unsigned int
initEncKeyWorkSpace(const int revision, const bool encMetaData,
const int permissions, const uint8_t *ownerkey,
const uint8_t *fileID, const unsigned int fileIDLen) {
unsigned int size;
/**
* Algorithm 3.2 Computing an encryption key (PDF Reference, v 1.7, p.125)
*
* Make space for:
* field | bytes
* -----------------------
* padded password | 32
* O entry | 32
* P entry | 4
* fileID | <fileIDLEn>
* [extra padding] | [4] (Special for step 6)
**/
size = (revision >= 3 && !encMetaData) ? 72 : 68;
encKeyWorkSpace = malloc(size + fileIDLen);
/** Just to be sure we have no uninitalized stuff in the workspace */
memcpy(encKeyWorkSpace, pad, 32);
/** 3 */
memcpy(encKeyWorkSpace + 32, ownerkey, 32);
/** 4 */
encKeyWorkSpace[64] = permissions & 0xff;
encKeyWorkSpace[65] = (permissions >> 8) & 0xff;
encKeyWorkSpace[66] = (permissions >> 16) & 0xff;
encKeyWorkSpace[67] = (permissions >> 24) & 0xff;
/** 5 */
memcpy(encKeyWorkSpace + 68, fileID, fileIDLen);
/** 6 */
if(revision >= 3 && !encMetaData) {
encKeyWorkSpace[68+fileIDLen] = 0xff;
encKeyWorkSpace[69+fileIDLen] = 0xff;
encKeyWorkSpace[70+fileIDLen] = 0xff;
encKeyWorkSpace[71+fileIDLen] = 0xff;
}
return size+fileIDLen;
}
#if 0
/** For debug */
static void
printHexString(const uint8_t *str, const unsigned int len) {
unsigned int i;
for(i=0;i<len;i++)
printf("%x ",str[i]);
printf("\n");
}
static void
printString(const uint8_t *str, const unsigned int len) {
unsigned int i;
for(i=0;i<len;i++)
printf("%d ",str[i]);
printf("\n");
}
#endif
/** toupper(3) but expanded to handle iso-latin-1 characters */
static uint8_t
isolat1ToUpper(const uint8_t b) {
if(unlikely(b >= 0xe0 && b <= 0xf6))
return b-0x20;
else
return toupper(b);
}
/** Really stupid permutate that needs to be replaced with a better framwork
for smart permutations of the current password */
static bool
do_permutate(void) {
static bool ret = false;
uint8_t tmp;
tmp = isolat1ToUpper(currPW[0]);
if(tmp != currPW[0]) {
currPW[0] = tmp;
ret = !ret;
}
else
ret = false;
return ret;
}
/** Dummy-function to use when no permutations are wanted */
static bool
no_permutate(void) { return false; }
/** Placeholder for the correct permutation-function to run */
static bool (*permutate)() = NULL;
/** Prints out the password found */
static void
foundPassword(void) {
char str[33];
int fin_search;
size_t pad_start;
memcpy(str,currPW,currPWLen);
str[currPWLen] = '\0';
printf("found %s-password: '%s'\n", workWithUser?"user":"owner", str);
/**
* Print out the user-password too if we know the ownerpassword.
* It is placed in password_user and we need to find where the pad
* starts before we can print it out (without ugly artifacts)
**/
if(!workWithUser && (encdata->revision < 5)) {
pad_start=0;
do {
fin_search = memcmp(password_user+pad_start, pad, 32-pad_start);
pad_start++;
} while (pad_start < 32 && fin_search != 0);
memcpy(str, password_user, pad_start);
if(!fin_search)
str[pad_start-1] = '\0';
printf("found user-password: '%s'\n", str);
}
}
/** Common handling of the key for all rev3-functions */
#define RC4_DECRYPT_REV3(n) { \
for(i = 19; i >= 0; --i) { \
for(j = 0; j < length; ++j) \
tmpkey[j] = enckey[j] ^ i; \
rc4Decrypt(tmpkey, test, n, test); \
} \
}
/** Checks if the rev2-password set up in encKeyWorkSpace is the correct one
and return true if it is and false otherwise.
*/
static bool
isUserPasswordRev2(void) {
uint8_t enckey[16];
md5(encKeyWorkSpace, ekwlen, enckey);
return rc4Match40b(enckey, encdata->u_string, pad);
}
/** Checks if the rev3-password set up in encKeyWorkSpace is the correct one
and return true if it is and false otherwise.
*/
static bool
isUserPasswordRev3(void) {
uint8_t test[16], enckey[16], tmpkey[16];
unsigned int length, j;
int i;
length = encdata->length/8;
md5(encKeyWorkSpace, ekwlen, enckey);
md5_50(enckey, length);
memcpy(test, encdata->u_string, PARTIAL_TEST_SIZE);
/** Algorithm 3.5 reversed */
RC4_DECRYPT_REV3(PARTIAL_TEST_SIZE);
/** if partial test succeeds we make a full check to be sure */
if(unlikely(memcmp(test, rev3TestKey, PARTIAL_TEST_SIZE) == 0)) {
memcpy(test, encdata->u_string, length);
RC4_DECRYPT_REV3(length);
if(memcmp(test, rev3TestKey, length) == 0)
return true;
}
return false;
}
/** Common beginning of the main-loop in all the cracking-functions */
#define BEGIN_CRACK_LOOP() { \
currPWLen = setPassword(currPW); \
if(unlikely(lpasslength != currPWLen)) { \
if(likely(currPWLen < 32)) \
memcpy(currPW + currPWLen, pad, 32-currPWLen); \
lpasslength = currPWLen; \
} \
}
bool
runCrackRev2_o(void) {
uint8_t enckey[16];
unsigned int lpasslength;
lpasslength = 0;
startTime = time(NULL);
do {
BEGIN_CRACK_LOOP();
do {
md5(currPW, 32, enckey);
rc4Decrypt(enckey, encdata->o_string, 32, encKeyWorkSpace);
md5(encKeyWorkSpace, ekwlen, enckey);
if(rc4Match40b(enckey, encdata->u_string, pad)) {
memcpy(password_user, encKeyWorkSpace, 32);
return true;
}
++nrprocessed;
} while(permutate());
} while(nextPassword());
return false;
}
bool
runCrackRev3_o(void) {
uint8_t test[32], enckey[16], tmpkey[16];
unsigned int j, length, lpasslength;
int i;
length = encdata->length/8;
lpasslength = 0;
startTime = time(NULL);
do {
BEGIN_CRACK_LOOP();
do {
md5(currPW, 32, enckey);
md5_50(enckey, length);
memcpy(test, encdata->o_string, 32);
RC4_DECRYPT_REV3(32);
memcpy(encKeyWorkSpace, test, 32);
if(isUserPasswordRev3()) {
memcpy(password_user, encKeyWorkSpace, 32);
return true;
}
++nrprocessed;
} while(permutate());
} while(nextPassword());
return false;
}
bool
runCrackRev2_of(void) {
uint8_t enckey[16];
unsigned int lpasslength;
lpasslength = 0;
startTime = time(NULL);
do {
BEGIN_CRACK_LOOP();
do {
md5(encKeyWorkSpace, 32, enckey);
/* Algorithm 3.4 reversed */
if(rc4Match40b(enckey, encdata->o_string, password_user))
return true;
++nrprocessed;
} while(permutate());
} while(nextPassword());
return false;
}
bool
runCrackRev3_of(void) {
uint8_t test[32], enckey[16], tmpkey[16];
unsigned int j, length, lpasslength;
int i;
length = encdata->length/8;
lpasslength = 0;
startTime = time(NULL);
do {
BEGIN_CRACK_LOOP();
do {
md5(encKeyWorkSpace, 32, enckey);
md5_50(enckey, length);
memcpy(test, encdata->o_string, PARTIAL_TEST_SIZE);
RC4_DECRYPT_REV3(PARTIAL_TEST_SIZE);
/** if partial test succeeds we make a full check to be sure */
if(unlikely(memcmp(test, password_user, PARTIAL_TEST_SIZE) == 0)) {
memcpy(test, encdata->o_string, 32);
RC4_DECRYPT_REV3(32);
if(memcmp(test, password_user, 32) == 0)
return true;
}
++nrprocessed;
} while(permutate());
} while(nextPassword());
return false;
}
bool
runCrackRev3(void) {
uint8_t test[16], enckey[16], tmpkey[16];
unsigned int j, length, lpasslength;
int i;
length = encdata->length/8;
lpasslength = 0;
startTime = time(NULL);
do {
BEGIN_CRACK_LOOP();
do {
md5(encKeyWorkSpace, ekwlen, enckey);
md5_50(enckey, length);
memcpy(test, encdata->u_string, PARTIAL_TEST_SIZE);
/** Algorithm 3.5 reversed */
RC4_DECRYPT_REV3(PARTIAL_TEST_SIZE);
/** if partial test succeeds we make a full check to be sure */
if(unlikely(memcmp(test, rev3TestKey, PARTIAL_TEST_SIZE) == 0)) {
memcpy(test, encdata->u_string, length);
RC4_DECRYPT_REV3(length);
if(memcmp(test, rev3TestKey, length) == 0)
return true;
}
++nrprocessed;
} while(permutate());
} while(nextPassword());
return false;
}
bool
runCrackRev2(void) {
uint8_t enckey[16];
unsigned int lpasslength;
lpasslength = 0;
startTime = time(NULL);
do {
BEGIN_CRACK_LOOP();
do {
md5(encKeyWorkSpace, ekwlen, enckey);
/* Algorithm 3.4 reversed */
if(rc4Match40b(enckey, encdata->u_string, pad))
return true;
++nrprocessed;
} while(permutate());
} while(nextPassword());
return false;
}
bool
runCrackRev5(void) {
uint8_t enckey[32];
unsigned int lpasslength;
lpasslength = 0;
startTime = time(NULL);
do {
currPWLen = setPassword(currPW);
if(unlikely(lpasslength != currPWLen)) {
/** Add the 8 byte user validation salt to pad */
if(likely(currPWLen < 32))
memcpy(currPW + currPWLen, encdata->u_string+32, 8);
lpasslength = currPWLen;
}
do {
sha256f(currPW, currPWLen+8, enckey);
if(memcmp(enckey, encdata->u_string, 32) == 0)
return true;
++nrprocessed;
} while(permutate());
} while(nextPassword());
return false;
}
bool
runCrackRev5_o(void) {
uint8_t enckey[32];
unsigned int lpasslength;
lpasslength = 0;
startTime = time(NULL);
do {
currPWLen = setPassword(currPW);
if(unlikely(lpasslength != currPWLen)) {
/** Add the 8 byte user validation and 48 byte u-key salt to pad */
if(likely(currPWLen < 32)) {
memcpy(currPW + currPWLen, encdata->o_string+32, 8);
memcpy(currPW + currPWLen+8, encdata->u_string, 48);
}
lpasslength = currPWLen;
}
do {
sha256(currPW, currPWLen+56, enckey);
if(memcmp(enckey, encdata->o_string, 32) == 0)
return true;
++nrprocessed;
} while(permutate());
} while(nextPassword());
return false;
}
/** Start cracking and does not stop until it has either been interrupted by
a signal or the password either is found or wordlist or charset is exhausted
*/
void
runCrack(void) {
bool found = false;
uint8_t cpw[88];
if(encdata->revision == 5) {
if(workWithUser) {
memcpy(currPW, encdata->u_string+32, 8);
found = runCrackRev5();
}
else {
memcpy(currPW, encdata->o_string+32, 8);
memcpy(currPW + 8, encdata->u_string, 48);
found = runCrackRev5_o();
}
}
else if(!workWithUser && !knownPassword) {
memcpy(cpw, pad, 32);
currPW = cpw;
if(encdata->revision == 2)
found = runCrackRev2_o();
else
found = runCrackRev3_o();
}
else if(encdata->revision == 2) {
if(workWithUser)
found = runCrackRev2();
else /** knownPassword */
found = runCrackRev2_of();
}
else {
if(workWithUser)
found = runCrackRev3();
else /** knownPassword */
found = runCrackRev3_of();
}
crackDone = true;
if(!found)
printf("Could not find password\n");
else
foundPassword();
currPW = NULL;
}
/** returns the number of processed passwords */
unsigned int
getNrProcessed(void) { return nrprocessed; }
/** These are shared variables between loading and initialisation and controls
how to do the initialisation. Should not be touched by anything except
loadState and cleanPDFCrack.
*/
static bool recovery = false;
static bool permutation = false;
/** cleans up everything as is needed to do a any initPDFCrack-calls after the
first one.
*/
void
cleanPDFCrack(void) {
if(rev3TestKey) {
/** Do a really ugly const to non-const cast but this one time it should
be safe
*/
free((uint8_t*)rev3TestKey);
rev3TestKey = NULL;
}
if(encKeyWorkSpace) {
free(encKeyWorkSpace);
encKeyWorkSpace = NULL;
}
knownPassword = false;
recovery = false;
permutation = false;
}
/** initPDFCrack is doing all the initialisations before you are able to call
runCrack(). Make sure that you run cleanPDFCrack before you call this
after the first time.
*/
bool
initPDFCrack(const EncData *e, const uint8_t *upw, const bool user,
const char *wl, const passwordMethod pm, FILE *file,
const char *cs, const unsigned int minPw,
const unsigned int maxPw, const bool perm) {
uint8_t buf[128];
unsigned int upwlen;
uint8_t *tmp;
ekwlen = initEncKeyWorkSpace(e->revision, e->encryptMetaData, e->permissions,
e->o_string, e->fileID, e->fileIDLen);
encdata = e;
currPW = encKeyWorkSpace;
currPWLen = 0;
nrprocessed = 0;
workWithUser = user;
crackDone = false;
if(e->revision >= 5) {
permutation = (perm || permutation);
if(permutation)
permutate = do_permutate;
else
permutate = no_permutate;
initPasswords(pm, file, wl, cs, minPw, maxPw);
return true;
}
md5_50_init(encdata->length/8);
if(!setrc4DecryptMethod((const unsigned int)e->length))
exit(234);
if(upw) {
upwlen = strlen((const char*)upw);
if(upwlen > 32)
upwlen = 32;
memcpy(password_user, upw, upwlen);
memcpy(password_user+upwlen, pad, 32-upwlen);
memcpy(encKeyWorkSpace, password_user, 32);
knownPassword = true;
}
/** Workaround to set password_user when loading state from file */
if(recovery)
memcpy(encKeyWorkSpace, password_user, 32);
if(encdata->revision == 2) {
if(knownPassword) {
if(!isUserPasswordRev2())
return false;
memcpy(encKeyWorkSpace, pad, 32);
}
else {
memcpy(password_user, pad, 32);
knownPassword = isUserPasswordRev2();
}
}
else if(e->revision >= 3) {
memcpy(buf, pad, 32);
memcpy(buf + 32, e->fileID, e->fileIDLen);
tmp = malloc(sizeof(uint8_t)*16);
md5(buf, 32+e->fileIDLen, tmp);
rev3TestKey = tmp;
if(knownPassword) {
if(!isUserPasswordRev3())
return false;
memcpy(encKeyWorkSpace, pad, 32);
}
else {
memcpy(password_user, pad, 32);
knownPassword = isUserPasswordRev3();
}
}
permutation = (perm || permutation);
if(permutation)
permutate = do_permutate;
else
permutate = no_permutate;
initPasswords(pm, file, wl, cs, minPw, maxPw);
return true;
}
/** Some common patterns between the loadState and saveState */
static const char string_PRVPL[] =
"PDF: %d.%d\nR: %d\nV: %d\nP: %d\nL: %d\n"
"MetaData: %d\nFileID(%d):";
static const char string_FILTER[] = "\nFilter(%zu): ";
static const char string_UUPWP[] =
"\nUser: %d\nUserPw: %d\nPermutate: %d\n";
/** Reads from file and tries to set up the state that it contains.
Returns true on success and false otherwise.
Very little checks for data validitiy is made.
*/
bool
loadState(FILE *file, EncData *e, char **wl, bool *user) {
unsigned int i;
int tmp, tmp2, tmp3;
size_t len;
char c;
/** Load all the simple values bound to the document */
if(fscanf(file,string_PRVPL, &e->version_major, &e->version_minor,
&e->revision, &e->version, &e->permissions, &e->length,
&tmp, &e->fileIDLen) < 8)
return false;
/** bork out if length is insanely high */
if(e->fileIDLen > 256)
return false;
e->encryptMetaData = (tmp == true);
/** Load the FileID */
e->fileID = malloc(sizeof(uint8_t)*e->fileIDLen);
for(i=0;i<e->fileIDLen;i++) {
if(fscanf(file, " %d", &tmp) < 1)
return false;
e->fileID[i] = tmp;
}
/** Load the Security Handler */
if(fscanf(file,string_FILTER, &len) < 1)
return false;
/** bork out if length is insanely high */
if(len > 256)
return false;
if(len > 0)
e->s_handler = malloc((sizeof(uint8_t)*len)+1);
for(i=0;i<(unsigned int)len;i++) {
if(fscanf(file, "%c", &c) < 1)
return false;
e->s_handler[i] = c;
}
/** Make sure we null-terminate the string */
e->s_handler[i] = '\0';
/** Load the U- and O-strings */
if(fscanf(file, "\nO:") == EOF)
return false;
if(e->revision == 5)
len = 48;
else
len = 32;
e->o_string = malloc(sizeof(uint8_t)*len);
e->u_string = malloc(sizeof(uint8_t)*len);
for(i=0;i<len;i++) {
if(fscanf(file, " %d", &tmp) < 1)
return false;
e->o_string[i] = tmp;
}
if(fscanf(file, "\nU:") == EOF)
return false;
for(i=0;i<len;i++) {
if(fscanf(file, " %d", &tmp) < 1)
return false;
e->u_string[i] = tmp;
}
/** Load the simple values bound to the state */
if(fscanf(file, string_UUPWP, &tmp, &tmp2, &tmp3) < 3)
return false;
*user = (tmp == true);
knownPassword = (tmp2 == true);
permutation = (tmp3 == true);
/** Load the saved userpassword if that is used */
if(knownPassword) {
for(i=0;i<32;i++) {
if(fscanf(file, " %d", &tmp) < 1)
return false;
password_user[i] = tmp;
}
}
/** Load the password-specific stuff for the state */
if(!pw_loadState(file, wl))
return false;
/** Remember to set the recovery-boolean to make sure the right things
happen in initPDFCrack */
recovery = true;
return true;
}
/** Saves the current state in the engine to file */
void
saveState(FILE *file) {
unsigned int i;
size_t len;
fprintf(file, string_PRVPL,
encdata->version_major, encdata->version_minor, encdata->revision,
encdata->version, encdata->permissions, encdata->length,
(int)encdata->encryptMetaData, encdata->fileIDLen);
for(i=0;i<encdata->fileIDLen;i++)
fprintf(file, " %d", encdata->fileID[i]);
fprintf(file, string_FILTER, strlen(encdata->s_handler));
fprintf(file, "%s", encdata->s_handler);
fprintf(file, "\nO:");
if(encdata->revision == 5)
len = 48;
else
len = 32;
for(i=0;i<len;i++)
fprintf(file, " %d", encdata->o_string[i]);
fprintf(file,"\nU:");
for(i=0;i<len;i++)
fprintf(file, " %d", encdata->u_string[i]);
fprintf(file, string_UUPWP, (int)workWithUser,
(int)knownPassword, (int)permutation);
if(knownPassword) {
for(i=0;i<32;i++)
fprintf(file, " %d", password_user[i]);
}
/** Save the password-specific stuff */
pw_saveState(file);
}