-
Notifications
You must be signed in to change notification settings - Fork 527
/
byte-stats.py
834 lines (744 loc) · 33.9 KB
/
byte-stats.py
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
834
#!/usr/bin/env python
__description__ = 'Calculate byte statistics'
__author__ = 'Didier Stevens'
__version__ = '0.0.10'
__date__ = '2024/01/10'
"""
Source code put in public domain by Didier Stevens, no Copyright
https://DidierStevens.com
Use at your own risk
History:
2014/10/25: start
2014/10/26: refactoring
2015/10/17: added buckets and properties
2015/10/22: 0.0.2 added sequence detection
2015/10/23: finished man
2015/10/31: 0.0.3 option -k also works for sequences (-s) now
2015/11/01: added option -f
2015/11/08: added position for minimum and maximum entropy
2016/11/16: 0.0.4 added unique bytes
2017/01/22: 0.0.5 added hex and base64 counts
2017/08/12: 0.0.6 added option -r
2017/09/13: 0.0.7 added average consecutive byte difference, refactoring (cCalculateByteStatistics)
2017/11/01: added option -g
2020/12/21: 0.0.8 Python 3
2022/10/17: 0.0.9 added statistics for longest strings
2024/01/10: 0.0.10 added some changes to entropy
Todo:
"""
import optparse
import glob
import sys
import collections
import os
import math
import string
import textwrap
import binascii
import operator
bPython3 = sys.version_info[0] > 2
if bPython3:
import tkinter
else:
import Tkinter as tkinter
def PrintManual():
manual = '''
Manual:
byte-stats is a tool to calculate byte statistics of the content of files. It helps to determine the type or content of a file.
Let's start with some examples.
all.bin is a 256-byte large file, containing all possible byte values. The bytes are ordered: the first byte is 0x00, the second one is 0x01, the third one is 0x02, ... and the last one is 0xFF.
$byte-stats.py all.bin
Byte ASCII Count Pct
0x00 1 0.39%
0x01 1 0.39%
0x02 1 0.39%
0x03 1 0.39%
0x04 1 0.39%
...
0xfb 1 0.39%
0xfc 1 0.39%
0xfd 1 0.39%
0xfe 1 0.39%
0xff 1 0.39%
Size: 256
File(s)
Entropy: 8.000000
ACBD: 1.000000
Unique bytes: 256 100.00%
NULL bytes: 1 0.39%
Control bytes: 27 10.55%
Whitespace bytes: 6 2.34%
Printable bytes: 94 36.72%
High bytes: 128 50.00%
Hexadecimal bytes: 22 8.59%
BASE64 bytes: 65 25.39%
Longest string: 95 37.11%
Longest hex: 10 3.91%
Longest base64: 26 10.16%
First byte-stats.py will display a histogram of byte values found in the file(s). The first column is the byte value in hex (Byte), the second column is its ASCII value, third column tells us how many times the byte value appears (Count) and the last column is the percentage (Pct).
This histogram is sorted by Count (ascending). To change the order use option -d (descending), to sort by byte value use option -k (key).
By default, the first 5 and last 5 entries of the histogram are displayed. To display all values, use option -a (all).
After the histogram, the size of the file(s) is displayed.
Finally, the following statistics for the files(s) are displayed:
* Entropy (between 0.0 and 8.0).
* Average Consecutive Byte Difference (between 0.0 and 256.0)
* Number and percentage of Unique bytes.
* Number and percentage of NULL bytes (0x00).
* Number and percentage of Control bytes (0x01 through 0x1F, excluding whitespace bytes and including 0x7F).
* Number and percentage of Whitespace bytes (0x09 through 0x0D and 0x20).
* Number and percentage of Printable bytes (0x21 through 0x7E).
* Number and percentage of High bytes (0x80 through 0xFF).
* Number and percentage of Hexadecimal bytes (0123456789abcdefABCDEF).
* Number and percentage of BASE64 bytes (ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=).
* Length and percentage of the longest Printable ASCII string
* Length and percentage of the longest Hexadecimal ASCII string (including uneven lengths)
* Length and percentage of the longest Base64 ASCII string (without conting = padding)
byte-stats.py will also split the file in equally sized parts (called buckets) and perform the same calculations for these buckets. The default size of a bucket is 10KB (10240 bytes), but can be chosen with option -b (bucket). If the file is smaller than the bucket size, no bucket calculations are performed. If the file size is not an exact multiple of the bucket size, then no calculations are done for the last bucket (because it is incomplete).
Here is an example with buckets (file random.bin just contains random bytes):
$byte-stats.py random.bin
Byte ASCII Count Pct
0xce 242 0.32%
0x14 248 0.33%
0x52 R 251 0.34%
0xba 251 0.34%
0x3e > 256 0.34%
...
0x2e . 332 0.44%
0x45 E 336 0.45%
0xc9 336 0.45%
0x1b 338 0.45%
0x75 u 344 0.46%
Size: 74752 Bucket size: 10240 Bucket count: 7
File(s) Minimum buckets Maximum buckets
Entropy: 7.997180 7.981543 7.984125
Position: 0x0000f000 0x00005000
ACBD: 85.437426 84.586483 86.378162
Position: 0x00005000 0x0000a000
Unique bytes: 256 0.34% 256 2.50% 256 2.50%
NULL bytes: 303 0.41% 34 0.33% 44 0.43%
Control bytes: 7888 10.55% 1046 10.21% 1117 10.91%
Whitespace bytes: 1726 2.31% 220 2.15% 254 2.48%
Printable bytes: 27278 36.49% 3680 35.94% 3812 37.23%
High bytes: 37557 50.24% 5096 49.77% 5211 50.89%
Hexadecimal bytes: 6531 8.74% 862 8.42% 933 9.11%
BASE64 bytes: 18935 25.33% 2518 24.59% 2646 25.84%
Longest string: 10 0.01% 6 0.06% 10 0.10%
Longest hex: 5 0.01% 3 0.03% 5 0.05%
Longest base64: 7 0.01% 6 0.06% 7 0.07%
Besides the file size (74752), the size of the bucket (10240) and the number of buckets (7) is displayed.
And next to the entropy and byte counters for the complete file, the entropy and byte counters are calculated for each bucket. The minimum values for the bucket entropy and byte counters are displayed (Minimum buckets), and also the maximum values (Maximum buckets).
Position gives the start of the bucket with minimum entropy and maximum entropy in hexadecimal.
A significant difference between the overal statistics and bucket statistics can indicate a file that is not uniform in its content.
Like in this picture "encrypted" by ransomware:
$byte-stats.py picture.jpg.ransom
Byte ASCII Count Pct
0x44 D 1172 0.13%
0x16 1310 0.15%
0x22 " 1371 0.16%
0xc2 1421 0.16%
0x17 1437 0.16%
...
0x7a z 7958 0.91%
0x82 8006 0.91%
0x7e ~ 8571 0.98%
0x80 22232 2.53%
0x00 23873 2.72%
Size: 877456 Bucket size: 10240 Bucket count: 85
File(s) Minimum buckets Maximum buckets
Entropy: 7.815519 5.156678 7.981628
Position: 0x00019000 0x00005000
ACBD: 82.580532 52.685223 87.892568
Position: 0x0000f000 0x0002f800
Unique bytes: 256 0.03% 179 1.75% 256 2.50%
NULL bytes: 23873 2.72% 8 0.08% 1643 16.04%
Control bytes: 92243 10.51% 98 0.96% 1275 12.45%
Whitespace bytes: 16241 1.85% 1 0.01% 263 2.57%
Printable bytes: 303975 34.64% 2476 24.18% 5219 50.97%
High bytes: 441124 50.27% 3728 36.41% 6772 66.13%
Hexadecimal bytes: 63064 7.19% 166 1.62% 987 9.64%
BASE64 bytes: 209139 23.83% 1555 15.19% 3587 35.03%
Longest string: 45 0.01% 4 0.04% 45 0.44%
Longest hex: 6 0.00% 1 0.01% 6 0.06%
Longest base64: 32 0.00% 3 0.03% 32 0.31%
The entropy for the file is 7.815519 (encrypted or compressed), but there is one part of the file (bucket) with an entropy of (5.156678). This part is not encrypted or compressed.
To locate this part, option -l (list) can be used to list the entropy values for each bucket:
$byte-stats.py -l picture.jpg.ransom
0x00000000 7.978380
0x00002800 7.979475
0x00005000 7.981628
0x00007800 7.267890
0x0000a000 6.579047
0x0000c800 6.798210
0x0000f000 6.733402
0x00011800 6.496882
0x00014000 5.743983
0x00016800 5.488550
0x00019000 5.156678
0x0001b800 5.330629
0x0001e000 6.057448
0x00020800 6.425884
0x00023000 6.880007
0x00025800 6.856647
...
The bucket starting at position 0x00019000 has the lowest entropy.
A list for the other properties (NULL bytes, ...) can be produced by using option -l together with option -p (property). For example options "-l -p n" will produce a list of the number of NULL bytes for each bucket.
A rudimentary chart of the entropy values can be produced with option -g. Option -p can be used to display the chart of another property (like with option -l).
Option -s (sequence) instructs byte-stats to search for simple byte sequences. A simple byte sequence is a sequence of bytes where the difference (unsigned) between 2 consecutive bytes is a constant.
Example:
$byte-stats.py -s picture.jpg.ransom
Byte ASCII Count Pct
0x44 D 1172 0.13%
0x16 1310 0.15%
0x22 " 1371 0.16%
0xc2 1421 0.16%
0x17 1437 0.16%
...
0x7a z 7958 0.91%
0x82 8006 0.91%
0x7e ~ 8571 0.98%
0x80 22232 2.53%
0x00 23873 2.72%
Size: 877456 Bucket size: 10240 Bucket count: 85
File(s) Minimum buckets Maximum buckets
Entropy: 7.815519 5.156678 7.981628
Position: 0x00019000 0x00005000
ACBD: 82.580532 52.685223 87.892568
Position: 0x0000f000 0x0002f800
Unique bytes: 256 0.03% 179 1.75% 256 2.50%
NULL bytes: 23873 2.72% 8 0.08% 1643 16.04%
Control bytes: 92243 10.51% 98 0.96% 1275 12.45%
Whitespace bytes: 16241 1.85% 1 0.01% 263 2.57%
Printable bytes: 303975 34.64% 2476 24.18% 5219 50.97%
High bytes: 441124 50.27% 3728 36.41% 6772 66.13%
Hexadecimal bytes: 63064 7.19% 166 1.62% 987 9.64%
BASE64 bytes: 209139 23.83% 1555 15.19% 3587 35.03%
Longest string: 45 0.01% 4 0.04% 45 0.44%
Longest hex: 6 0.00% 1 0.01% 6 0.06%
Longest base64: 32 0.00% 3 0.03% 32 0.31%
Position Length Diff Bytes
0x00013984: 246 128 0x8000800080008000800080008000800080008000...
0x00013c01: 206 128 0x0080008000800080008000800080008000800080...
0x0001b186: 205 128 0x8000800080008000800080008000800080008000...
0x0001b406: 205 128 0x8000800080008000800080008000800080008000...
0x0001b906: 204 128 0x8000800080008000800080008000800080008000...
0x0001bb86: 204 128 0x8000800080008000800080008000800080008000...
0x0001be06: 200 128 0x8000800080008000800080008000800080008000...
0x0001c086: 200 128 0x8000800080008000800080008000800080008000...
0x0001c306: 200 128 0x8000800080008000800080008000800080008000...
0x0001c586: 196 128 0x8000800080008000800080008000800080008000...
Position is the start of the detected sequence, Length is the number of bytes in the sequence, Diff is the difference (unsigned) between 2 consecutive bytes and Bytes displays the hex values of the start of the sequence.
By default, the 10 longest sequences are displayed. All sequences (minimum 3 bytes long) can be displayed with option -a. To sort the sequences by position use option -k (key). To filter the sequences by length, use option -f.
Sequence detection is useful as an extra check when the entropy and byte counters indicate the file is random:
$byte-stats.py -s not-random.bin
Byte ASCII Count Pct
0x00 16 0.39%
0x01 16 0.39%
0x02 16 0.39%
0x03 16 0.39%
0x04 16 0.39%
...
0xfb 16 0.39%
0xfc 16 0.39%
0xfd 16 0.39%
0xfe 16 0.39%
0xff 16 0.39%
Size: 4096
File(s)
Entropy: 8.000000
ACBD: 1.000000
Unique bytes: 256 6.25%
NULL bytes: 16 0.39%
Control bytes: 432 10.55%
Whitespace bytes: 96 2.34%
Printable bytes: 1504 36.72%
High bytes: 2048 50.00%
Hexadecimal bytes: 352 8.59%
BASE64 bytes: 1040 25.39%
Longest string: 95 2.32%
Longest hex: 10 0.24%
Longest base64: 26 0.63%
Position Length Diff Bytes
0x00000000: 4096 1 0x000102030405060708090a0b0c0d0e0f10111213...
Option -r (ranges) instructs byte-stats to produce a report of the byte ranges in the analyzed file(s). A byte range is a contiguous sequence of bytes.
A range report can help in indentifying the type of data, like base64 data:
$byte-stats.py -r base64.bin
Byte ASCII Count Pct
0x00 0 0.00%
0x01 0 0.00%
0x02 0 0.00%
0x03 0 0.00%
0x04 0 0.00%
...
0x75 u 28 2.05%
0x7a z 29 2.12%
0x43 C 30 2.19%
0x72 r 30 2.19%
0x35 5 33 2.41%
Size: 1368
File(s)
Entropy: 5.979786
ACBD: 27.286759
Unique bytes: 65 25.39%
NULL bytes: 0 0.00%
Control bytes: 0 0.00%
Whitespace bytes: 0 0.00%
Printable bytes: 1368 100.00%
High bytes: 0 0.00%
Hexadecimal bytes: 476 34.80%
BASE64 bytes: 1368 100.00%
Number of ranges: 5
Fir. Last Len. Range
0x2b 1: +
0x2f 0x39 11: /0123456789
0x3d 1: =
0x41 0x5a 26: ABCDEFGHIJKLMNOPQRSTUVWXYZ
0x61 0x7a 26: abcdefghijklmnopqrstuvwxyz
In this example, 5 ranges are reported.
Each range is characterized by 4 properties:
Fir. (First) is the first byte value in the range.
Last is the last byte value in the range (this value is not displayed for ranges of a single byte).
Len. (length) is the number of unique byte values in the range.
Range is the printout of the byte values in the range (. is printed if the byte value is not printable).
'''
for line in manual.split('\n'):
print(textwrap.fill(line, 79))
# CIC: Call If Callable
def CIC(expression):
if callable(expression):
return expression()
else:
return expression
# IFF: IF Function
def IFF(expression, valueTrue, valueFalse):
if expression:
return CIC(valueTrue)
else:
return CIC(valueFalse)
def File2Strings(filename):
try:
f = open(filename, 'r')
except:
return None
try:
return map(lambda line:line.rstrip('\n'), f.readlines())
except:
return None
finally:
f.close()
def ProcessAt(argument):
if argument.startswith('@'):
strings = File2Strings(argument[1:])
if strings == None:
raise Exception('Error reading %s' % argument)
else:
return strings
else:
return [argument]
def ExpandFilenameArguments(filenames):
return list(collections.OrderedDict.fromkeys(sum(map(glob.glob, sum(map(ProcessAt, filenames), [])), [])))
def P23Ord(value):
if type(value) == int:
return value
else:
return ord(value)
class cCalculateByteStatistics():
def __init__(self, data=None):
self.dPrevalence = {iter: 0 for iter in range(0x100)}
self.previous = None
self.sumDifference = 0
self.count = 0
self.hexLength = 0
self.hexLengthMax = 0
self.base64Length = 0
self.base64LengthMax = 0
self.printableStringLength = 0
self.printableStringLengthMax = 0
if data != None:
for byte in data:
self.Process(byte)
def Process(self, byte):
self.dPrevalence[byte] += 1
if self.previous != None:
self.sumDifference += abs(byte - self.previous)
self.count += 1
if byte >= 0x30 and byte <= 0x39 or byte >= 0x41 and byte <= 0x46 or byte >= 0x61 and byte <= 0x66:
self.hexLength += 1
else:
if self.hexLength > 0:
self.hexLengthMax = max(self.hexLength, self.hexLengthMax)
self.hexLength = 0
if byte >= 0x30 and byte <= 0x39 or byte >= 0x41 and byte <= 0x5A or byte >= 0x61 and byte <= 0x7A or byte == 0x2B or byte == 0x2F:
self.base64Length += 1
else:
if self.base64Length > 0:
self.base64LengthMax = max(self.base64Length, self.base64LengthMax)
self.base64Length = 0
if byte >= 0x20 and byte <= 0x7E or byte == 0x09:
self.printableStringLength += 1
else:
if self.printableStringLength > 0:
self.printableStringLengthMax = max(self.printableStringLength, self.printableStringLengthMax)
self.printableStringLength = 0
self.previous = byte
def Prevalence(self):
return self.dPrevalence
def Stats(self):
sumValues = sum(self.dPrevalence.values())
countNullByte = self.dPrevalence[0]
countControlBytes = 0
countWhitespaceBytes = 0
countUniqueBytes = 0
for iter in range(1, 0x21):
if chr(iter) in string.whitespace:
countWhitespaceBytes += self.dPrevalence[iter]
else:
countControlBytes += self.dPrevalence[iter]
countControlBytes += self.dPrevalence[0x7F]
countPrintableBytes = 0
for iter in range(0x21, 0x7F):
countPrintableBytes += self.dPrevalence[iter]
countHighBytes = 0
for iter in range(0x80, 0x100):
countHighBytes += self.dPrevalence[iter]
countHexadecimalBytes = 0
countBASE64Bytes = 0
for iter in range(0x30, 0x3A):
countHexadecimalBytes += self.dPrevalence[iter]
countBASE64Bytes += self.dPrevalence[iter]
for iter in range(0x41, 0x47):
countHexadecimalBytes += self.dPrevalence[iter]
for iter in range(0x61, 0x67):
countHexadecimalBytes += self.dPrevalence[iter]
for iter in range(0x41, 0x5B):
countBASE64Bytes += self.dPrevalence[iter]
for iter in range(0x61, 0x7B):
countBASE64Bytes += self.dPrevalence[iter]
countBASE64Bytes += self.dPrevalence[ord('+')] + self.dPrevalence[ord('/')] + self.dPrevalence[ord('=')]
entropy = 0.0
for iter in range(0x100):
if self.dPrevalence[iter] > 0:
prevalence = float(self.dPrevalence[iter]) / float(sumValues)
entropy += - prevalence * math.log(prevalence, 2)
countUniqueBytes += 1
if sumValues >= 256:
entropymax = 8.0
entropynormalized = entropy
entropystr = '%f' % entropy
else:
entropymax = math.log(sumValues, 2)
entropynormalized = entropy / entropymax * 8.0
entropystr = '%f (normalized %f max %.02f)' % (entropy, entropynormalized, entropymax)
if self.count == 0:
averageConsecutiveByteDifference = None
else:
averageConsecutiveByteDifference = float(self.sumDifference) / float(self.count)
self.hexLength = max(self.hexLength, self.hexLengthMax)
self.base64Length = max(self.base64Length, self.base64LengthMax)
self.printableStringLength = max(self.printableStringLength, self.printableStringLengthMax)
return sumValues, entropy, entropymax, entropynormalized, entropystr, countUniqueBytes, countNullByte, countControlBytes, countWhitespaceBytes, countPrintableBytes, countHighBytes, countHexadecimalBytes, countBASE64Bytes, averageConsecutiveByteDifference, self.printableStringLength, self.hexLength, self.base64Length
def GenerateLine(prefix, counter, sumValues, buckets, index, options):
line = '%-18s%9d %6.2f%%' % (prefix + ':', counter, float(counter) / sumValues * 100.0)
if len(buckets) > 0:
value = min([properties[index] for position, properties in buckets])
if sumValues == 256:
line += ' %9d %6.2f%%' % (value, float(value) / sumValues * 100.0)
else:
line += ' %9d %6.2f%%' % (value, float(value) / float(options.bucket) * 100.0)
if len(buckets) > 1:
value = max([properties[index] for position, properties in buckets])
if sumValues == 256:
line += ' %9d %6.2f%%' % (value, float(value) / sumValues * 100.0)
else:
line += ' %9d %6.2f%%' % (value, float(value) / float(options.bucket) * 100.0)
return line
def TruncateString(string, length):
if len(string) > length:
return string[:length] + '...'
else:
return string
def ByteSub(byte1, byte2):
diff = byte1 - byte2
if diff < 0:
diff += 256
return diff
def MinimumAndPosition(buckets, index):
valueMinimum = buckets[0][1][index]
positionMinimum = buckets[0][0]
for position, properties in buckets[1:]:
if properties[index] < valueMinimum:
valueMinimum = properties[index]
positionMinimum = position
return (valueMinimum, positionMinimum)
def MaximumAndPosition(buckets, index):
valueMaximum = buckets[0][1][index]
positionMaximum = buckets[0][0]
for position, properties in buckets[1:]:
if properties[index] > valueMaximum:
valueMaximum = properties[index]
positionMaximum = position
return (valueMaximum, positionMaximum)
def cmp_to_key(mycmp):
'Convert a cmp= function into a key= function'
class K:
def __init__(self, obj, *args):
self.obj = obj
def __lt__(self, other):
return mycmp(self.obj, other.obj) < 0
def __gt__(self, other):
return mycmp(self.obj, other.obj) > 0
def __eq__(self, other):
return mycmp(self.obj, other.obj) == 0
def __le__(self, other):
return mycmp(self.obj, other.obj) <= 0
def __ge__(self, other):
return mycmp(self.obj, other.obj) >= 0
def __ne__(self, other):
return mycmp(self.obj, other.obj) != 0
return K
def ByteStats(args, options):
if options.bucket < 2:
print('Bucket size must be at least 2, not %d' % options.bucket)
return
countBytes = 0
buckets = []
diffs = []
values = []
dDiffs = {}
oCalculateByteStatistics = cCalculateByteStatistics()
oCalculateByteStatisticsBucket = cCalculateByteStatistics()
if args != ['']:
args = ExpandFilenameArguments(args)
for file in args:
if file == '':
if bPython3:
fIn = sys.stdin.buffer
else:
fIn = sys.stdin
if sys.platform == 'win32':
import msvcrt
msvcrt.setmode(sys.stdin.fileno(), os.O_BINARY)
else:
fIn = open(file, 'rb')
for char in fIn.read():
value = P23Ord(char)
countBytes += 1
oCalculateByteStatistics.Process(value)
oCalculateByteStatisticsBucket.Process(value)
if options.sequence:
values.append(value)
if countBytes > 1:
diff = ByteSub(value, values[-2])
if diffs == []:
diffs = [diff]
savPosition = countBytes
elif diffs[-1] == diff:
diffs.append(diff)
else:
if len(diffs) > 1:
dDiffs[savPosition - 2] = values[:-1]
diffs = [diff]
values = values[-2:]
savPosition = countBytes
if countBytes % options.bucket == 0:
buckets.append([countBytes - options.bucket, oCalculateByteStatisticsBucket.Stats()])
oCalculateByteStatisticsBucket = cCalculateByteStatistics()
if bPython3:
if fIn != sys.stdin.buffer:
fIn.close()
else:
if fIn != sys.stdin:
fIn.close()
if len(diffs) > 1:
dDiffs[savPosition - 2] = values
if countBytes == 0:
print('Empty file(s)! Statistics can not be calculated.')
return
sumValues, entropy, entropymax, entropynormalized, entropystr, countUniqueBytes, countNullByte, countControlBytes, countWhitespaceBytes, countPrintableBytes, countHighBytes, countHexadecimalBytes, countBASE64Bytes, averageConsecutiveByteDifference, maxPrintableStringLength, maxHexLength, maxBase64Length = oCalculateByteStatistics.Stats()
dProperties = {'e': 1, 'u': 2, 'n': 3, 'c': 4, 'w': 5, 'p': 6, 'h': 7, 'x': 8, 'b': 9, 'a': 10}
if options.list:
if options.property not in dProperties:
print('Unknown property: %s' % options.property)
return
index = dProperties[options.property]
if options.property in ['e', 'a']:
format = '0x%08x %f'
else:
format = '0x%08x %9d'
for position, properties in buckets:
print(format % (position, properties[index]))
elif options.graph:
if options.property not in dProperties:
print('Unknown property: %s' % options.property)
return
index = dProperties[options.property]
oTk = tkinter.Tk()
oTk.title('byte-stats: property %s' % options.property)
c_width = len(buckets)
multiplier = 1
if options.property == 'e':
c_height = 81
multiplier = 10
elif options.property == 'u':
c_height = 258
elif options.property == 'a':
c_height = 258
else:
maximum = max(properties[index] for position, properties in buckets)
c_height = 301
multiplier = float(c_height - 1) / float(maximum)
oCanvas = tkinter.Canvas(oTk, width=c_width, height=c_height, bg= 'white')
oCanvas.pack()
points = []
counter = 0
for position, properties in buckets:
points.append(counter)
points.append(c_height - int(properties[index] * multiplier))
counter += 1
oCanvas.create_line(points)
oTk.mainloop()
else:
listCount = oCalculateByteStatistics.Prevalence().items()
if options.keys:
index = 0
else:
index = 1
if bPython3:
listCount = list(listCount)
listCount.sort(key=operator.itemgetter(index), reverse=options.descending)
else:
listCount.sort(lambda x, y:cmp(x[index], y[index]), reverse=options.descending)
lineCounter = 0
dotsPrinted = False
print('Byte ASCII Count Pct')
for key, value in listCount:
if options.all or lineCounter < 5 or lineCounter > 250:
line = '0x%02x %s %9d %6.2f%%' % (key, IFF(key >= 0x20 and key < 0x7F, chr(key), ' '), value, float(value) / sumValues * 100.0)
print(line)
elif not dotsPrinted:
print('...')
dotsPrinted = True
lineCounter += 1
print('')
line = 'Size: %d' % sumValues
if len(buckets) > 0:
line += ' Bucket size: %d Bucket count: %d' % (options.bucket, len(buckets))
print(line)
print('')
line = ' File(s)'
if len(buckets) == 1:
line += ' Bucket'
elif len(buckets) > 1:
line += ' Minimum buckets Maximum buckets'
print(line)
if len(buckets) > 0:
line = 'Entropy: %f' % entropy
line += ' %f' % MinimumAndPosition(buckets, 1)[0]
if len(buckets) > 1:
line += ' %f' % MaximumAndPosition(buckets, 1)[0]
else:
line = 'Entropy: %s' % entropystr
print(line)
if len(buckets) > 0:
line = ' Position: 0x%08x' % MinimumAndPosition(buckets, 1)[1]
if len(buckets) > 1:
line += ' 0x%08x' % MaximumAndPosition(buckets, 1)[1]
print(line)
if averageConsecutiveByteDifference != None:
line = 'ACBD: %f' % averageConsecutiveByteDifference
if len(buckets) > 0:
line += ' %f' % MinimumAndPosition(buckets, 10)[0]
if len(buckets) > 1:
line += ' %f' % MaximumAndPosition(buckets, 10)[0]
print(line)
if len(buckets) > 0:
line = ' Position: 0x%08x' % MinimumAndPosition(buckets, 10)[1]
if len(buckets) > 1:
line += ' 0x%08x' % MaximumAndPosition(buckets, 10)[1]
print(line)
print(GenerateLine('Unique bytes', countUniqueBytes, 256, buckets, 2, options))
print(GenerateLine('NULL bytes', countNullByte, sumValues, buckets, 3, options))
print(GenerateLine('Control bytes', countControlBytes, sumValues, buckets, 7, options))
print(GenerateLine('Whitespace bytes', countWhitespaceBytes, sumValues, buckets, 8, options))
print(GenerateLine('Printable bytes', countPrintableBytes, sumValues, buckets, 9, options))
print(GenerateLine('High bytes', countHighBytes, sumValues, buckets, 10, options))
print(GenerateLine('Hexadecimal bytes', countHexadecimalBytes, sumValues, buckets, 11, options))
print(GenerateLine('BASE64 bytes', countBASE64Bytes, sumValues, buckets, 12, options))
print(GenerateLine('Longest string', maxPrintableStringLength, sumValues, buckets, 14, options))
print(GenerateLine('Longest hex', maxHexLength, sumValues, buckets, 15, options))
print(GenerateLine('Longest base64', maxBase64Length, sumValues, buckets, 16, options))
if options.sequence:
print('')
print('Position Length Diff Bytes')
if options.keys:
sequences = sorted(dDiffs.items())
else:
if bPython3:
def MyCmp(a, b):
return (a > b) - (a < b)
sequences = sorted(dDiffs.items(), key=cmp_to_key(lambda x, y: IFF(len(x[1]) == len(y[1]), MyCmp(y[0], x[0]), MyCmp(len(x[1]), len(y[1])))), reverse=True)
else:
sequences = sorted(dDiffs.items(), cmp=lambda x, y: IFF(len(x[1]) == len(y[1]), cmp(y[0], x[0]), cmp(len(x[1]), len(y[1]))), reverse=True)
if not options.all:
sequences = sequences[:10]
for sequence in sequences:
if len(sequence[1]) >= options.filter:
if bPython3:
print('0x%08x: %6d %4d 0x%s' % (sequence[0], len(sequence[1]), ByteSub(sequence[1][1], sequence[1][0]), TruncateString(binascii.hexlify((''.join([chr(c) for c in sequence[1]])).encode()).decode(), 40)))
else:
print('0x%08x: %6d %4d 0x%s' % (sequence[0], len(sequence[1]), ByteSub(sequence[1][1], sequence[1][0]), TruncateString(binascii.hexlify(''.join([chr(c) for c in sequence[1]])), 40)))
def Chr(number):
return IFF(number >= 0x20 and number < 0x7F, chr(number), '.')
def RangeToSTring(sequence):
if sequence == []:
return None
if len(sequence) == 1:
return '0x%02x 1: %s' % (sequence[0], ''.join(map(Chr, sequence)))
else:
return '0x%02x 0x%02x %3d: %s' % (sequence[0], sequence[-1], len(sequence), ''.join(map(Chr, sequence)))
if options.ranges:
print('')
result = []
byterange = []
for i in range(256):
if oCalculateByteStatistics.Prevalence()[i] != 0:
byterange.append(i)
else:
result.append(RangeToSTring(byterange))
byterange = []
result.append(RangeToSTring(byterange))
result = [s for s in result if s != None]
print('Number of ranges: %d' % len(result))
if len(result) != 0:
print('Fir. Last Len. Range')
for s in result:
print(s)
def Main():
moredesc = '''
files:
wildcards are supported
@file: run command on each file listed in the text file specified
Source code put in the public domain by Didier Stevens, no Copyright
Use at your own risk
https://DidierStevens.com'''
oParser = optparse.OptionParser(usage='usage: %prog [options] [files ...]\n' + __description__ + moredesc, version='%prog ' + __version__)
oParser.add_option('-m', '--man', action='store_true', default=False, help='Print manual')
oParser.add_option('-d', '--descending', action='store_true', default=False, help='Sort descending')
oParser.add_option('-k', '--keys', action='store_true', default=False, help='Sort on keys in stead of counts')
oParser.add_option('-b', '--bucket', type=int, default=10240, help='Size of bucket (default is 10240 bytes)')
oParser.add_option('-l', '--list', action='store_true', default=False, help='Print list of bucket property')
oParser.add_option('-g', '--graph', action='store_true', default=False, help='Plot a graph of bucket property')
oParser.add_option('-p', '--property', default='e', help='Property to list: euncwphxb')
oParser.add_option('-a', '--all', action='store_true', default=False, help='Print all byte stats')
oParser.add_option('-s', '--sequence', action='store_true', default=False, help='Detect simple sequences')
oParser.add_option('-f', '--filter', type=int, default=0, help='Minimum length of sequence for displaying (default 0)')
oParser.add_option('-r', '--ranges', action='store_true', default=False, help='Report byte ranges')
(options, args) = oParser.parse_args()
if options.man:
oParser.print_help()
PrintManual()
return
if len(args) == 0:
args = ['']
ByteStats(args, options)
if __name__ == '__main__':
Main()