olevba3.py
162 KB
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
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
#!/usr/bin/env python
"""
olevba.py
olevba is a script to parse OLE and OpenXML files such as MS Office documents
(e.g. Word, Excel), to extract VBA Macro code in clear text, deobfuscate
and analyze malicious macros.
Supported formats:
- Word 97-2003 (.doc, .dot), Word 2007+ (.docm, .dotm)
- Excel 97-2003 (.xls), Excel 2007+ (.xlsm, .xlsb)
- PowerPoint 97-2003 (.ppt), PowerPoint 2007+ (.pptm, .ppsm)
- Word 2003 XML (.xml)
- Word/Excel Single File Web Page / MHTML (.mht)
Author: Philippe Lagadec - http://www.decalage.info
License: BSD, see source code or documentation
olevba is part of the python-oletools package:
http://www.decalage.info/python/oletools
olevba is based on source code from officeparser by John William Davison
https://github.com/unixfreak0037/officeparser
"""
# === LICENSE ==================================================================
# olevba is copyright (c) 2014-2016 Philippe Lagadec (http://www.decalage.info)
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without modification,
# are permitted provided that the following conditions are met:
#
# * Redistributions of source code must retain the above copyright notice, this
# list of conditions and the following disclaimer.
# * Redistributions in binary form must reproduce the above copyright notice,
# this list of conditions and the following disclaimer in the documentation
# and/or other materials provided with the distribution.
#
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
# DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
# SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
# CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
# OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
# olevba contains modified source code from the officeparser project, published
# under the following MIT License (MIT):
#
# officeparser is copyright (c) 2014 John William Davison
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in all
# copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.
#------------------------------------------------------------------------------
# CHANGELOG:
# 2014-08-05 v0.01 PL: - first version based on officeparser code
# 2014-08-14 v0.02 PL: - fixed bugs in code, added license from officeparser
# 2014-08-15 PL: - fixed incorrect value check in projecthelpfilepath Record
# 2014-08-15 v0.03 PL: - refactored extract_macros to support OpenXML formats
# and to find the VBA project root anywhere in the file
# 2014-11-29 v0.04 PL: - use olefile instead of OleFileIO_PL
# 2014-12-05 v0.05 PL: - refactored most functions into a class, new API
# - added detect_vba_macros
# 2014-12-10 v0.06 PL: - hide first lines with VB attributes
# - detect auto-executable macros
# - ignore empty macros
# 2014-12-14 v0.07 PL: - detect_autoexec() is now case-insensitive
# 2014-12-15 v0.08 PL: - improved display for empty macros
# - added pattern extraction
# 2014-12-25 v0.09 PL: - added suspicious keywords detection
# 2014-12-27 v0.10 PL: - added OptionParser, main and process_file
# - uses xglob to scan several files with wildcards
# - option -r to recurse subdirectories
# - option -z to scan files in password-protected zips
# 2015-01-02 v0.11 PL: - improved filter_vba to detect colons
# 2015-01-03 v0.12 PL: - fixed detect_patterns to detect all patterns
# - process_file: improved display, shows container file
# - improved list of executable file extensions
# 2015-01-04 v0.13 PL: - added several suspicious keywords, improved display
# 2015-01-08 v0.14 PL: - added hex strings detection and decoding
# - fixed issue #2, decoding VBA stream names using
# specified codepage and unicode stream names
# 2015-01-11 v0.15 PL: - added new triage mode, options -t and -d
# 2015-01-16 v0.16 PL: - fix for issue #3 (exception when module name="text")
# - added several suspicious keywords
# - added option -i to analyze VBA source code directly
# 2015-01-17 v0.17 PL: - removed .com from the list of executable extensions
# - added scan_vba to run all detection algorithms
# - decoded hex strings are now also scanned + reversed
# 2015-01-23 v0.18 PL: - fixed issue #3, case-insensitive search in code_modules
# 2015-01-24 v0.19 PL: - improved the detection of IOCs obfuscated with hex
# strings and StrReverse
# 2015-01-26 v0.20 PL: - added option --hex to show all hex strings decoded
# 2015-01-29 v0.21 PL: - added Dridex obfuscation decoding
# - improved display, shows obfuscation name
# 2015-02-01 v0.22 PL: - fixed issue #4: regex for URL, e-mail and exe filename
# - added Base64 obfuscation decoding (contribution from
# @JamesHabben)
# 2015-02-03 v0.23 PL: - triage now uses VBA_Scanner results, shows Base64 and
# Dridex strings
# - exception handling in detect_base64_strings
# 2015-02-07 v0.24 PL: - renamed option --hex to --decode, fixed display
# - display exceptions with stack trace
# - added several suspicious keywords
# - improved Base64 detection and decoding
# - fixed triage mode not to scan attrib lines
# 2015-03-04 v0.25 PL: - added support for Word 2003 XML
# 2015-03-22 v0.26 PL: - added suspicious keywords for sandboxing and
# virtualisation detection
# 2015-05-06 v0.27 PL: - added support for MHTML files with VBA macros
# (issue #10 reported by Greg from SpamStopsHere)
# 2015-05-24 v0.28 PL: - improved support for MHTML files with modified header
# (issue #11 reported by Thomas Chopitea)
# 2015-05-26 v0.29 PL: - improved MSO files parsing, taking into account
# various data offsets (issue #12)
# - improved detection of MSO files, avoiding incorrect
# parsing errors (issue #7)
# 2015-05-29 v0.30 PL: - added suspicious keywords suggested by @ozhermit,
# Davy Douhine (issue #9), issue #13
# 2015-06-16 v0.31 PL: - added generic VBA expression deobfuscation (chr,asc,etc)
# 2015-06-19 PL: - added options -a, -c, --each, --attr
# 2015-06-21 v0.32 PL: - always display decoded strings which are printable
# - fix VBA_Scanner.scan to return raw strings, not repr()
# 2015-07-09 v0.40 PL: - removed usage of sys.stderr which causes issues
# 2015-07-12 PL: - added Hex function decoding to VBA Parser
# 2015-07-13 PL: - added Base64 function decoding to VBA Parser
# 2015-09-06 PL: - improved VBA_Parser, refactored the main functions
# 2015-09-13 PL: - moved main functions to a class VBA_Parser_CLI
# - fixed issue when analysis was done twice
# 2015-09-15 PL: - remove duplicate IOCs from results
# 2015-09-16 PL: - join long VBA lines ending with underscore before scan
# - disabled unused option --each
# 2015-09-22 v0.41 PL: - added new option --reveal
# - added suspicious strings for PowerShell.exe options
# 2015-10-09 v0.42 PL: - VBA_Parser: split each format into a separate method
# 2015-10-10 PL: - added support for text files with VBA source code
# 2015-11-17 PL: - fixed bug with --decode option
# 2015-12-16 PL: - fixed bug in main (no options input anymore)
# - improved logging, added -l option
# 2016-01-31 PL: - fixed issue #31 in VBA_Parser.open_mht
# - fixed issue #32 by monkeypatching email.feedparser
# 2016-02-07 PL: - KeyboardInterrupt is now raised properly
# 2016-02-20 v0.43 PL: - fixed issue #34 in the VBA parser and vba_chr
# 2016-02-29 PL: - added Workbook_Activate to suspicious keywords
# 2016-03-08 v0.44 PL: - added VBA Form strings extraction and analysis
# 2016-03-04 v0.45 CH: - added JSON output (by Christian Herdtweck)
# 2016-03-16 CH: - added option --no-deobfuscate (temporary)
# 2016-04-19 v0.46 PL: - new option --deobf instead of --no-deobfuscate
# - updated suspicious keywords
# 2016-05-04 v0.47 PL: - look for VBA code in any stream including orphans
# 2016-04-28 CH: - return an exit code depending on the results
# - improved error and exception handling
# - improved JSON output
# 2016-05-12 CH: - added support for PowerPoint 97-2003 files
# 2016-06-06 CH: - improved handling of unicode VBA module names
# 2016-06-07 CH: - added option --relaxed, stricter parsing by default
# 2016-06-12 v0.50 PL: - fixed small bugs in VBA parsing code
# 2016-07-01 PL: - fixed issue #58 with format() to support Python 2.6
# 2016-07-29 CH: - fixed several bugs including #73 (Mac Roman encoding)
__version__ = '0.50'
#------------------------------------------------------------------------------
# TODO:
# + setup logging (common with other oletools)
# + add xor bruteforcing like bbharvest
# + options -a and -c should imply -d
# TODO later:
# + performance improvement: instead of searching each keyword separately,
# first split vba code into a list of words (per line), then check each
# word against a dict. (or put vba words into a set/dict?)
# + for regex, maybe combine them into a single re with named groups?
# + add Yara support, include sample rules? plugins like balbuzard?
# + add balbuzard support
# + output to file (replace print by file.write, sys.stdout by default)
# + look for VBA in embedded documents (e.g. Excel in Word)
# + support SRP streams (see Lenny's article + links and sample)
# - python 3.x support
# - check VBA macros in Visio, Access, Project, etc
# - extract_macros: convert to a class, split long function into smaller methods
# - extract_macros: read bytes from stream file objects instead of strings
# - extract_macros: use combined struct.unpack instead of many calls
# - all except clauses should target specific exceptions
#------------------------------------------------------------------------------
# REFERENCES:
# - [MS-OVBA]: Microsoft Office VBA File Format Structure
# http://msdn.microsoft.com/en-us/library/office/cc313094%28v=office.12%29.aspx
# - officeparser: https://github.com/unixfreak0037/officeparser
#--- IMPORTS ------------------------------------------------------------------
import sys, logging
import struct
from _io import StringIO,BytesIO
import math
import zipfile
import re
import optparse
import binascii
import base64
import zlib
import email # for MHTML parsing
import string # for printable
import json # for json output mode (argument --json)
# import lxml or ElementTree for XML parsing:
try:
# lxml: best performance for XML processing
import lxml.etree as ET
except ImportError:
try:
# Python 2.5+: batteries included
import xml.etree.cElementTree as ET
except ImportError:
try:
# Python <2.5: standalone ElementTree install
import elementtree.cElementTree as ET
except ImportError:
raise(ImportError, "lxml or ElementTree are not installed, " \
+ "see http://codespeak.net/lxml " \
+ "or http://effbot.org/zone/element-index.htm")
import thirdparty.olefile as olefile
from thirdparty.prettytable import prettytable
from thirdparty.xglob import xglob, PathNotFoundException
from thirdparty.pyparsing.pyparsing import \
CaselessKeyword, CaselessLiteral, Combine, Forward, Literal, \
Optional, QuotedString,Regex, Suppress, Word, WordStart, \
alphanums, alphas, hexnums,nums, opAssoc, srange, \
infixNotation
import ppt_parser
# monkeypatch email to fix issue #32:
# allow header lines without ":"
import email.feedparser
email.feedparser.headerRE = re.compile(r'^(From |[\041-\071\073-\176]{1,}:?|[\t ])')
# === LOGGING =================================================================
class NullHandler(logging.Handler):
"""
Log Handler without output, to avoid printing messages if logging is not
configured by the main application.
Python 2.7 has logging.NullHandler, but this is necessary for 2.6:
see https://docs.python.org/2.6/library/logging.html#configuring-logging-for-a-library
"""
def emit(self, record):
pass
def get_logger(name, level=logging.CRITICAL+1):
"""
Create a suitable logger object for this module.
The goal is not to change settings of the root logger, to avoid getting
other modules' logs on the screen.
If a logger exists with same name, reuse it. (Else it would have duplicate
handlers and messages would be doubled.)
The level is set to CRITICAL+1 by default, to avoid any logging.
"""
# First, test if there is already a logger with the same name, else it
# will generate duplicate messages (due to duplicate handlers):
if name in logging.Logger.manager.loggerDict:
#NOTE: another less intrusive but more "hackish" solution would be to
# use getLogger then test if its effective level is not default.
logger = logging.getLogger(name)
# make sure level is OK:
logger.setLevel(level)
return logger
# get a new logger:
logger = logging.getLogger(name)
# only add a NullHandler for this logger, it is up to the application
# to configure its own logging:
logger.addHandler(NullHandler())
logger.setLevel(level)
return logger
# a global logger object used for debugging:
log = get_logger('olevba')
#=== EXCEPTIONS ==============================================================
class OlevbaBaseException(Exception):
""" Base class for exceptions produced here for simpler except clauses """
def __init__(self, msg, filename=None, orig_exc=None, **kwargs):
if orig_exc:
super(OlevbaBaseException, self).__init__(msg +
' ({0})'.format(orig_exc),
**kwargs)
else:
super(OlevbaBaseException, self).__init__(msg, **kwargs)
self.msg = msg
self.filename = filename
self.orig_exc = orig_exc
class FileOpenError(OlevbaBaseException):
""" raised by VBA_Parser constructor if all open_... attempts failed
probably means the file type is not supported
"""
def __init__(self, filename, orig_exc=None):
super(FileOpenError, self).__init__(
'Failed to open file %s' % filename, filename, orig_exc)
class ProcessingError(OlevbaBaseException):
""" raised by VBA_Parser.process_file* functions """
def __init__(self, filename, orig_exc):
super(ProcessingError, self).__init__(
'Error processing file %s' % filename, filename, orig_exc)
class MsoExtractionError(RuntimeError, OlevbaBaseException):
""" raised by mso_file_extract if parsing MSO/ActiveMIME data failed """
def __init__(self, msg):
MsoExtractionError.__init__(self, msg)
OlevbaBaseException.__init__(self, msg)
class SubstreamOpenError(FileOpenError):
""" special kind of FileOpenError: file is a substream of original file """
def __init__(self, filename, subfilename, orig_exc=None):
super(SubstreamOpenError, self).__init__(
str(filename) + '/' + str(subfilename), orig_exc)
self.filename = filename # overwrite setting in OlevbaBaseException
self.subfilename = subfilename
class UnexpectedDataError(OlevbaBaseException):
""" raised when parsing is strict (=not relaxed) and data is unexpected """
def __init__(self, stream_path, variable, expected, value):
super(UnexpectedDataError, self).__init__(
'Unexpected value in {0} for variable {1}: '
'expected {2:04X} but found {3:04X}!'
.format(stream_path, variable, expected, value))
self.stream_path = stream_path
self.variable = variable
self.expected = expected
self.value = value
#--- CONSTANTS ----------------------------------------------------------------
# return codes
RETURN_OK = 0
RETURN_WARNINGS = 1 # (reserved, not used yet)
RETURN_WRONG_ARGS = 2 # (fixed, built into optparse)
RETURN_FILE_NOT_FOUND = 3
RETURN_XGLOB_ERR = 4
RETURN_OPEN_ERROR = 5
RETURN_PARSE_ERROR = 6
RETURN_SEVERAL_ERRS = 7
RETURN_UNEXPECTED = 8
# MAC codepages (from http://stackoverflow.com/questions/1592925/decoding-mac-os-text-in-python)
MAC_CODEPAGES = {
10000: 'mac-roman',
10001: 'shiftjis', # not found: 'mac-shift-jis',
10003: 'ascii', # nothing appropriate found: 'mac-hangul',
10008: 'gb2321', # not found: 'mac-gb2312',
10002: 'big5', # not found: 'mac-big5',
10005: 'hebrew', # not found: 'mac-hebrew',
10004: 'mac-arabic',
10006: 'mac-greek',
10081: 'mac-turkish',
10021: 'thai', # not found: mac-thai',
10029: 'maccentraleurope', # not found: 'mac-east europe',
10007: 'ascii', # nothing appropriate found: 'mac-russian',
}
# URL and message to report issues:
URL_OLEVBA_ISSUES = 'https://github.com/decalage2/oletools/issues'
MSG_OLEVBA_ISSUES = 'Please report this issue on %s' % URL_OLEVBA_ISSUES
# Container types:
TYPE_OLE = 'OLE'
TYPE_OpenXML = 'OpenXML'
TYPE_Word2003_XML = 'Word2003_XML'
TYPE_MHTML = 'MHTML'
TYPE_TEXT = 'Text'
TYPE_PPT = 'PPT'
# short tag to display file types in triage mode:
TYPE2TAG = {
TYPE_OLE: 'OLE:',
TYPE_OpenXML: 'OpX:',
TYPE_Word2003_XML: 'XML:',
TYPE_MHTML: 'MHT:',
TYPE_TEXT: 'TXT:',
TYPE_PPT: 'PPT',
}
# MSO files ActiveMime header magic
MSO_ACTIVEMIME_HEADER = b'ActiveMime'
MODULE_EXTENSION = "bas"
CLASS_EXTENSION = "cls"
FORM_EXTENSION = "frm"
# Namespaces and tags for Word2003 XML parsing:
NS_W = '{http://schemas.microsoft.com/office/word/2003/wordml}'
# the tag <w:binData w:name="editdata.mso"> contains the VBA macro code:
TAG_BINDATA = NS_W + 'binData'
ATTR_NAME = NS_W + 'name'
# Keywords to detect auto-executable macros
AUTOEXEC_KEYWORDS = {
# MS Word:
'Runs when the Word document is opened':
('AutoExec', 'AutoOpen', 'Document_Open', 'DocumentOpen'),
'Runs when the Word document is closed':
('AutoExit', 'AutoClose', 'Document_Close', 'DocumentBeforeClose'),
'Runs when the Word document is modified':
('DocumentChange',),
'Runs when a new Word document is created':
('AutoNew', 'Document_New', 'NewDocument'),
# MS Excel:
'Runs when the Excel Workbook is opened':
('Auto_Open', 'Workbook_Open', 'Workbook_Activate'),
'Runs when the Excel Workbook is closed':
('Auto_Close', 'Workbook_Close'),
#TODO: full list in MS specs??
}
# Suspicious Keywords that may be used by malware
# See VBA language reference: http://msdn.microsoft.com/en-us/library/office/jj692818%28v=office.15%29.aspx
SUSPICIOUS_KEYWORDS = {
#TODO: use regex to support variable whitespaces
'May read system environment variables':
('Environ',),
'May open a file':
('Open',),
'May write to a file (if combined with Open)':
#TODO: regex to find Open+Write on same line
('Write', 'Put', 'Output', 'Print #'),
'May read or write a binary file (if combined with Open)':
#TODO: regex to find Open+Binary on same line
('Binary',),
'May copy a file':
('FileCopy', 'CopyFile'),
#FileCopy: http://msdn.microsoft.com/en-us/library/office/gg264390%28v=office.15%29.aspx
#CopyFile: http://msdn.microsoft.com/en-us/library/office/gg264089%28v=office.15%29.aspx
'May delete a file':
('Kill',),
'May create a text file':
('CreateTextFile', 'ADODB.Stream', 'WriteText', 'SaveToFile'),
#CreateTextFile: http://msdn.microsoft.com/en-us/library/office/gg264617%28v=office.15%29.aspx
#ADODB.Stream sample: http://pastebin.com/Z4TMyuq6
'May run an executable file or a system command':
('Shell', 'vbNormal', 'vbNormalFocus', 'vbHide', 'vbMinimizedFocus', 'vbMaximizedFocus', 'vbNormalNoFocus',
'vbMinimizedNoFocus', 'WScript.Shell', 'Run', 'ShellExecute'),
#Shell: http://msdn.microsoft.com/en-us/library/office/gg278437%28v=office.15%29.aspx
#WScript.Shell+Run sample: http://pastebin.com/Z4TMyuq6
'May run PowerShell commands':
#sample: https://malwr.com/analysis/M2NjZWNmMjA0YjVjNGVhYmJlZmFhNWY4NmQxZDllZTY/
#also: https://bitbucket.org/decalage/oletools/issues/14/olevba-library-update-ioc
# ref: https://blog.netspi.com/15-ways-to-bypass-the-powershell-execution-policy/
# TODO: add support for keywords starting with a non-alpha character, such as "-noexit"
# TODO: '-command', '-EncodedCommand', '-scriptblock'
('PowerShell', 'noexit', 'ExecutionPolicy', 'noprofile', 'command', 'EncodedCommand',
'invoke-command', 'scriptblock', 'Invoke-Expression', 'AuthorizationManager'),
'May run an executable file or a system command using PowerShell':
('Start-Process',),
'May hide the application':
('Application.Visible', 'ShowWindow', 'SW_HIDE'),
'May create a directory':
('MkDir',),
'May save the current workbook':
('ActiveWorkbook.SaveAs',),
'May change which directory contains files to open at startup':
#TODO: confirm the actual effect
('Application.AltStartupPath',),
'May create an OLE object':
('CreateObject',),
'May create an OLE object using PowerShell':
('New-Object',),
'May run an application (if combined with CreateObject)':
('Shell.Application',),
'May enumerate application windows (if combined with Shell.Application object)':
('Windows', 'FindWindow'),
'May run code from a DLL':
#TODO: regex to find declare+lib on same line
('Lib',),
'May inject code into another process':
('CreateThread', 'VirtualAlloc', # (issue #9) suggested by Davy Douhine - used by MSF payload
),
'May download files from the Internet':
#TODO: regex to find urlmon+URLDownloadToFileA on same line
('URLDownloadToFileA', 'Msxml2.XMLHTTP', 'Microsoft.XMLHTTP',
'MSXML2.ServerXMLHTTP', # suggested in issue #13
'User-Agent', # sample from @ozhermit: http://pastebin.com/MPc3iV6z
),
'May download files from the Internet using PowerShell':
#sample: https://malwr.com/analysis/M2NjZWNmMjA0YjVjNGVhYmJlZmFhNWY4NmQxZDllZTY/
('Net.WebClient', 'DownloadFile', 'DownloadString'),
'May control another application by simulating user keystrokes':
('SendKeys', 'AppActivate'),
#SendKeys: http://msdn.microsoft.com/en-us/library/office/gg278655%28v=office.15%29.aspx
'May attempt to obfuscate malicious function calls':
('CallByName',),
#CallByName: http://msdn.microsoft.com/en-us/library/office/gg278760%28v=office.15%29.aspx
'May attempt to obfuscate specific strings':
#TODO: regex to find several Chr*, not just one
('Chr', 'ChrB', 'ChrW', 'StrReverse', 'Xor'),
#Chr: http://msdn.microsoft.com/en-us/library/office/gg264465%28v=office.15%29.aspx
'May read or write registry keys':
#sample: https://malwr.com/analysis/M2NjZWNmMjA0YjVjNGVhYmJlZmFhNWY4NmQxZDllZTY/
('RegOpenKeyExA', 'RegOpenKeyEx', 'RegCloseKey'),
'May read registry keys':
#sample: https://malwr.com/analysis/M2NjZWNmMjA0YjVjNGVhYmJlZmFhNWY4NmQxZDllZTY/
('RegQueryValueExA', 'RegQueryValueEx',
'RegRead', #with Wscript.Shell
),
'May detect virtualization':
# sample: https://malwr.com/analysis/M2NjZWNmMjA0YjVjNGVhYmJlZmFhNWY4NmQxZDllZTY/
(r'SYSTEM\ControlSet001\Services\Disk\Enum', 'VIRTUAL', 'VMWARE', 'VBOX'),
'May detect Anubis Sandbox':
# sample: https://malwr.com/analysis/M2NjZWNmMjA0YjVjNGVhYmJlZmFhNWY4NmQxZDllZTY/
# NOTES: this sample also checks App.EXEName but that seems to be a bug, it works in VB6 but not in VBA
# ref: http://www.syssec-project.eu/m/page-media/3/disarm-raid11.pdf
('GetVolumeInformationA', 'GetVolumeInformation', # with kernel32.dll
'1824245000', r'HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\ProductId',
'76487-337-8429955-22614', 'andy', 'sample', r'C:\exec\exec.exe', 'popupkiller'
),
'May detect Sandboxie':
# sample: https://malwr.com/analysis/M2NjZWNmMjA0YjVjNGVhYmJlZmFhNWY4NmQxZDllZTY/
# ref: http://www.cplusplus.com/forum/windows/96874/
('SbieDll.dll', 'SandboxieControlWndClass'),
'May detect Sunbelt Sandbox':
# ref: http://www.cplusplus.com/forum/windows/96874/
(r'C:\file.exe',),
'May detect Norman Sandbox':
# ref: http://www.cplusplus.com/forum/windows/96874/
('currentuser',),
'May detect CW Sandbox':
# ref: http://www.cplusplus.com/forum/windows/96874/
('Schmidti',),
'May detect WinJail Sandbox':
# ref: http://www.cplusplus.com/forum/windows/96874/
('Afx:400000:0',),
}
# Regular Expression for a URL:
# http://en.wikipedia.org/wiki/Uniform_resource_locator
# http://www.w3.org/Addressing/URL/uri-spec.html
#TODO: also support username:password@server
#TODO: other protocols (file, gopher, wais, ...?)
SCHEME = r'\b(?:http|ftp)s?'
# see http://en.wikipedia.org/wiki/List_of_Internet_top-level_domains
TLD = r'(?:xn--[a-zA-Z0-9]{4,20}|[a-zA-Z]{2,20})'
DNS_NAME = r'(?:[a-zA-Z0-9\-\.]+\.' + TLD + ')'
#TODO: IPv6 - see https://www.debuggex.com/
# A literal numeric IPv6 address may be given, but must be enclosed in [ ] e.g. [db8:0cec::99:123a]
NUMBER_0_255 = r'(?:25[0-5]|2[0-4][0-9]|1[0-9]{2}|[1-9][0-9]|[0-9])'
IPv4 = r'(?:' + NUMBER_0_255 + r'\.){3}' + NUMBER_0_255
# IPv4 must come before the DNS name because it is more specific
SERVER = r'(?:' + IPv4 + '|' + DNS_NAME + ')'
PORT = r'(?:\:[0-9]{1,5})?'
SERVER_PORT = SERVER + PORT
URL_PATH = r'(?:/[a-zA-Z0-9\-\._\?\,\'/\\\+&%\$#\=~]*)?' # [^\.\,\)\(\s"]
URL_RE = SCHEME + r'\://' + SERVER_PORT + URL_PATH
re_url = re.compile(URL_RE)
# Patterns to be extracted (IP addresses, URLs, etc)
# From patterns.py in balbuzard
RE_PATTERNS = (
('URL', re.compile(URL_RE)),
('IPv4 address', re.compile(IPv4)),
# TODO: add IPv6
('E-mail address', re.compile(r'(?i)\b[A-Z0-9._%+-]+@' + SERVER + '\b')),
# ('Domain name', re.compile(r'(?=^.{1,254}$)(^(?:(?!\d+\.|-)[a-zA-Z0-9_\-]{1,63}(?<!-)\.?)+(?:[a-zA-Z]{2,})$)')),
# Executable file name with known extensions (except .com which is present in many URLs, and .application):
("Executable file name", re.compile(
r"(?i)\b\w+\.(EXE|PIF|GADGET|MSI|MSP|MSC|VBS|VBE|VB|JSE|JS|WSF|WSC|WSH|WS|BAT|CMD|DLL|SCR|HTA|CPL|CLASS|JAR|PS1XML|PS1|PS2XML|PS2|PSC1|PSC2|SCF|LNK|INF|REG)\b")),
# Sources: http://www.howtogeek.com/137270/50-file-extensions-that-are-potentially-dangerous-on-windows/
# TODO: https://support.office.com/en-us/article/Blocked-attachments-in-Outlook-3811cddc-17c3-4279-a30c-060ba0207372#__attachment_file_types
# TODO: add win & unix file paths
#('Hex string', re.compile(r'(?:[0-9A-Fa-f]{2}){4,}')),
)
# regex to detect strings encoded in hexadecimal
re_hex_string = re.compile(r'(?:[0-9A-Fa-f]{2}){4,}')
# regex to detect strings encoded in base64
#re_base64_string = re.compile(r'"(?:[A-Za-z0-9+/]{4})*(?:[A-Za-z0-9+/]{2}==|[A-Za-z0-9+/]{3}=)?"')
# better version from balbuzard, less false positives:
# (plain version without double quotes, used also below in quoted_base64_string)
BASE64_RE = r'(?:[A-Za-z0-9+/]{4}){1,}(?:[A-Za-z0-9+/]{2}[AEIMQUYcgkosw048]=|[A-Za-z0-9+/][AQgw]==)?'
re_base64_string = re.compile('"' + BASE64_RE + '"')
# white list of common strings matching the base64 regex, but which are not base64 strings (all lowercase):
BASE64_WHITELIST = set(['thisdocument', 'thisworkbook', 'test', 'temp', 'http', 'open', 'exit'])
# regex to detect strings encoded with a specific Dridex algorithm
# (see https://github.com/JamesHabben/MalwareStuff)
re_dridex_string = re.compile(r'"[0-9A-Za-z]{20,}"')
# regex to check that it is not just a hex string:
re_nothex_check = re.compile(r'[G-Zg-z]')
# regex to extract printable strings (at least 5 chars) from VBA Forms:
re_printable_string = re.compile(rb'[\t\r\n\x20-\xFF]{5,}')
# === PARTIAL VBA GRAMMAR ====================================================
# REFERENCES:
# - [MS-VBAL]: VBA Language Specification
# https://msdn.microsoft.com/en-us/library/dd361851.aspx
# - pyparsing: http://pyparsing.wikispaces.com/
# TODO: set whitespaces according to VBA
# TODO: merge extended lines before parsing
# VBA identifier chars (from MS-VBAL 3.3.5)
vba_identifier_chars = alphanums + '_'
class VbaExpressionString(str):
"""
Class identical to str, used to distinguish plain strings from strings
obfuscated using VBA expressions (Chr, StrReverse, etc)
Usage: each VBA expression parse action should convert strings to
VbaExpressionString.
Then isinstance(s, VbaExpressionString) is True only for VBA expressions.
(see detect_vba_strings)
"""
# TODO: use Unicode everywhere instead of str
pass
# --- NUMBER TOKENS ----------------------------------------------------------
# 3.3.2 Number Tokens
# INTEGER = integer-literal ["%" / "&" / "^"]
# integer-literal = decimal-literal / octal-literal / hex-literal
# decimal-literal = 1*decimal-digit
# octal-literal = "&" [%x004F / %x006F] 1*octal-digit
# ; & or &o or &O
# hex-literal = "&" (%x0048 / %x0068) 1*hex-digit
# ; &h or &H
# octal-digit = "0" / "1" / "2" / "3" / "4" / "5" / "6" / "7"
# decimal-digit = octal-digit / "8" / "9"
# hex-digit = decimal-digit / %x0041-0046 / %x0061-0066 ;A-F / a-f
# NOTE: here Combine() is required to avoid spaces between elements
# NOTE: here WordStart is necessary to avoid matching a number preceded by
# letters or underscore (e.g. "VBT1" or "ABC_34"), when using scanString
decimal_literal = Combine(WordStart(vba_identifier_chars) + Word(nums)
+ Suppress(Optional(Word('%&^', exact=1))))
decimal_literal.setParseAction(lambda t: int(t[0]))
octal_literal = Combine(Suppress(Literal('&') + Optional((CaselessLiteral('o')))) + Word(srange('[0-7]'))
+ Suppress(Optional(Word('%&^', exact=1))))
octal_literal.setParseAction(lambda t: int(t[0], base=8))
hex_literal = Combine(Suppress(CaselessLiteral('&h')) + Word(srange('[0-9a-fA-F]'))
+ Suppress(Optional(Word('%&^', exact=1))))
hex_literal.setParseAction(lambda t: int(t[0], base=16))
integer = decimal_literal | octal_literal | hex_literal
# --- QUOTED STRINGS ---------------------------------------------------------
# 3.3.4 String Tokens
# STRING = double-quote *string-character (double-quote / line-continuation / LINE-END)
# double-quote = %x0022 ; "
# string-character = NO-LINE-CONTINUATION ((double-quote double-quote) termination-character)
quoted_string = QuotedString('"', escQuote='""')
quoted_string.setParseAction(lambda t: str(t[0]))
#--- VBA Expressions ---------------------------------------------------------
# See MS-VBAL 5.6 Expressions
# need to pre-declare using Forward() because it is recursive
# VBA string expression and integer expression
vba_expr_str = Forward()
vba_expr_int = Forward()
# --- CHR --------------------------------------------------------------------
# MS-VBAL 6.1.2.11.1.4 Chr / Chr$
# Function Chr(CharCode As Long) As Variant
# Function Chr$(CharCode As Long) As String
# Parameter Description
# CharCode Long whose value is a code point.
# Returns a String data value consisting of a single character containing the character whose code
# point is the data value of the argument.
# - If the argument is not in the range 0 to 255, Error Number 5 ("Invalid procedure call or
# argument") is raised unless the implementation supports a character set with a larger code point
# range.
# - If the argument value is in the range of 0 to 127, it is interpreted as a 7-bit ASCII code point.
# - If the argument value is in the range of 128 to 255, the code point interpretation of the value is
# implementation defined.
# - Chr$ has the same runtime semantics as Chr, however the declared type of its function result is
# String rather than Variant.
# 6.1.2.11.1.5 ChrB / ChrB$
# Function ChrB(CharCode As Long) As Variant
# Function ChrB$(CharCode As Long) As String
# CharCode Long whose value is a code point.
# Returns a String data value consisting of a single byte character whose code point value is the
# data value of the argument.
# - If the argument is not in the range 0 to 255, Error Number 6 ("Overflow") is raised.
# - ChrB$ has the same runtime semantics as ChrB however the declared type of its function result
# is String rather than Variant.
# - Note: the ChrB function is used with byte data contained in a String. Instead of returning a
# character, which may be one or two bytes, ChrB always returns a single byte. The ChrW function
# returns a String containing the Unicode character except on platforms where Unicode is not
# supported, in which case, the behavior is identical to the Chr function.
# 6.1.2.11.1.6 ChrW/ ChrW$
# Function ChrW(CharCode As Long) As Variant
# Function ChrW$(CharCode As Long) As String
# CharCode Long whose value is a code point.
# Returns a String data value consisting of a single character containing the character whose code
# point is the data value of the argument.
# - If the argument is not in the range -32,767 to 65,535 then Error Number 5 ("Invalid procedure
# call or argument") is raised.
# - If the argument is a negative value it is treated as if it was the value: CharCode + 65,536.
# - If the implemented uses 16-bit Unicode code points argument, data value is interpreted as a 16-
# bit Unicode code point.
# - If the implementation does not support Unicode, ChrW has the same semantics as Chr.
# - ChrW$ has the same runtime semantics as ChrW, however the declared type of its function result
# is String rather than Variant.
# Chr, Chr$, ChrB, ChrW(int) => char
vba_chr = Suppress(
Combine(WordStart(vba_identifier_chars) + CaselessLiteral('Chr')
+ Optional(CaselessLiteral('B') | CaselessLiteral('W')) + Optional('$'))
+ '(') + vba_expr_int + Suppress(')')
def vba_chr_tostr(t):
try:
i = t[0]
# normal, non-unicode character:
if i>=0 and i<=255:
return VbaExpressionString(chr(i))
else:
return VbaExpressionString(unichr(i).encode('utf-8', 'backslashreplace'))
except ValueError:
log.exception('ERROR: incorrect parameter value for chr(): %r' % i)
return VbaExpressionString('Chr(%r)' % i)
vba_chr.setParseAction(vba_chr_tostr)
# --- ASC --------------------------------------------------------------------
# Asc(char) => int
#TODO: see MS-VBAL 6.1.2.11.1.1 page 240 => AscB, AscW
vba_asc = Suppress(CaselessKeyword('Asc') + '(') + vba_expr_str + Suppress(')')
vba_asc.setParseAction(lambda t: ord(t[0]))
# --- VAL --------------------------------------------------------------------
# Val(string) => int
# TODO: make sure the behavior of VBA's val is fully covered
vba_val = Suppress(CaselessKeyword('Val') + '(') + vba_expr_str + Suppress(')')
vba_val.setParseAction(lambda t: int(t[0].strip()))
# --- StrReverse() --------------------------------------------------------------------
# StrReverse(string) => string
strReverse = Suppress(CaselessKeyword('StrReverse') + '(') + vba_expr_str + Suppress(')')
strReverse.setParseAction(lambda t: VbaExpressionString(str(t[0])[::-1]))
# --- ENVIRON() --------------------------------------------------------------------
# Environ("name") => just translated to "%name%", that is enough for malware analysis
environ = Suppress(CaselessKeyword('Environ') + '(') + vba_expr_str + Suppress(')')
environ.setParseAction(lambda t: VbaExpressionString('%%%s%%' % t[0]))
# --- IDENTIFIER -------------------------------------------------------------
#TODO: see MS-VBAL 3.3.5 page 33
# 3.3.5 Identifier Tokens
# Latin-identifier = first-Latin-identifier-character *subsequent-Latin-identifier-character
# first-Latin-identifier-character = (%x0041-005A / %x0061-007A) ; A-Z / a-z
# subsequent-Latin-identifier-character = first-Latin-identifier-character / DIGIT / %x5F ; underscore
latin_identifier = Word(initChars=alphas, bodyChars=alphanums + '_')
# --- HEX FUNCTION -----------------------------------------------------------
# match any custom function name with a hex string as argument:
# TODO: accept vba_expr_str_item as argument, check if it is a hex or base64 string at runtime
# quoted string of at least two hexadecimal numbers of two digits:
quoted_hex_string = Suppress('"') + Combine(Word(hexnums, exact=2) * (2, None)) + Suppress('"')
quoted_hex_string.setParseAction(lambda t: str(t[0]))
hex_function_call = Suppress(latin_identifier) + Suppress('(') + \
quoted_hex_string('hex_string') + Suppress(')')
hex_function_call.setParseAction(lambda t: VbaExpressionString(binascii.a2b_hex(t.hex_string)))
# --- BASE64 FUNCTION -----------------------------------------------------------
# match any custom function name with a Base64 string as argument:
# TODO: accept vba_expr_str_item as argument, check if it is a hex or base64 string at runtime
# quoted string of at least two hexadecimal numbers of two digits:
quoted_base64_string = Suppress('"') + Regex(BASE64_RE) + Suppress('"')
quoted_base64_string.setParseAction(lambda t: str(t[0]))
base64_function_call = Suppress(latin_identifier) + Suppress('(') + \
quoted_base64_string('base64_string') + Suppress(')')
base64_function_call.setParseAction(lambda t: VbaExpressionString(binascii.a2b_base64(t.base64_string)))
# ---STRING EXPRESSION -------------------------------------------------------
def concat_strings_list(tokens):
"""
parse action to concatenate strings in a VBA expression with operators '+' or '&'
"""
# extract argument from the tokens:
# expected to be a tuple containing a list of strings such as [a,'&',b,'&',c,...]
strings = tokens[0][::2]
return VbaExpressionString(''.join(strings))
vba_expr_str_item = (vba_chr | strReverse | environ | quoted_string | hex_function_call | base64_function_call)
vba_expr_str <<= infixNotation(vba_expr_str_item,
[
("+", 2, opAssoc.LEFT, concat_strings_list),
("&", 2, opAssoc.LEFT, concat_strings_list),
])
# --- INTEGER EXPRESSION -------------------------------------------------------
def sum_ints_list(tokens):
"""
parse action to sum integers in a VBA expression with operator '+'
"""
# extract argument from the tokens:
# expected to be a tuple containing a list of integers such as [a,'&',b,'&',c,...]
integers = tokens[0][::2]
return sum(integers)
def subtract_ints_list(tokens):
"""
parse action to subtract integers in a VBA expression with operator '-'
"""
# extract argument from the tokens:
# expected to be a tuple containing a list of integers such as [a,'&',b,'&',c,...]
integers = tokens[0][::2]
return reduce(lambda x,y:x-y, integers)
def multiply_ints_list(tokens):
"""
parse action to multiply integers in a VBA expression with operator '*'
"""
# extract argument from the tokens:
# expected to be a tuple containing a list of integers such as [a,'&',b,'&',c,...]
integers = tokens[0][::2]
return reduce(lambda x,y:x*y, integers)
def divide_ints_list(tokens):
"""
parse action to divide integers in a VBA expression with operator '/'
"""
# extract argument from the tokens:
# expected to be a tuple containing a list of integers such as [a,'&',b,'&',c,...]
integers = tokens[0][::2]
return reduce(lambda x,y:x/y, integers)
vba_expr_int_item = (vba_asc | vba_val | integer)
# operators associativity:
# https://en.wikipedia.org/wiki/Operator_associativity
vba_expr_int <<= infixNotation(vba_expr_int_item,
[
("*", 2, opAssoc.LEFT, multiply_ints_list),
("/", 2, opAssoc.LEFT, divide_ints_list),
("-", 2, opAssoc.LEFT, subtract_ints_list),
("+", 2, opAssoc.LEFT, sum_ints_list),
])
# see detect_vba_strings for the deobfuscation code using this grammar
# === MSO/ActiveMime files parsing ===========================================
def is_mso_file(data):
"""
Check if the provided data is the content of a MSO/ActiveMime file, such as
the ones created by Outlook in some cases, or Word/Excel when saving a
file with the MHTML format or the Word 2003 XML format.
This function only checks the ActiveMime magic at the beginning of data.
:param data: bytes string, MSO/ActiveMime file content
:return: bool, True if the file is MSO, False otherwise
"""
return data.startswith(MSO_ACTIVEMIME_HEADER)
# regex to find zlib block headers, starting with byte 0x78 = 'x'
re_zlib_header = re.compile(r'x')
def mso_file_extract(data):
"""
Extract the data stored into a MSO/ActiveMime file, such as
the ones created by Outlook in some cases, or Word/Excel when saving a
file with the MHTML format or the Word 2003 XML format.
:param data: bytes string, MSO/ActiveMime file content
:return: bytes string, extracted data (uncompressed)
raise a MsoExtractionError if the data cannot be extracted
"""
# check the magic:
assert is_mso_file(data)
# In all the samples seen so far, Word always uses an offset of 0x32,
# and Excel 0x22A. But we read the offset from the header to be more
# generic.
offsets = [0x32, 0x22A]
# First, attempt to get the compressed data offset from the header
# According to my tests, it should be an unsigned 16 bits integer,
# at offset 0x1E (little endian) + add 46:
try:
offset = struct.unpack_from('<H', data, offset=0x1E)[0] + 46
log.debug('Parsing MSO file: data offset = 0x%X' % offset)
offsets.insert(0, offset) # insert at beginning of offsets
except struct.error as exc:
log.info('Unable to parse MSO/ActiveMime file header (%s)' % exc)
log.debug('Trace:', exc_info=True)
raise MsoExtractionError('Unable to parse MSO/ActiveMime file header')
# now try offsets
for start in offsets:
try:
log.debug('Attempting zlib decompression from MSO file offset 0x%X' % start)
extracted_data = zlib.decompress(data[start:])
return extracted_data
except zlib.error as exc:
log.info('zlib decompression failed for offset %s (%s)'
% (start, exc))
log.debug('Trace:', exc_info=True)
# None of the guessed offsets worked, let's try brute-forcing by looking
# for potential zlib-compressed blocks starting with 0x78:
log.debug('Looking for potential zlib-compressed blocks in MSO file')
for match in re_zlib_header.finditer(data):
start = match.start()
try:
log.debug('Attempting zlib decompression from MSO file offset 0x%X' % start)
extracted_data = zlib.decompress(data[start:])
return extracted_data
except zlib.error as exc:
log.info('zlib decompression failed (%s)' % exc)
log.debug('Trace:', exc_info=True)
raise MsoExtractionError('Unable to decompress data from a MSO/ActiveMime file')
#--- FUNCTIONS ----------------------------------------------------------------
# set of printable characters, for is_printable
_PRINTABLE_SET = set(string.printable)
def is_printable(s):
"""
returns True if string s only contains printable ASCII characters
(i.e. contained in string.printable)
This is similar to Python 3's str.isprintable, for Python 2.x.
:param s: str
:return: bool
"""
# inspired from http://stackoverflow.com/questions/3636928/test-if-a-python-string-is-printable
# check if the set of chars from s is contained into the set of printable chars:
return set(s).issubset(_PRINTABLE_SET)
def copytoken_help(decompressed_current, decompressed_chunk_start):
"""
compute bit masks to decode a CopyToken according to MS-OVBA 2.4.1.3.19.1 CopyToken Help
decompressed_current: number of decompressed bytes so far, i.e. len(decompressed_container)
decompressed_chunk_start: offset of the current chunk in the decompressed container
return length_mask, offset_mask, bit_count, maximum_length
"""
difference = decompressed_current - decompressed_chunk_start
bit_count = int(math.ceil(math.log(difference, 2)))
bit_count = max([bit_count, 4])
length_mask = 0xFFFF >> bit_count
offset_mask = ~length_mask
maximum_length = (0xFFFF >> bit_count) + 3
return length_mask, offset_mask, bit_count, maximum_length
def decompress_stream(compressed_container):
"""
Decompress a stream according to MS-OVBA section 2.4.1
compressed_container: string compressed according to the MS-OVBA 2.4.1.3.6 Compression algorithm
return the decompressed container as a string (bytes)
"""
# 2.4.1.2 State Variables
# The following state is maintained for the CompressedContainer (section 2.4.1.1.1):
# CompressedRecordEnd: The location of the byte after the last byte in the CompressedContainer (section 2.4.1.1.1).
# CompressedCurrent: The location of the next byte in the CompressedContainer (section 2.4.1.1.1) to be read by
# decompression or to be written by compression.
# The following state is maintained for the current CompressedChunk (section 2.4.1.1.4):
# CompressedChunkStart: The location of the first byte of the CompressedChunk (section 2.4.1.1.4) within the
# CompressedContainer (section 2.4.1.1.1).
# The following state is maintained for a DecompressedBuffer (section 2.4.1.1.2):
# DecompressedCurrent: The location of the next byte in the DecompressedBuffer (section 2.4.1.1.2) to be written by
# decompression or to be read by compression.
# DecompressedBufferEnd: The location of the byte after the last byte in the DecompressedBuffer (section 2.4.1.1.2).
# The following state is maintained for the current DecompressedChunk (section 2.4.1.1.3):
# DecompressedChunkStart: The location of the first byte of the DecompressedChunk (section 2.4.1.1.3) within the
# DecompressedBuffer (section 2.4.1.1.2).
decompressed_container = b'' # result
compressed_current = 0
sig_byte = compressed_container[compressed_current]
if sig_byte != 0x01:
raise ValueError('invalid signature byte {0:02X}'.format(sig_byte))
compressed_current += 1
#NOTE: the definition of CompressedRecordEnd is ambiguous. Here we assume that
# CompressedRecordEnd = len(compressed_container)
while compressed_current < len(compressed_container):
# 2.4.1.1.5
compressed_chunk_start = compressed_current
# chunk header = first 16 bits
compressed_chunk_header = \
struct.unpack("<H", compressed_container[compressed_chunk_start:compressed_chunk_start + 2])[0]
# chunk size = 12 first bits of header + 3
chunk_size = (compressed_chunk_header & 0x0FFF) + 3
# chunk signature = 3 next bits - should always be 0b011
chunk_signature = (compressed_chunk_header >> 12) & 0x07
if chunk_signature != 0b011:
raise ValueError('Invalid CompressedChunkSignature in VBA compressed stream')
# chunk flag = next bit - 1 == compressed, 0 == uncompressed
chunk_flag = (compressed_chunk_header >> 15) & 0x01
log.debug("chunk size = {0}, compressed flag = {1}".format(chunk_size, chunk_flag))
#MS-OVBA 2.4.1.3.12: the maximum size of a chunk including its header is 4098 bytes (header 2 + data 4096)
# The minimum size is 3 bytes
# NOTE: there seems to be a typo in MS-OVBA, the check should be with 4098, not 4095 (which is the max value
# in chunk header before adding 3.
# Also the first test is not useful since a 12 bits value cannot be larger than 4095.
if chunk_flag == 1 and chunk_size > 4098:
raise ValueError('CompressedChunkSize > 4098 but CompressedChunkFlag == 1')
if chunk_flag == 0 and chunk_size != 4098:
raise ValueError('CompressedChunkSize != 4098 but CompressedChunkFlag == 0')
# check if chunk_size goes beyond the compressed data, instead of silently cutting it:
#TODO: raise an exception?
if compressed_chunk_start + chunk_size > len(compressed_container):
log.warning('Chunk size is larger than remaining compressed data')
compressed_end = min([len(compressed_container), compressed_chunk_start + chunk_size])
# read after chunk header:
compressed_current = compressed_chunk_start + 2
if chunk_flag == 0:
# MS-OVBA 2.4.1.3.3 Decompressing a RawChunk
# uncompressed chunk: read the next 4096 bytes as-is
#TODO: check if there are at least 4096 bytes left
decompressed_container += bytes([compressed_container[compressed_current:compressed_current + 4096]])
compressed_current += 4096
else:
# MS-OVBA 2.4.1.3.2 Decompressing a CompressedChunk
# compressed chunk
decompressed_chunk_start = len(decompressed_container)
while compressed_current < compressed_end:
# MS-OVBA 2.4.1.3.4 Decompressing a TokenSequence
# log.debug('compressed_current = %d / compressed_end = %d' % (compressed_current, compressed_end))
# FlagByte: 8 bits indicating if the following 8 tokens are either literal (1 byte of plain text) or
# copy tokens (reference to a previous literal token)
flag_byte = compressed_container[compressed_current]
compressed_current += 1
for bit_index in range(0, 8):
# log.debug('bit_index=%d / compressed_current=%d / compressed_end=%d' % (bit_index, compressed_current, compressed_end))
if compressed_current >= compressed_end:
break
# MS-OVBA 2.4.1.3.5 Decompressing a Token
# MS-OVBA 2.4.1.3.17 Extract FlagBit
flag_bit = (flag_byte >> bit_index) & 1
#log.debug('bit_index=%d: flag_bit=%d' % (bit_index, flag_bit))
if flag_bit == 0: # LiteralToken
# copy one byte directly to output
decompressed_container += bytes([compressed_container[compressed_current]])
compressed_current += 1
else: # CopyToken
# MS-OVBA 2.4.1.3.19.2 Unpack CopyToken
copy_token = \
struct.unpack("<H", compressed_container[compressed_current:compressed_current + 2])[0]
#TODO: check this
length_mask, offset_mask, bit_count, _ = copytoken_help(
len(decompressed_container), decompressed_chunk_start)
length = (copy_token & length_mask) + 3
temp1 = copy_token & offset_mask
temp2 = 16 - bit_count
offset = (temp1 >> temp2) + 1
#log.debug('offset=%d length=%d' % (offset, length))
copy_source = len(decompressed_container) - offset
for index in range(copy_source, copy_source + length):
decompressed_container += bytes([decompressed_container[index]])
compressed_current += 2
return decompressed_container
def _extract_vba(ole, vba_root, project_path, dir_path, relaxed=False):
"""
Extract VBA macros from an OleFileIO object.
Internal function, do not call directly.
vba_root: path to the VBA root storage, containing the VBA storage and the PROJECT stream
vba_project: path to the PROJECT stream
:param relaxed: If True, only create info/debug log entry if data is not as expected
(e.g. opening substream fails); if False, raise an error in this case
This is a generator, yielding (stream path, VBA filename, VBA source code) for each VBA code stream
"""
# Open the PROJECT stream:
project = ole.openstream(project_path)
log.debug('relaxed is %s' % relaxed)
# sample content of the PROJECT stream:
## ID="{5312AC8A-349D-4950-BDD0-49BE3C4DD0F0}"
## Document=ThisDocument/&H00000000
## Module=NewMacros
## Name="Project"
## HelpContextID="0"
## VersionCompatible32="393222000"
## CMG="F1F301E705E705E705E705"
## DPB="8F8D7FE3831F2020202020"
## GC="2D2FDD81E51EE61EE6E1"
##
## [Host Extender Info]
## &H00000001={3832D640-CF90-11CF-8E43-00A0C911005A};VBE;&H00000000
## &H00000002={000209F2-0000-0000-C000-000000000046};Word8.0;&H00000000
##
## [Workspace]
## ThisDocument=22, 29, 339, 477, Z
## NewMacros=-4, 42, 832, 510, C
code_modules = {}
for line in project:
line = line.strip().decode('utf-8','ignore')
if '=' in line:
# split line at the 1st equal sign:
name, value = line.split('=', 1)
# looking for code modules
# add the code module as a key in the dictionary
# the value will be the extension needed later
# The value is converted to lowercase, to allow case-insensitive matching (issue #3)
value = value.lower()
if name == 'Document':
# split value at the 1st slash, keep 1st part:
value = value.split('/', 1)[0]
code_modules[value] = CLASS_EXTENSION
elif name == 'Module':
code_modules[value] = MODULE_EXTENSION
elif name == 'Class':
code_modules[value] = CLASS_EXTENSION
elif name == 'BaseClass':
code_modules[value] = FORM_EXTENSION
# read data from dir stream (compressed)
dir_compressed = ole.openstream(dir_path).read()
def check_value(name, expected, value):
if expected != value:
if relaxed:
log.error("invalid value for {0} expected {1:04X} got {2:04X}"
.format(name, expected, value))
else:
raise UnexpectedDataError(dir_path, name, expected, value)
dir_stream = BytesIO(decompress_stream(dir_compressed))
# PROJECTSYSKIND Record
projectsyskind_id = struct.unpack("<H", dir_stream.read(2))[0]
check_value('PROJECTSYSKIND_Id', 0x0001, projectsyskind_id)
projectsyskind_size = struct.unpack("<L", dir_stream.read(4))[0]
check_value('PROJECTSYSKIND_Size', 0x0004, projectsyskind_size)
projectsyskind_syskind = struct.unpack("<L", dir_stream.read(4))[0]
if projectsyskind_syskind == 0x00:
log.debug("16-bit Windows")
elif projectsyskind_syskind == 0x01:
log.debug("32-bit Windows")
elif projectsyskind_syskind == 0x02:
log.debug("Macintosh")
elif projectsyskind_syskind == 0x03:
log.debug("64-bit Windows")
else:
log.error("invalid PROJECTSYSKIND_SysKind {0:04X}".format(projectsyskind_syskind))
# PROJECTLCID Record
projectlcid_id = struct.unpack("<H", dir_stream.read(2))[0]
check_value('PROJECTLCID_Id', 0x0002, projectlcid_id)
projectlcid_size = struct.unpack("<L", dir_stream.read(4))[0]
check_value('PROJECTLCID_Size', 0x0004, projectlcid_size)
projectlcid_lcid = struct.unpack("<L", dir_stream.read(4))[0]
check_value('PROJECTLCID_Lcid', 0x409, projectlcid_lcid)
# PROJECTLCIDINVOKE Record
projectlcidinvoke_id = struct.unpack("<H", dir_stream.read(2))[0]
check_value('PROJECTLCIDINVOKE_Id', 0x0014, projectlcidinvoke_id)
projectlcidinvoke_size = struct.unpack("<L", dir_stream.read(4))[0]
check_value('PROJECTLCIDINVOKE_Size', 0x0004, projectlcidinvoke_size)
projectlcidinvoke_lcidinvoke = struct.unpack("<L", dir_stream.read(4))[0]
check_value('PROJECTLCIDINVOKE_LcidInvoke', 0x409, projectlcidinvoke_lcidinvoke)
# PROJECTCODEPAGE Record
projectcodepage_id = struct.unpack("<H", dir_stream.read(2))[0]
check_value('PROJECTCODEPAGE_Id', 0x0003, projectcodepage_id)
projectcodepage_size = struct.unpack("<L", dir_stream.read(4))[0]
check_value('PROJECTCODEPAGE_Size', 0x0002, projectcodepage_size)
projectcodepage_codepage = struct.unpack("<H", dir_stream.read(2))[0]
# PROJECTNAME Record
projectname_id = struct.unpack("<H", dir_stream.read(2))[0]
check_value('PROJECTNAME_Id', 0x0004, projectname_id)
projectname_sizeof_projectname = struct.unpack("<L", dir_stream.read(4))[0]
if projectname_sizeof_projectname < 1 or projectname_sizeof_projectname > 128:
log.error("PROJECTNAME_SizeOfProjectName value not in range: {0}".format(projectname_sizeof_projectname))
projectname_projectname = dir_stream.read(projectname_sizeof_projectname)
unused = projectname_projectname
# PROJECTDOCSTRING Record
projectdocstring_id = struct.unpack("<H", dir_stream.read(2))[0]
check_value('PROJECTDOCSTRING_Id', 0x0005, projectdocstring_id)
projectdocstring_sizeof_docstring = struct.unpack("<L", dir_stream.read(4))[0]
if projectdocstring_sizeof_docstring > 2000:
log.error(
"PROJECTDOCSTRING_SizeOfDocString value not in range: {0}".format(projectdocstring_sizeof_docstring))
projectdocstring_docstring = dir_stream.read(projectdocstring_sizeof_docstring)
projectdocstring_reserved = struct.unpack("<H", dir_stream.read(2))[0]
check_value('PROJECTDOCSTRING_Reserved', 0x0040, projectdocstring_reserved)
projectdocstring_sizeof_docstring_unicode = struct.unpack("<L", dir_stream.read(4))[0]
if projectdocstring_sizeof_docstring_unicode % 2 != 0:
log.error("PROJECTDOCSTRING_SizeOfDocStringUnicode is not even")
projectdocstring_docstring_unicode = dir_stream.read(projectdocstring_sizeof_docstring_unicode)
unused = projectdocstring_docstring
unused = projectdocstring_docstring_unicode
# PROJECTHELPFILEPATH Record - MS-OVBA 2.3.4.2.1.7
projecthelpfilepath_id = struct.unpack("<H", dir_stream.read(2))[0]
check_value('PROJECTHELPFILEPATH_Id', 0x0006, projecthelpfilepath_id)
projecthelpfilepath_sizeof_helpfile1 = struct.unpack("<L", dir_stream.read(4))[0]
if projecthelpfilepath_sizeof_helpfile1 > 260:
log.error(
"PROJECTHELPFILEPATH_SizeOfHelpFile1 value not in range: {0}".format(projecthelpfilepath_sizeof_helpfile1))
projecthelpfilepath_helpfile1 = dir_stream.read(projecthelpfilepath_sizeof_helpfile1)
projecthelpfilepath_reserved = struct.unpack("<H", dir_stream.read(2))[0]
check_value('PROJECTHELPFILEPATH_Reserved', 0x003D, projecthelpfilepath_reserved)
projecthelpfilepath_sizeof_helpfile2 = struct.unpack("<L", dir_stream.read(4))[0]
if projecthelpfilepath_sizeof_helpfile2 != projecthelpfilepath_sizeof_helpfile1:
log.error("PROJECTHELPFILEPATH_SizeOfHelpFile1 does not equal PROJECTHELPFILEPATH_SizeOfHelpFile2")
projecthelpfilepath_helpfile2 = dir_stream.read(projecthelpfilepath_sizeof_helpfile2)
if projecthelpfilepath_helpfile2 != projecthelpfilepath_helpfile1:
log.error("PROJECTHELPFILEPATH_HelpFile1 does not equal PROJECTHELPFILEPATH_HelpFile2")
# PROJECTHELPCONTEXT Record
projecthelpcontext_id = struct.unpack("<H", dir_stream.read(2))[0]
check_value('PROJECTHELPCONTEXT_Id', 0x0007, projecthelpcontext_id)
projecthelpcontext_size = struct.unpack("<L", dir_stream.read(4))[0]
check_value('PROJECTHELPCONTEXT_Size', 0x0004, projecthelpcontext_size)
projecthelpcontext_helpcontext = struct.unpack("<L", dir_stream.read(4))[0]
unused = projecthelpcontext_helpcontext
# PROJECTLIBFLAGS Record
projectlibflags_id = struct.unpack("<H", dir_stream.read(2))[0]
check_value('PROJECTLIBFLAGS_Id', 0x0008, projectlibflags_id)
projectlibflags_size = struct.unpack("<L", dir_stream.read(4))[0]
check_value('PROJECTLIBFLAGS_Size', 0x0004, projectlibflags_size)
projectlibflags_projectlibflags = struct.unpack("<L", dir_stream.read(4))[0]
check_value('PROJECTLIBFLAGS_ProjectLibFlags', 0x0000, projectlibflags_projectlibflags)
# PROJECTVERSION Record
projectversion_id = struct.unpack("<H", dir_stream.read(2))[0]
check_value('PROJECTVERSION_Id', 0x0009, projectversion_id)
projectversion_reserved = struct.unpack("<L", dir_stream.read(4))[0]
check_value('PROJECTVERSION_Reserved', 0x0004, projectversion_reserved)
projectversion_versionmajor = struct.unpack("<L", dir_stream.read(4))[0]
projectversion_versionminor = struct.unpack("<H", dir_stream.read(2))[0]
unused = projectversion_versionmajor
unused = projectversion_versionminor
# PROJECTCONSTANTS Record
projectconstants_id = struct.unpack("<H", dir_stream.read(2))[0]
check_value('PROJECTCONSTANTS_Id', 0x000C, projectconstants_id)
projectconstants_sizeof_constants = struct.unpack("<L", dir_stream.read(4))[0]
if projectconstants_sizeof_constants > 1015:
log.error(
"PROJECTCONSTANTS_SizeOfConstants value not in range: {0}".format(projectconstants_sizeof_constants))
projectconstants_constants = dir_stream.read(projectconstants_sizeof_constants)
projectconstants_reserved = struct.unpack("<H", dir_stream.read(2))[0]
check_value('PROJECTCONSTANTS_Reserved', 0x003C, projectconstants_reserved)
projectconstants_sizeof_constants_unicode = struct.unpack("<L", dir_stream.read(4))[0]
if projectconstants_sizeof_constants_unicode % 2 != 0:
log.error("PROJECTCONSTANTS_SizeOfConstantsUnicode is not even")
projectconstants_constants_unicode = dir_stream.read(projectconstants_sizeof_constants_unicode)
unused = projectconstants_constants
unused = projectconstants_constants_unicode
# array of REFERENCE records
check = None
while True:
check = struct.unpack("<H", dir_stream.read(2))[0]
log.debug("reference type = {0:04X}".format(check))
if check == 0x000F:
break
if check == 0x0016:
# REFERENCENAME
reference_id = check
reference_sizeof_name = struct.unpack("<L", dir_stream.read(4))[0]
reference_name = dir_stream.read(reference_sizeof_name)
reference_reserved = struct.unpack("<H", dir_stream.read(2))[0]
if reference_reserved not in (0x003E, 0x000D):
raise UnexpectedDataError(dir_path, 'REFERENCE_Reserved',
(0x003E, 0x000D), value)
reference_sizeof_name_unicode = struct.unpack("<L", dir_stream.read(4))[0]
reference_name_unicode = dir_stream.read(reference_sizeof_name_unicode)
unused = reference_id
unused = reference_name
unused = reference_name_unicode
continue
if check == 0x0033:
# REFERENCEORIGINAL (followed by REFERENCECONTROL)
referenceoriginal_id = check
referenceoriginal_sizeof_libidoriginal = struct.unpack("<L", dir_stream.read(4))[0]
referenceoriginal_libidoriginal = dir_stream.read(referenceoriginal_sizeof_libidoriginal)
unused = referenceoriginal_id
unused = referenceoriginal_libidoriginal
continue
if check == 0x002F:
# REFERENCECONTROL
referencecontrol_id = check
referencecontrol_sizetwiddled = struct.unpack("<L", dir_stream.read(4))[0] # ignore
referencecontrol_sizeof_libidtwiddled = struct.unpack("<L", dir_stream.read(4))[0]
referencecontrol_libidtwiddled = dir_stream.read(referencecontrol_sizeof_libidtwiddled)
referencecontrol_reserved1 = struct.unpack("<L", dir_stream.read(4))[0] # ignore
check_value('REFERENCECONTROL_Reserved1', 0x0000, referencecontrol_reserved1)
referencecontrol_reserved2 = struct.unpack("<H", dir_stream.read(2))[0] # ignore
check_value('REFERENCECONTROL_Reserved2', 0x0000, referencecontrol_reserved2)
unused = referencecontrol_id
unused = referencecontrol_sizetwiddled
unused = referencecontrol_libidtwiddled
# optional field
check2 = struct.unpack("<H", dir_stream.read(2))[0]
if check2 == 0x0016:
referencecontrol_namerecordextended_id = check
referencecontrol_namerecordextended_sizeof_name = struct.unpack("<L", dir_stream.read(4))[0]
referencecontrol_namerecordextended_name = dir_stream.read(
referencecontrol_namerecordextended_sizeof_name)
referencecontrol_namerecordextended_reserved = struct.unpack("<H", dir_stream.read(2))[0]
check_value('REFERENCECONTROL_NameRecordExtended_Reserved', 0x003E,
referencecontrol_namerecordextended_reserved)
referencecontrol_namerecordextended_sizeof_name_unicode = struct.unpack("<L", dir_stream.read(4))[0]
referencecontrol_namerecordextended_name_unicode = dir_stream.read(
referencecontrol_namerecordextended_sizeof_name_unicode)
referencecontrol_reserved3 = struct.unpack("<H", dir_stream.read(2))[0]
unused = referencecontrol_namerecordextended_id
unused = referencecontrol_namerecordextended_name
unused = referencecontrol_namerecordextended_name_unicode
else:
referencecontrol_reserved3 = check2
check_value('REFERENCECONTROL_Reserved3', 0x0030, referencecontrol_reserved3)
referencecontrol_sizeextended = struct.unpack("<L", dir_stream.read(4))[0]
referencecontrol_sizeof_libidextended = struct.unpack("<L", dir_stream.read(4))[0]
referencecontrol_libidextended = dir_stream.read(referencecontrol_sizeof_libidextended)
referencecontrol_reserved4 = struct.unpack("<L", dir_stream.read(4))[0]
referencecontrol_reserved5 = struct.unpack("<H", dir_stream.read(2))[0]
referencecontrol_originaltypelib = dir_stream.read(16)
referencecontrol_cookie = struct.unpack("<L", dir_stream.read(4))[0]
unused = referencecontrol_sizeextended
unused = referencecontrol_libidextended
unused = referencecontrol_reserved4
unused = referencecontrol_reserved5
unused = referencecontrol_originaltypelib
unused = referencecontrol_cookie
continue
if check == 0x000D:
# REFERENCEREGISTERED
referenceregistered_id = check
referenceregistered_size = struct.unpack("<L", dir_stream.read(4))[0]
referenceregistered_sizeof_libid = struct.unpack("<L", dir_stream.read(4))[0]
referenceregistered_libid = dir_stream.read(referenceregistered_sizeof_libid)
referenceregistered_reserved1 = struct.unpack("<L", dir_stream.read(4))[0]
check_value('REFERENCEREGISTERED_Reserved1', 0x0000, referenceregistered_reserved1)
referenceregistered_reserved2 = struct.unpack("<H", dir_stream.read(2))[0]
check_value('REFERENCEREGISTERED_Reserved2', 0x0000, referenceregistered_reserved2)
unused = referenceregistered_id
unused = referenceregistered_size
unused = referenceregistered_libid
continue
if check == 0x000E:
# REFERENCEPROJECT
referenceproject_id = check
referenceproject_size = struct.unpack("<L", dir_stream.read(4))[0]
referenceproject_sizeof_libidabsolute = struct.unpack("<L", dir_stream.read(4))[0]
referenceproject_libidabsolute = dir_stream.read(referenceproject_sizeof_libidabsolute)
referenceproject_sizeof_libidrelative = struct.unpack("<L", dir_stream.read(4))[0]
referenceproject_libidrelative = dir_stream.read(referenceproject_sizeof_libidrelative)
referenceproject_majorversion = struct.unpack("<L", dir_stream.read(4))[0]
referenceproject_minorversion = struct.unpack("<H", dir_stream.read(2))[0]
unused = referenceproject_id
unused = referenceproject_size
unused = referenceproject_libidabsolute
unused = referenceproject_libidrelative
unused = referenceproject_majorversion
unused = referenceproject_minorversion
continue
log.error('invalid or unknown check Id {0:04X}'.format(check))
sys.exit(0)
projectmodules_id = check #struct.unpack("<H", dir_stream.read(2))[0]
check_value('PROJECTMODULES_Id', 0x000F, projectmodules_id)
projectmodules_size = struct.unpack("<L", dir_stream.read(4))[0]
check_value('PROJECTMODULES_Size', 0x0002, projectmodules_size)
projectmodules_count = struct.unpack("<H", dir_stream.read(2))[0]
projectmodules_projectcookierecord_id = struct.unpack("<H", dir_stream.read(2))[0]
check_value('PROJECTMODULES_ProjectCookieRecord_Id', 0x0013, projectmodules_projectcookierecord_id)
projectmodules_projectcookierecord_size = struct.unpack("<L", dir_stream.read(4))[0]
check_value('PROJECTMODULES_ProjectCookieRecord_Size', 0x0002, projectmodules_projectcookierecord_size)
projectmodules_projectcookierecord_cookie = struct.unpack("<H", dir_stream.read(2))[0]
unused = projectmodules_projectcookierecord_cookie
# short function to simplify unicode text output
uni_out = lambda unicode_text: unicode_text.encode('utf-8', 'replace')
log.debug("parsing {0} modules".format(projectmodules_count))
for projectmodule_index in range(0, projectmodules_count):
try:
modulename_id = struct.unpack("<H", dir_stream.read(2))[0]
check_value('MODULENAME_Id', 0x0019, modulename_id)
modulename_sizeof_modulename = struct.unpack("<L", dir_stream.read(4))[0]
modulename_modulename = dir_stream.read(modulename_sizeof_modulename)
# TODO: preset variables to avoid "referenced before assignment" errors
modulename_unicode_modulename_unicode = ''
# account for optional sections
section_id = struct.unpack("<H", dir_stream.read(2))[0]
if section_id == 0x0047:
modulename_unicode_id = section_id
modulename_unicode_sizeof_modulename_unicode = struct.unpack("<L", dir_stream.read(4))[0]
modulename_unicode_modulename_unicode = dir_stream.read(
modulename_unicode_sizeof_modulename_unicode).decode('UTF-16LE', 'replace')
# just guessing that this is the same encoding as used in OleFileIO
unused = modulename_unicode_id
section_id = struct.unpack("<H", dir_stream.read(2))[0]
if section_id == 0x001A:
modulestreamname_id = section_id
modulestreamname_sizeof_streamname = struct.unpack("<L", dir_stream.read(4))[0]
modulestreamname_streamname = dir_stream.read(modulestreamname_sizeof_streamname)
modulestreamname_reserved = struct.unpack("<H", dir_stream.read(2))[0]
check_value('MODULESTREAMNAME_Reserved', 0x0032, modulestreamname_reserved)
modulestreamname_sizeof_streamname_unicode = struct.unpack("<L", dir_stream.read(4))[0]
modulestreamname_streamname_unicode = dir_stream.read(
modulestreamname_sizeof_streamname_unicode).decode('UTF-16LE', 'replace')
# just guessing that this is the same encoding as used in OleFileIO
unused = modulestreamname_id
section_id = struct.unpack("<H", dir_stream.read(2))[0]
if section_id == 0x001C:
moduledocstring_id = section_id
check_value('MODULEDOCSTRING_Id', 0x001C, moduledocstring_id)
moduledocstring_sizeof_docstring = struct.unpack("<L", dir_stream.read(4))[0]
moduledocstring_docstring = dir_stream.read(moduledocstring_sizeof_docstring)
moduledocstring_reserved = struct.unpack("<H", dir_stream.read(2))[0]
check_value('MODULEDOCSTRING_Reserved', 0x0048, moduledocstring_reserved)
moduledocstring_sizeof_docstring_unicode = struct.unpack("<L", dir_stream.read(4))[0]
moduledocstring_docstring_unicode = dir_stream.read(moduledocstring_sizeof_docstring_unicode)
unused = moduledocstring_docstring
unused = moduledocstring_docstring_unicode
section_id = struct.unpack("<H", dir_stream.read(2))[0]
if section_id == 0x0031:
moduleoffset_id = section_id
check_value('MODULEOFFSET_Id', 0x0031, moduleoffset_id)
moduleoffset_size = struct.unpack("<L", dir_stream.read(4))[0]
check_value('MODULEOFFSET_Size', 0x0004, moduleoffset_size)
moduleoffset_textoffset = struct.unpack("<L", dir_stream.read(4))[0]
section_id = struct.unpack("<H", dir_stream.read(2))[0]
if section_id == 0x001E:
modulehelpcontext_id = section_id
check_value('MODULEHELPCONTEXT_Id', 0x001E, modulehelpcontext_id)
modulehelpcontext_size = struct.unpack("<L", dir_stream.read(4))[0]
check_value('MODULEHELPCONTEXT_Size', 0x0004, modulehelpcontext_size)
modulehelpcontext_helpcontext = struct.unpack("<L", dir_stream.read(4))[0]
unused = modulehelpcontext_helpcontext
section_id = struct.unpack("<H", dir_stream.read(2))[0]
if section_id == 0x002C:
modulecookie_id = section_id
check_value('MODULECOOKIE_Id', 0x002C, modulecookie_id)
modulecookie_size = struct.unpack("<L", dir_stream.read(4))[0]
check_value('MODULECOOKIE_Size', 0x0002, modulecookie_size)
modulecookie_cookie = struct.unpack("<H", dir_stream.read(2))[0]
unused = modulecookie_cookie
section_id = struct.unpack("<H", dir_stream.read(2))[0]
if section_id == 0x0021 or section_id == 0x0022:
moduletype_id = section_id
moduletype_reserved = struct.unpack("<L", dir_stream.read(4))[0]
unused = moduletype_id
unused = moduletype_reserved
section_id = struct.unpack("<H", dir_stream.read(2))[0]
if section_id == 0x0025:
modulereadonly_id = section_id
check_value('MODULEREADONLY_Id', 0x0025, modulereadonly_id)
modulereadonly_reserved = struct.unpack("<L", dir_stream.read(4))[0]
check_value('MODULEREADONLY_Reserved', 0x0000, modulereadonly_reserved)
section_id = struct.unpack("<H", dir_stream.read(2))[0]
if section_id == 0x0028:
moduleprivate_id = section_id
check_value('MODULEPRIVATE_Id', 0x0028, moduleprivate_id)
moduleprivate_reserved = struct.unpack("<L", dir_stream.read(4))[0]
check_value('MODULEPRIVATE_Reserved', 0x0000, moduleprivate_reserved)
section_id = struct.unpack("<H", dir_stream.read(2))[0]
if section_id == 0x002B: # TERMINATOR
module_reserved = struct.unpack("<L", dir_stream.read(4))[0]
check_value('MODULE_Reserved', 0x0000, module_reserved)
section_id = None
if section_id != None:
log.warning('unknown or invalid module section id {0:04X}'.format(section_id))
log.debug('Project CodePage = %d' % projectcodepage_codepage)
if projectcodepage_codepage in MAC_CODEPAGES:
vba_codec = MAC_CODEPAGES[projectcodepage_codepage]
else:
vba_codec = 'cp%d' % projectcodepage_codepage
log.debug("ModuleName = {0}".format(modulename_modulename))
log.debug("ModuleNameUnicode = {0}".format(uni_out(modulename_unicode_modulename_unicode)))
log.debug("StreamName = {0}".format(modulestreamname_streamname))
try:
streamname_unicode = modulestreamname_streamname.decode(vba_codec)
except UnicodeError as ue:
log.debug('failed to decode stream name {0!r} with codec {1}'
.format(uni_out(streamname_unicode), vba_codec))
streamname_unicode = modulestreamname_streamname.decode(vba_codec, errors='replace')
log.debug("StreamName.decode('%s') = %s" % (vba_codec, uni_out(streamname_unicode)))
log.debug("StreamNameUnicode = {0}".format(uni_out(modulestreamname_streamname_unicode)))
log.debug("TextOffset = {0}".format(moduleoffset_textoffset))
code_data = None
try_names = streamname_unicode, \
modulename_unicode_modulename_unicode, \
modulestreamname_streamname_unicode
for stream_name in try_names:
# TODO: if olefile._find were less private, could replace this
# try-except with calls to it
try:
code_path = vba_root + u'VBA/' + stream_name
log.debug('opening VBA code stream %s' % uni_out(code_path))
code_data = ole.openstream(code_path).read()
break
except IOError as ioe:
log.debug('failed to open stream VBA/%r (%r), try other name'
% (uni_out(stream_name), ioe))
if code_data is None:
log.info("Could not open stream %d of %d ('VBA/' + one of %r)!"
% (projectmodule_index, projectmodules_count,
'/'.join("'" + uni_out(stream_name) + "'"
for stream_name in try_names)))
if relaxed:
continue # ... with next submodule
else:
raise SubstreamOpenError('[BASE]', 'VBA/' +
uni_out(modulename_unicode_modulename_unicode))
log.debug("length of code_data = {0}".format(len(code_data)))
log.debug("offset of code_data = {0}".format(moduleoffset_textoffset))
code_data = code_data[moduleoffset_textoffset:]
if len(code_data) > 0:
code_data = decompress_stream(code_data)
# case-insensitive search in the code_modules dict to find the file extension:
filext = code_modules.get(modulename_modulename.lower(), 'bin')
filename = '{0}.{1}'.format(modulename_modulename, filext)
#TODO: also yield the codepage so that callers can decode it properly
yield (code_path, filename, code_data)
# print '-'*79
# print filename
# print ''
# print code_data
# print ''
log.debug('extracted file {0}'.format(filename))
else:
log.warning("module stream {0} has code data length 0".format(modulestreamname_streamname))
except (UnexpectedDataError, SubstreamOpenError):
raise
except Exception as exc:
log.info('Error parsing module {0} of {1} in _extract_vba:'
.format(projectmodule_index, projectmodules_count),
exc_info=True)
if not relaxed:
raise
_ = unused # make pylint happy: now variable "unused" is being used ;-)
return
def vba_collapse_long_lines(vba_code):
"""
Parse a VBA module code to detect continuation line characters (underscore) and
collapse split lines. Continuation line characters are replaced by spaces.
:param vba_code: str, VBA module code
:return: str, VBA module code with long lines collapsed
"""
# TODO: use a regex instead, to allow whitespaces after the underscore?
vba_code = vba_code.replace(' _\r\n', ' ')
vba_code = vba_code.replace(' _\r', ' ')
vba_code = vba_code.replace(' _\n', ' ')
return vba_code
def filter_vba(vba_code):
"""
Filter VBA source code to remove the first lines starting with "Attribute VB_",
which are automatically added by MS Office and not displayed in the VBA Editor.
This should only be used when displaying source code for human analysis.
Note: lines are not filtered if they contain a colon, because it could be
used to hide malicious instructions.
:param vba_code: str, VBA source code
:return: str, filtered VBA source code
"""
vba_lines = vba_code.splitlines()
start = 0
for line in vba_lines:
if line.startswith("Attribute VB_") and not ':' in line:
start += 1
else:
break
#TODO: also remove empty lines?
vba = '\n'.join(vba_lines[start:])
return vba
def detect_autoexec(vba_code, obfuscation=None):
"""
Detect if the VBA code contains keywords corresponding to macros running
automatically when triggered by specific actions (e.g. when a document is
opened or closed).
:param vba_code: str, VBA source code
:param obfuscation: None or str, name of obfuscation to be added to description
:return: list of str tuples (keyword, description)
"""
#TODO: merge code with detect_suspicious
# case-insensitive search
#vba_code = vba_code.lower()
results = []
obf_text = ''
if obfuscation:
obf_text = ' (obfuscation: %s)' % obfuscation
for description, keywords in AUTOEXEC_KEYWORDS.items():
for keyword in keywords:
#TODO: if keyword is already a compiled regex, use it as-is
# search using regex to detect word boundaries:
if re.search(r'(?i)\b' + keyword + r'\b', vba_code):
#if keyword.lower() in vba_code:
results.append((keyword, description + obf_text))
return results
def detect_suspicious(vba_code, obfuscation=None):
"""
Detect if the VBA code contains suspicious keywords corresponding to
potential malware behaviour.
:param vba_code: str, VBA source code
:param obfuscation: None or str, name of obfuscation to be added to description
:return: list of str tuples (keyword, description)
"""
# case-insensitive search
#vba_code = vba_code.lower()
results = []
obf_text = ''
if obfuscation:
obf_text = ' (obfuscation: %s)' % obfuscation
for description, keywords in SUSPICIOUS_KEYWORDS.items():
for keyword in keywords:
# search using regex to detect word boundaries:
if re.search(r'(?i)\b' + keyword + r'\b', vba_code):
#if keyword.lower() in vba_code:
results.append((keyword, description + obf_text))
return results
def detect_patterns(vba_code, obfuscation=None):
"""
Detect if the VBA code contains specific patterns such as IP addresses,
URLs, e-mail addresses, executable file names, etc.
:param vba_code: str, VBA source code
:return: list of str tuples (pattern type, value)
"""
results = []
found = set()
obf_text = ''
if obfuscation:
obf_text = ' (obfuscation: %s)' % obfuscation
for pattern_type, pattern_re in RE_PATTERNS:
for match in pattern_re.finditer(vba_code):
value = match.group()
if value not in found:
results.append((pattern_type + obf_text, value))
found.add(value)
return results
def detect_hex_strings(vba_code):
"""
Detect if the VBA code contains strings encoded in hexadecimal.
:param vba_code: str, VBA source code
:return: list of str tuples (encoded string, decoded string)
"""
results = []
found = set()
for match in re_hex_string.finditer(vba_code):
value = match.group()
if value not in found:
decoded = binascii.unhexlify(value)
results.append((value, decoded))
found.add(value)
return results
def detect_base64_strings(vba_code):
"""
Detect if the VBA code contains strings encoded in base64.
:param vba_code: str, VBA source code
:return: list of str tuples (encoded string, decoded string)
"""
#TODO: avoid matching simple hex strings as base64?
results = []
found = set()
for match in re_base64_string.finditer(vba_code):
# extract the base64 string without quotes:
value = match.group().strip('"')
# check it is not just a hex string:
if not re_nothex_check.search(value):
continue
# only keep new values and not in the whitelist:
if value not in found and value.lower() not in BASE64_WHITELIST:
try:
decoded = base64.b64decode(value)
results.append((value, decoded))
found.add(value)
except (TypeError, ValueError) as exc:
log.debug('Failed to base64-decode (%s)' % exc)
# if an exception occurs, it is likely not a base64-encoded string
return results
def detect_dridex_strings(vba_code):
"""
Detect if the VBA code contains strings obfuscated with a specific algorithm found in Dridex samples.
:param vba_code: str, VBA source code
:return: list of str tuples (encoded string, decoded string)
"""
from thirdparty.DridexUrlDecoder.DridexUrlDecoder import DridexUrlDecode
results = []
found = set()
for match in re_dridex_string.finditer(vba_code):
value = match.group()[1:-1]
# check it is not just a hex string:
if not re_nothex_check.search(value):
continue
if value not in found:
try:
decoded = DridexUrlDecode(value)
results.append((value, decoded))
found.add(value)
except Exception as exc:
log.debug('Failed to Dridex-decode (%s)' % exc)
# if an exception occurs, it is likely not a dridex-encoded string
return results
def detect_vba_strings(vba_code):
"""
Detect if the VBA code contains strings obfuscated with VBA expressions
using keywords such as Chr, Asc, Val, StrReverse, etc.
:param vba_code: str, VBA source code
:return: list of str tuples (encoded string, decoded string)
"""
# TODO: handle exceptions
results = []
found = set()
# IMPORTANT: to extract the actual VBA expressions found in the code,
# we must expand tabs to have the same string as pyparsing.
# Otherwise, start and end offsets are incorrect.
vba_code = vba_code.expandtabs()
for tokens, start, end in vba_expr_str.scanString(vba_code):
encoded = vba_code[start:end]
decoded = tokens[0]
if isinstance(decoded, VbaExpressionString):
# This is a VBA expression, not a simple string
# print 'VBA EXPRESSION: encoded=%r => decoded=%r' % (encoded, decoded)
# remove parentheses and quotes from original string:
# if encoded.startswith('(') and encoded.endswith(')'):
# encoded = encoded[1:-1]
# if encoded.startswith('"') and encoded.endswith('"'):
# encoded = encoded[1:-1]
# avoid duplicates and simple strings:
if encoded not in found and decoded != encoded:
results.append((encoded, decoded))
found.add(encoded)
# else:
# print 'VBA STRING: encoded=%r => decoded=%r' % (encoded, decoded)
return results
def json2ascii(json_obj, encoding='utf8', errors='replace'):
""" ensure there is no unicode in json and all strings are safe to decode
works recursively, decodes and re-encodes every string to/from unicode
to ensure there will be no trouble in loading the dumped json output
"""
if json_obj is None:
pass
elif isinstance(json_obj, (bool, int, float)):
pass
elif isinstance(json_obj, str):
# de-code and re-encode
dencoded = json_obj
if dencoded != json_obj:
log.debug('json2ascii: replaced: {0} (len {1})'
.format(json_obj, len(json_obj)))
log.debug('json2ascii: with: {0} (len {1})'
.format(dencoded, len(dencoded)))
return dencoded
elif isinstance(json_obj, bytes):
log.debug('json2ascii: encode unicode: {0}'
.format(json_obj.decode(encoding, errors)))
# cannot put original into logger
# print 'original: ' json_obj
return json_obj.decode(encoding, errors)
elif isinstance(json_obj, dict):
for key in json_obj:
json_obj[key] = json2ascii(json_obj[key])
elif isinstance(json_obj, (list,tuple)):
for item in json_obj:
item = json2ascii(item)
else:
log.debug('unexpected type in json2ascii: {0} -- leave as is'
.format(type(json_obj)))
return json_obj
_have_printed_json_start = False
def print_json(json_dict=None, _json_is_last=False, **json_parts):
""" line-wise print of json.dumps(json2ascii(..)) with options and indent+1
can use in two ways:
(1) print_json(some_dict)
(2) print_json(key1=value1, key2=value2, ...)
:param bool _json_is_last: set to True only for very last entry to complete
the top-level json-list
"""
global _have_printed_json_start
if json_dict and json_parts:
raise ValueError('Invalid json argument: want either single dict or '
'key=value parts but got both)')
elif (json_dict is not None) and (not isinstance(json_dict, dict)):
raise ValueError('Invalid json argument: want either single dict or '
'key=value parts but got {0} instead of dict)'
.format(type(json_dict)))
if json_parts:
json_dict = json_parts
if not _have_printed_json_start:
print('[')
_have_printed_json_start = True
lines = json.dumps(json2ascii(json_dict), check_circular=False,
indent=4, ensure_ascii=False).splitlines()
for line in lines[:-1]:
print(' {0}'.format(line))
if _json_is_last:
print(' {0}'.format(lines[-1])) # print last line without comma
print(']')
else:
print(' {0},'.format(lines[-1])) # print last line with comma
class VBA_Scanner(object):
"""
Class to scan the source code of a VBA module to find obfuscated strings,
suspicious keywords, IOCs, auto-executable macros, etc.
"""
def __init__(self, vba_code):
"""
VBA_Scanner constructor
:param vba_code: str, VBA source code to be analyzed
"""
# join long lines ending with " _":
self.code = vba_collapse_long_lines(vba_code)
self.code_hex = b''
self.code_hex_rev = b''
self.code_rev_hex = b''
self.code_base64 = b''
self.code_dridex = ''
self.code_vba = ''
self.strReverse = None
# results = None before scanning, then a list of tuples after scanning
self.results = None
self.autoexec_keywords = None
self.suspicious_keywords = None
self.iocs = None
self.hex_strings = None
self.base64_strings = None
self.dridex_strings = None
self.vba_strings = None
def scan(self, include_decoded_strings=False, deobfuscate=False):
"""
Analyze the provided VBA code to detect suspicious keywords,
auto-executable macros, IOC patterns, obfuscation patterns
such as hex-encoded strings.
:param include_decoded_strings: bool, if True, all encoded strings will be included with their decoded content.
:param deobfuscate: bool, if True attempt to deobfuscate VBA expressions (slow)
:return: list of tuples (type, keyword, description)
(type = 'AutoExec', 'Suspicious', 'IOC', 'Hex String', 'Base64 String' or 'Dridex String')
"""
# First, detect and extract hex-encoded strings:
self.hex_strings = detect_hex_strings(self.code)
# detect if the code contains StrReverse:
self.strReverse = False
if 'strreverse' in self.code.lower(): self.strReverse = True
# Then append the decoded strings to the VBA code, to detect obfuscated IOCs and keywords:
for encoded, decoded in self.hex_strings:
self.code_hex += b'\n' + decoded
# if the code contains "StrReverse", also append the hex strings in reverse order:
if self.strReverse:
# StrReverse after hex decoding:
self.code_hex_rev += b'\n' + decoded[::-1]
# StrReverse before hex decoding:
self.code_rev_hex += b'\n' + binascii.unhexlify(encoded[::-1])
#example: https://malwr.com/analysis/NmFlMGI4YTY1YzYyNDkwNTg1ZTBiZmY5OGI3YjlhYzU/
#TODO: also append the full code reversed if StrReverse? (risk of false positives?)
# Detect Base64-encoded strings
self.base64_strings = detect_base64_strings(self.code)
for encoded, decoded in self.base64_strings:
self.code_base64 += b'\n' + decoded
# Detect Dridex-encoded strings
self.dridex_strings = detect_dridex_strings(self.code)
for encoded, decoded in self.dridex_strings:
self.code_dridex += '\n' + decoded
# Detect obfuscated strings in VBA expressions
if deobfuscate:
self.vba_strings = detect_vba_strings(self.code)
else:
self.vba_strings = []
for encoded, decoded in self.vba_strings:
self.code_vba += '\n' + decoded
results = []
self.autoexec_keywords = []
self.suspicious_keywords = []
self.iocs = []
for code, obfuscation in (
(self.code, None),
(self.code_hex.decode('utf-8','replace'), 'Hex'),
(self.code_hex_rev, 'Hex+StrReverse'),
(self.code_rev_hex, 'StrReverse+Hex'),
(self.code_base64.decode('utf-8', 'replace'), 'Base64'),
(self.code_dridex, 'Dridex'),
(self.code_vba, 'VBA expression'),
):
if isinstance(code,bytes):
code=code.decode('utf-8','replace')
self.autoexec_keywords += detect_autoexec(code, obfuscation)
self.suspicious_keywords += detect_suspicious(code, obfuscation)
self.iocs += detect_patterns(code, obfuscation)
# If hex-encoded strings were discovered, add an item to suspicious keywords:
if self.hex_strings:
self.suspicious_keywords.append(('Hex Strings',
'Hex-encoded strings were detected, may be used to obfuscate strings (option --decode to see all)'))
if self.base64_strings:
self.suspicious_keywords.append(('Base64 Strings',
'Base64-encoded strings were detected, may be used to obfuscate strings (option --decode to see all)'))
if self.dridex_strings:
self.suspicious_keywords.append(('Dridex Strings',
'Dridex-encoded strings were detected, may be used to obfuscate strings (option --decode to see all)'))
if self.vba_strings:
self.suspicious_keywords.append(('VBA obfuscated Strings',
'VBA string expressions were detected, may be used to obfuscate strings (option --decode to see all)'))
# use a set to avoid duplicate keywords
keyword_set = set()
for keyword, description in self.autoexec_keywords:
if keyword not in keyword_set:
results.append(('AutoExec', keyword, description))
keyword_set.add(keyword)
keyword_set = set()
for keyword, description in self.suspicious_keywords:
if keyword not in keyword_set:
results.append(('Suspicious', keyword, description))
keyword_set.add(keyword)
keyword_set = set()
for pattern_type, value in self.iocs:
if value not in keyword_set:
results.append(('IOC', value, pattern_type))
keyword_set.add(value)
# include decoded strings only if they are printable or if --decode option:
for encoded, decoded in self.hex_strings:
if include_decoded_strings or is_printable(decoded):
results.append(('Hex String', decoded, encoded))
for encoded, decoded in self.base64_strings:
if include_decoded_strings or is_printable(decoded):
results.append(('Base64 String', decoded, encoded))
for encoded, decoded in self.dridex_strings:
if include_decoded_strings or is_printable(decoded):
results.append(('Dridex string', decoded, encoded))
for encoded, decoded in self.vba_strings:
if include_decoded_strings or is_printable(decoded):
results.append(('VBA string', decoded, encoded))
self.results = results
return results
def scan_summary(self):
"""
Analyze the provided VBA code to detect suspicious keywords,
auto-executable macros, IOC patterns, obfuscation patterns
such as hex-encoded strings.
:return: tuple with the number of items found for each category:
(autoexec, suspicious, IOCs, hex, base64, dridex, vba)
"""
# avoid scanning the same code twice:
if self.results is None:
self.scan()
return (len(self.autoexec_keywords), len(self.suspicious_keywords),
len(self.iocs), len(self.hex_strings), len(self.base64_strings),
len(self.dridex_strings), len(self.vba_strings))
def scan_vba(vba_code, include_decoded_strings, deobfuscate=False):
"""
Analyze the provided VBA code to detect suspicious keywords,
auto-executable macros, IOC patterns, obfuscation patterns
such as hex-encoded strings.
(shortcut for VBA_Scanner(vba_code).scan())
:param vba_code: str, VBA source code to be analyzed
:param include_decoded_strings: bool, if True all encoded strings will be included with their decoded content.
:param deobfuscate: bool, if True attempt to deobfuscate VBA expressions (slow)
:return: list of tuples (type, keyword, description)
(type = 'AutoExec', 'Suspicious', 'IOC', 'Hex String', 'Base64 String' or 'Dridex String')
"""
return VBA_Scanner(vba_code).scan(include_decoded_strings, deobfuscate)
#=== CLASSES =================================================================
class VBA_Parser(object):
"""
Class to parse MS Office files, to detect VBA macros and extract VBA source code
Supported file formats:
- Word 97-2003 (.doc, .dot)
- Word 2007+ (.docm, .dotm)
- Word 2003 XML (.xml)
- Word MHT - Single File Web Page / MHTML (.mht)
- Excel 97-2003 (.xls)
- Excel 2007+ (.xlsm, .xlsb)
- PowerPoint 97-2003 (.ppt)
- PowerPoint 2007+ (.pptm, .ppsm)
"""
def __init__(self, filename, data=None, container=None, relaxed=False):
"""
Constructor for VBA_Parser
:param filename: filename or path of file to parse, or file-like object
:param data: None or bytes str, if None the file will be read from disk (or from the file-like object).
If data is provided as a bytes string, it will be parsed as the content of the file in memory,
and not read from disk. Note: files must be read in binary mode, i.e. open(f, 'rb').
:param container: str, path and filename of container if the file is within
a zip archive, None otherwise.
:param relaxed: if True, treat mal-formed documents and missing streams more like MS office:
do nothing; if False (default), raise errors in these cases
raises a FileOpenError if all attemps to interpret the data header failed
"""
#TODO: filename should only be a string, data should be used for the file-like object
#TODO: filename should be mandatory, optional data is a string or file-like object
#TODO: also support olefile and zipfile as input
if data is None:
# open file from disk:
_file = filename
else:
# file already read in memory, make it a file-like object for zipfile:
_file = BytesIO(data)
#self.file = _file
self.ole_file = None
self.ole_subfiles = []
self.filename = filename
self.container = container
self.relaxed = relaxed
self.type = None
self.vba_projects = None
self.vba_forms = None
self.contains_macros = None # will be set to True or False by detect_macros
self.vba_code_all_modules = None # to store the source code of all modules
# list of tuples for each module: (subfilename, stream_path, vba_filename, vba_code)
self.modules = None
# Analysis results: list of tuples (type, keyword, description) - See VBA_Scanner
self.analysis_results = None
# statistics for the scan summary and flags
self.nb_macros = 0
self.nb_autoexec = 0
self.nb_suspicious = 0
self.nb_iocs = 0
self.nb_hexstrings = 0
self.nb_base64strings = 0
self.nb_dridexstrings = 0
self.nb_vbastrings = 0
# if filename is None:
# if isinstance(_file, basestring):
# if len(_file) < olefile.MINIMAL_OLEFILE_SIZE:
# self.filename = _file
# else:
# self.filename = '<file in bytes string>'
# else:
# self.filename = '<file-like object>'
if olefile.isOleFile(_file):
# This looks like an OLE file
self.open_ole(_file)
# if this worked, try whether it is a ppt file (special ole file)
self.open_ppt()
if self.type is None and zipfile.is_zipfile(_file):
# Zip file, which may be an OpenXML document
self.open_openxml(_file)
if self.type is None:
# read file from disk, check if it is a Word 2003 XML file (WordProcessingML), Excel 2003 XML,
# or a plain text file containing VBA code
if data is None:
data = open(filename, 'rb').read()
# check if it is a Word 2003 XML file (WordProcessingML): must contain the namespace
if b'http://schemas.microsoft.com/office/word/2003/wordml' in data:
self.open_word2003xml(data)
# store a lowercase version for the next tests:
data_lowercase = data.lower()
# check if it is a MHT file (MIME HTML, Word or Excel saved as "Single File Web Page"):
# According to my tests, these files usually start with "MIME-Version: 1.0" on the 1st line
# BUT Word accepts a blank line or other MIME headers inserted before,
# and even whitespaces in between "MIME", "-", "Version" and ":". The version number is ignored.
# And the line is case insensitive.
# so we'll just check the presence of mime, version and multipart anywhere:
if self.type is None and b'mime' in data_lowercase and b'version' in data_lowercase \
and b'multipart' in data_lowercase:
self.open_mht(data)
#TODO: handle exceptions
#TODO: Excel 2003 XML
# Check if this is a plain text VBA or VBScript file:
# To avoid scanning binary files, we simply check for some control chars:
if self.type is None and b'\x00' not in data:
self.open_text(data)
if self.type is None:
# At this stage, could not match a known format:
msg = '%s is not a supported file type, cannot extract VBA Macros.' % self.filename
log.info(msg)
raise FileOpenError(msg)
def open_ole(self, _file):
"""
Open an OLE file
:param _file: filename or file contents in a file object
:return: nothing
"""
log.info('Opening OLE file %s' % self.filename)
try:
# Open and parse the OLE file, using unicode for path names:
self.ole_file = olefile.OleFileIO(_file, path_encoding=None)
# set type only if parsing succeeds
self.type = TYPE_OLE
except (IOError, TypeError, ValueError) as exc:
# TODO: handle OLE parsing exceptions
log.info('Failed OLE parsing for file %r (%s)' % (self.filename, exc))
log.debug('Trace:', exc_info=True)
def open_openxml(self, _file):
"""
Open an OpenXML file
:param _file: filename or file contents in a file object
:return: nothing
"""
# This looks like a zip file, need to look for vbaProject.bin inside
# It can be any OLE file inside the archive
#...because vbaProject.bin can be renamed:
# see http://www.decalage.info/files/JCV07_Lagadec_OpenDocument_OpenXML_v4_decalage.pdf#page=18
log.info('Opening ZIP/OpenXML file %s' % self.filename)
try:
z = zipfile.ZipFile(_file)
#TODO: check if this is actually an OpenXML file
#TODO: if the zip file is encrypted, suggest to use the -z option, or try '-z infected' automatically
# check each file within the zip if it is an OLE file, by reading its magic:
for subfile in z.namelist():
magic = z.open(subfile).read(len(olefile.MAGIC))
if magic == olefile.MAGIC:
log.debug('Opening OLE file %s within zip' % subfile)
ole_data = z.open(subfile).read()
try:
self.ole_subfiles.append(
VBA_Parser(filename=subfile, data=ole_data,
relaxed=self.relaxed))
except OlevbaBaseException as exc:
if self.relaxed:
log.info('%s is not a valid OLE file (%s)' % (subfile, exc))
log.debug('Trace:', exc_info=True)
continue
else:
raise SubstreamOpenError(self.filename, subfile,
exc)
z.close()
# set type only if parsing succeeds
self.type = TYPE_OpenXML
except OlevbaBaseException as exc:
if self.relaxed:
log.info('Error {0} caught in Zip/OpenXML parsing for file {1}'
.format(exc, self.filename))
log.debug('Trace:', exc_info=True)
else:
raise
except (RuntimeError, zipfile.BadZipfile, zipfile.LargeZipFile, IOError) as exc:
# TODO: handle parsing exceptions
log.info('Failed Zip/OpenXML parsing for file %r (%s)'
% (self.filename, exc))
log.debug('Trace:', exc_info=True)
def open_word2003xml(self, data):
"""
Open a Word 2003 XML file
:param data: file contents in a string or bytes
:return: nothing
"""
log.info('Opening Word 2003 XML file %s' % self.filename)
try:
# parse the XML content
# TODO: handle XML parsing exceptions
et = ET.fromstring(data)
# find all the binData elements:
for bindata in et.getiterator(TAG_BINDATA):
# the binData content is an OLE container for the VBA project, compressed
# using the ActiveMime/MSO format (zlib-compressed), and Base64 encoded.
# get the filename:
fname = bindata.get(ATTR_NAME, 'noname.mso')
# decode the base64 activemime
mso_data = binascii.a2b_base64(bindata.text)
if is_mso_file(mso_data):
# decompress the zlib data stored in the MSO file, which is the OLE container:
# TODO: handle different offsets => separate function
try:
ole_data = mso_file_extract(mso_data)
self.ole_subfiles.append(
VBA_Parser(filename=fname, data=ole_data,
relaxed=self.relaxed))
except OlevbaBaseException as exc:
if self.relaxed:
log.info('Error parsing subfile {0}: {1}'
.format(fname, exc))
log.debug('Trace:', exc_info=True)
else:
raise SubstreamOpenError(self.filename, fname, exc)
else:
log.info('%s is not a valid MSO file' % fname)
# set type only if parsing succeeds
self.type = TYPE_Word2003_XML
except OlevbaBaseException as exc:
if self.relaxed:
log.info('Failed XML parsing for file %r (%s)' % (self.filename, exc))
log.debug('Trace:', exc_info=True)
else:
raise
except Exception as exc:
# TODO: differentiate exceptions for each parsing stage
# (but ET is different libs, no good exception description in API)
# found: XMLSyntaxError
log.info('Failed XML parsing for file %r (%s)' % (self.filename, exc))
log.debug('Trace:', exc_info=True)
def open_mht(self, data):
"""
Open a MHTML file
:param data: file contents in a string or bytes
:return: nothing
"""
log.info('Opening MHTML file %s' % self.filename)
try:
if isinstance(data,bytes):
data = data.decode('utf8', 'replace')
# parse the MIME content
# remove any leading whitespace or newline (workaround for issue in email package)
stripped_data = data.lstrip('\r\n\t ')
# strip any junk from the beginning of the file
# (issue #31 fix by Greg C - gdigreg)
# TODO: improve keywords to avoid false positives
mime_offset = stripped_data.find('MIME')
content_offset = stripped_data.find('Content')
# if "MIME" is found, and located before "Content":
if -1 < mime_offset <= content_offset:
stripped_data = stripped_data[mime_offset:]
# else if "Content" is found, and before "MIME"
# TODO: can it work without "MIME" at all?
elif content_offset > -1:
stripped_data = stripped_data[content_offset:]
# TODO: quick and dirty fix: insert a standard line with MIME-Version header?
mhtml = email.message_from_string(stripped_data)
# find all the attached files:
for part in mhtml.walk():
content_type = part.get_content_type() # always returns a value
fname = part.get_filename(None) # returns None if it fails
# TODO: get content-location if no filename
log.debug('MHTML part: filename=%r, content-type=%r' % (fname, content_type))
part_data = part.get_payload(decode=True)
# VBA macros are stored in a binary file named "editdata.mso".
# the data content is an OLE container for the VBA project, compressed
# using the ActiveMime/MSO format (zlib-compressed), and Base64 encoded.
# decompress the zlib data starting at offset 0x32, which is the OLE container:
# check ActiveMime header:
if (isinstance(part_data, str) or isinstance(part_data, bytes)) and is_mso_file(part_data):
log.debug('Found ActiveMime header, decompressing MSO container')
try:
ole_data = mso_file_extract(part_data)
# TODO: check if it is actually an OLE file
# TODO: get the MSO filename from content_location?
self.ole_subfiles.append(
VBA_Parser(filename=fname, data=ole_data,
relaxed=self.relaxed))
except OlevbaBaseException as exc:
if self.relaxed:
log.info('%s does not contain a valid OLE file (%s)'
% (fname, exc))
log.debug('Trace:', exc_info=True)
# TODO: bug here - need to split in smaller functions/classes?
else:
raise SubstreamOpenError(self.filename, fname, exc)
else:
log.debug('type(part_data) = %s' % type(part_data))
try:
log.debug('part_data[0:20] = %r' % part_data[0:20])
except TypeError as err:
log.debug('part_data has no __getitem__')
# set type only if parsing succeeds
self.type = TYPE_MHTML
except OlevbaBaseException:
raise
except Exception:
log.info('Failed MIME parsing for file %r - %s'
% (self.filename, MSG_OLEVBA_ISSUES))
log.debug('Trace:', exc_info=True)
def open_ppt(self):
""" try to interpret self.ole_file as PowerPoint 97-2003 using PptParser
Although self.ole_file is a valid olefile.OleFileIO, we set
self.ole_file = None in here and instead set self.ole_subfiles to the
VBA ole streams found within the main ole file. That makes most of the
code below treat this like an OpenXML file and only look at the
ole_subfiles (except find_vba_* which needs to explicitly check for
self.type)
"""
log.info('Check whether OLE file is PPT')
ppt_parser.enable_logging()
try:
ppt = ppt_parser.PptParser(self.ole_file, fast_fail=True)
for vba_data in ppt.iter_vba_data():
self.ole_subfiles.append(VBA_Parser(None, vba_data,
container='PptParser'))
log.info('File is PPT')
self.ole_file.close() # just in case
self.ole_file = None # required to make other methods look at ole_subfiles
self.type = TYPE_PPT
except Exception as exc:
if self.container == 'PptParser':
# this is a subfile of a ppt --> to be expected that is no ppt
log.debug('PPT subfile is not a PPT file')
else:
log.debug("File appears not to be a ppt file (%s)" % exc)
def open_text(self, data):
"""
Open a text file containing VBA or VBScript source code
:param data: file contents in a string or bytes
:return: nothing
"""
log.info('Opening text file %s' % self.filename)
# directly store the source code:
if isinstance(data,bytes):
data=data.decode('utf8','replace')
self.vba_code_all_modules = data
self.contains_macros = True
# set type only if parsing succeeds
self.type = TYPE_TEXT
def find_vba_projects(self):
"""
Finds all the VBA projects stored in an OLE file.
Return None if the file is not OLE but OpenXML.
Return a list of tuples (vba_root, project_path, dir_path) for each VBA project.
vba_root is the path of the root OLE storage containing the VBA project,
including a trailing slash unless it is the root of the OLE file.
project_path is the path of the OLE stream named "PROJECT" within the VBA project.
dir_path is the path of the OLE stream named "VBA/dir" within the VBA project.
If this function returns an empty list for one of the supported formats
(i.e. Word, Excel, Powerpoint), then the file does not contain VBA macros.
:return: None if OpenXML file, list of tuples (vba_root, project_path, dir_path)
for each VBA project found if OLE file
"""
log.debug('VBA_Parser.find_vba_projects')
# if the file is not OLE but OpenXML, return None:
if self.ole_file is None and self.type != TYPE_PPT:
return None
# if this method has already been called, return previous result:
if self.vba_projects is not None:
return self.vba_projects
# if this is a ppt file (PowerPoint 97-2003):
# self.ole_file is None but the ole_subfiles do contain vba_projects
# (like for OpenXML files).
if self.type == TYPE_PPT:
# TODO: so far, this function is never called for PPT files, but
# if that happens, the information is lost which ole file contains
# which storage!
log.warning('Returned info is not complete for PPT types!')
self.vba_projects = []
for subfile in self.ole_subfiles:
self.vba_projects.extend(subfile.find_vba_projects())
return self.vba_projects
# Find the VBA project root (different in MS Word, Excel, etc):
# - Word 97-2003: Macros
# - Excel 97-2003: _VBA_PROJECT_CUR
# - PowerPoint 97-2003: PptParser has identified ole_subfiles
# - Word 2007+: word/vbaProject.bin in zip archive, then the VBA project is the root of vbaProject.bin.
# - Excel 2007+: xl/vbaProject.bin in zip archive, then same as Word
# - PowerPoint 2007+: ppt/vbaProject.bin in zip archive, then same as Word
# - Visio 2007: not supported yet (different file structure)
# According to MS-OVBA section 2.2.1:
# - the VBA project root storage MUST contain a VBA storage and a PROJECT stream
# - The root/VBA storage MUST contain a _VBA_PROJECT stream and a dir stream
# - all names are case-insensitive
def check_vba_stream(ole, vba_root, stream_path):
full_path = vba_root + stream_path
if ole.exists(full_path) and ole.get_type(full_path) == olefile.STGTY_STREAM:
log.debug('Found %s stream: %s' % (stream_path, full_path))
return full_path
else:
log.debug('Missing %s stream, this is not a valid VBA project structure' % stream_path)
return False
# start with an empty list:
self.vba_projects = []
# Look for any storage containing those storage/streams:
ole = self.ole_file
for storage in ole.listdir(streams=False, storages=True):
log.debug('Checking storage %r' % storage)
# Look for a storage ending with "VBA":
if storage[-1].upper() == 'VBA':
log.debug('Found VBA storage: %s' % ('/'.join(storage)))
vba_root = '/'.join(storage[:-1])
# Add a trailing slash to vba_root, unless it is the root of the OLE file:
# (used later to append all the child streams/storages)
if vba_root != '':
vba_root += '/'
log.debug('Checking vba_root="%s"' % vba_root)
# Check if the VBA root storage also contains a PROJECT stream:
project_path = check_vba_stream(ole, vba_root, 'PROJECT')
if not project_path: continue
# Check if the VBA root storage also contains a VBA/_VBA_PROJECT stream:
vba_project_path = check_vba_stream(ole, vba_root, 'VBA/_VBA_PROJECT')
if not vba_project_path: continue
# Check if the VBA root storage also contains a VBA/dir stream:
dir_path = check_vba_stream(ole, vba_root, 'VBA/dir')
if not dir_path: continue
# Now we are pretty sure it is a VBA project structure
log.debug('VBA root storage: "%s"' % vba_root)
# append the results to the list as a tuple for later use:
self.vba_projects.append((vba_root, project_path, dir_path))
return self.vba_projects
def detect_vba_macros(self):
"""
Detect the potential presence of VBA macros in the file, by checking
if it contains VBA projects. Both OLE and OpenXML files are supported.
Important: for now, results are accurate only for Word, Excel and PowerPoint
Note: this method does NOT attempt to check the actual presence or validity
of VBA macro source code, so there might be false positives.
It may also detect VBA macros in files embedded within the main file,
for example an Excel workbook with macros embedded into a Word
document without macros may be detected, without distinction.
:return: bool, True if at least one VBA project has been found, False otherwise
"""
#TODO: return None or raise exception if format not supported
#TODO: return the number of VBA projects found instead of True/False?
# if this method was already called, return the previous result:
if self.contains_macros is not None:
return self.contains_macros
# if OpenXML/PPT, check all the OLE subfiles:
if self.ole_file is None:
for ole_subfile in self.ole_subfiles:
if ole_subfile.detect_vba_macros():
self.contains_macros = True
return True
# otherwise, no macro found:
self.contains_macros = False
return False
# otherwise it's an OLE file, find VBA projects:
vba_projects = self.find_vba_projects()
if len(vba_projects) == 0:
self.contains_macros = False
else:
self.contains_macros = True
# Also look for VBA code in any stream including orphans
# (happens in some malformed files)
ole = self.ole_file
for sid in range(len(ole.direntries)):
# check if id is already done above:
log.debug('Checking DirEntry #%d' % sid)
d = ole.direntries[sid]
if d is None:
# this direntry is not part of the tree: either unused or an orphan
d = ole._load_direntry(sid)
log.debug('This DirEntry is an orphan or unused')
if d.entry_type == olefile.STGTY_STREAM:
# read data
log.debug('Reading data from stream %r - size: %d bytes' % (d.name, d.size))
try:
data = ole._open(d.isectStart, d.size).read()
log.debug('Read %d bytes' % len(data))
if len(data) > 200:
log.debug('%r...[much more data]...%r' % (data[:100], data[-50:]))
else:
log.debug(repr(data))
if 'Attribut' in data.decode('utf-8','ignore'):
log.debug('Found VBA compressed code')
self.contains_macros = True
except IOError as exc:
if self.relaxed:
log.info('Error when reading OLE Stream %r' % d.name)
log.debug('Trace:', exc_trace=True)
else:
raise SubstreamOpenError(self.filename, d.name, exc)
return self.contains_macros
def extract_macros(self):
"""
Extract and decompress source code for each VBA macro found in the file
Iterator: yields (filename, stream_path, vba_filename, vba_code) for each VBA macro found
If the file is OLE, filename is the path of the file.
If the file is OpenXML, filename is the path of the OLE subfile containing VBA macros
within the zip archive, e.g. word/vbaProject.bin.
If the file is PPT, result is as for OpenXML but filename is useless
"""
log.debug('extract_macros:')
if self.ole_file is None:
# This may be either an OpenXML/PPT or a text file:
if self.type == TYPE_TEXT:
# This is a text file, yield the full code:
yield (self.filename, '', self.filename, self.vba_code_all_modules)
else:
# OpenXML/PPT: recursively yield results from each OLE subfile:
for ole_subfile in self.ole_subfiles:
for results in ole_subfile.extract_macros():
yield results
else:
# This is an OLE file:
self.find_vba_projects()
# set of stream ids
vba_stream_ids = set()
for vba_root, project_path, dir_path in self.vba_projects:
# extract all VBA macros from that VBA root storage:
for stream_path, vba_filename, vba_code in \
_extract_vba(self.ole_file, vba_root, project_path,
dir_path, self.relaxed):
# store direntry ids in a set:
vba_stream_ids.add(self.ole_file._find(stream_path))
yield (self.filename, stream_path, vba_filename, vba_code)
# Also look for VBA code in any stream including orphans
# (happens in some malformed files)
ole = self.ole_file
for sid in range(len(ole.direntries)):
# check if id is already done above:
log.debug('Checking DirEntry #%d' % sid)
if sid in vba_stream_ids:
log.debug('Already extracted')
continue
d = ole.direntries[sid]
if d is None:
# this direntry is not part of the tree: either unused or an orphan
d = ole._load_direntry(sid)
log.debug('This DirEntry is an orphan or unused')
if d.entry_type == olefile.STGTY_STREAM:
# read data
log.debug('Reading data from stream %r' % d.name)
data = ole._open(d.isectStart, d.size).read()
for match in re.finditer(rb'\x00Attribut[^e]', data, flags=re.IGNORECASE):
start = match.start() - 3
log.debug('Found VBA compressed code at index %X' % start)
compressed_code = data[start:]
try:
vba_code = decompress_stream(compressed_code)
yield (self.filename, d.name, d.name, vba_code)
except Exception as exc:
# display the exception with full stack trace for debugging
log.debug('Error processing stream %r in file %r (%s)' % (d.name, self.filename, exc))
log.debug('Traceback:', exc_info=True)
# do not raise the error, as it is unlikely to be a compressed macro stream
def extract_all_macros(self):
"""
Extract and decompress source code for each VBA macro found in the file
by calling extract_macros(), store the results as a list of tuples
(filename, stream_path, vba_filename, vba_code) in self.modules.
See extract_macros for details.
"""
if self.modules is None:
self.modules = []
for (subfilename, stream_path, vba_filename, vba_code) in self.extract_macros():
self.modules.append((subfilename, stream_path, vba_filename, vba_code))
self.nb_macros = len(self.modules)
return self.modules
def analyze_macros(self, show_decoded_strings=False, deobfuscate=False):
"""
runs extract_macros and analyze the source code of all VBA macros
found in the file.
"""
if self.detect_vba_macros():
# if the analysis was already done, avoid doing it twice:
if self.analysis_results is not None:
return self.analysis_results
# variable to merge source code from all modules:
if self.vba_code_all_modules is None:
self.vba_code_all_modules = ''
for (_, _, _, vba_code) in self.extract_all_macros():
#TODO: filter code? (each module)
self.vba_code_all_modules += vba_code.decode('utf-8', 'ignore') + '\n'
for (_, _, form_string) in self.extract_form_strings():
self.vba_code_all_modules += form_string.decode('utf-8', 'ignore') + '\n'
# Analyze the whole code at once:
scanner = VBA_Scanner(self.vba_code_all_modules)
self.analysis_results = scanner.scan(show_decoded_strings, deobfuscate)
autoexec, suspicious, iocs, hexstrings, base64strings, dridex, vbastrings = scanner.scan_summary()
self.nb_autoexec += autoexec
self.nb_suspicious += suspicious
self.nb_iocs += iocs
self.nb_hexstrings += hexstrings
self.nb_base64strings += base64strings
self.nb_dridexstrings += dridex
self.nb_vbastrings += vbastrings
return self.analysis_results
def reveal(self):
# we only want printable strings:
analysis = self.analyze_macros(show_decoded_strings=False)
# to avoid replacing short strings contained into longer strings, we sort the analysis results
# based on the length of the encoded string, in reverse order:
analysis = sorted(analysis, key=lambda type_decoded_encoded: len(type_decoded_encoded[2]), reverse=True)
# normally now self.vba_code_all_modules contains source code from all modules
deobf_code = self.vba_code_all_modules
for kw_type, decoded, encoded in analysis:
if kw_type == 'VBA string':
#print '%3d occurences: %r => %r' % (deobf_code.count(encoded), encoded, decoded)
# need to add double quotes around the decoded strings
# after escaping double-quotes as double-double-quotes for VBA:
decoded = decoded.replace('"', '""')
deobf_code = deobf_code.replace(encoded, '"%s"' % decoded)
return deobf_code
#TODO: repasser l'analyse plusieurs fois si des chaines hex ou base64 sont revelees
def find_vba_forms(self):
"""
Finds all the VBA forms stored in an OLE file.
Return None if the file is not OLE but OpenXML.
Return a list of tuples (vba_root, project_path, dir_path) for each VBA project.
vba_root is the path of the root OLE storage containing the VBA project,
including a trailing slash unless it is the root of the OLE file.
project_path is the path of the OLE stream named "PROJECT" within the VBA project.
dir_path is the path of the OLE stream named "VBA/dir" within the VBA project.
If this function returns an empty list for one of the supported formats
(i.e. Word, Excel, Powerpoint), then the file does not contain VBA forms.
:return: None if OpenXML file, list of tuples (vba_root, project_path, dir_path)
for each VBA project found if OLE file
"""
log.debug('VBA_Parser.find_vba_forms')
# if the file is not OLE but OpenXML, return None:
if self.ole_file is None and self.type != TYPE_PPT:
return None
# if this method has already been called, return previous result:
# if self.vba_projects is not None:
# return self.vba_projects
# According to MS-OFORMS section 2.1.2 Control Streams:
# - A parent control, that is, a control that can contain embedded controls,
# MUST be persisted as a storage that contains multiple streams.
# - All parent controls MUST contain a FormControl. The FormControl
# properties are persisted to a stream (1) as specified in section 2.1.1.2.
# The name of this stream (1) MUST be "f".
# - Embedded controls that cannot themselves contain other embedded
# controls are persisted sequentially as FormEmbeddedActiveXControls
# to a stream (1) contained in the same storage as the parent control.
# The name of this stream (1) MUST be "o".
# - all names are case-insensitive
if self.type == TYPE_PPT:
# TODO: so far, this function is never called for PPT files, but
# if that happens, the information is lost which ole file contains
# which storage!
ole_files = self.ole_subfiles
log.warning('Returned info is not complete for PPT types!')
else:
ole_files = [self.ole_file, ]
# start with an empty list:
self.vba_forms = []
# Loop over ole streams
for ole in ole_files:
# Look for any storage containing those storage/streams:
for storage in ole.listdir(streams=False, storages=True):
log.debug('Checking storage %r' % storage)
# Look for two streams named 'o' and 'f':
o_stream = storage + ['o']
f_stream = storage + ['f']
log.debug('Checking if streams %r and %r exist' % (f_stream, o_stream))
if ole.exists(o_stream) and ole.get_type(o_stream) == olefile.STGTY_STREAM \
and ole.exists(f_stream) and ole.get_type(f_stream) == olefile.STGTY_STREAM:
form_path = '/'.join(storage)
log.debug('Found VBA Form: %r' % form_path)
self.vba_forms.append(storage)
return self.vba_forms
def extract_form_strings(self):
"""
Extract printable strings from each VBA Form found in the file
Iterator: yields (filename, stream_path, vba_filename, vba_code) for each VBA macro found
If the file is OLE, filename is the path of the file.
If the file is OpenXML, filename is the path of the OLE subfile containing VBA macros
within the zip archive, e.g. word/vbaProject.bin.
If the file is PPT, result is as for OpenXML but filename is useless
"""
if self.ole_file is None:
# This may be either an OpenXML/PPT or a text file:
if self.type == TYPE_TEXT:
# This is a text file, return no results:
return
else:
# OpenXML/PPT: recursively yield results from each OLE subfile:
for ole_subfile in self.ole_subfiles:
for results in ole_subfile.extract_form_strings():
yield results
else:
# This is an OLE file:
self.find_vba_forms()
ole = self.ole_file
for form_storage in self.vba_forms:
o_stream = form_storage + ['o']
log.debug('Opening form object stream %r' % '/'.join(o_stream))
form_data = ole.openstream(o_stream).read()
# Extract printable strings from the form object stream "o":
for m in re_printable_string.finditer(form_data):
log.debug('Printable string found in form: %r' % m.group())
yield (self.filename, '/'.join(o_stream), m.group())
def close(self):
"""
Close all the open files. This method must be called after usage, if
the application is opening many files.
"""
if self.ole_file is None:
if self.ole_subfiles is not None:
for ole_subfile in self.ole_subfiles:
ole_subfile.close()
else:
self.ole_file.close()
class VBA_Parser_CLI(VBA_Parser):
"""
VBA parser and analyzer, adding methods for the command line interface
of olevba. (see VBA_Parser)
"""
def __init__(self, *args, **kwargs):
"""
Constructor for VBA_Parser_CLI.
Calls __init__ from VBA_Parser with all arguments --> see doc there
"""
super(VBA_Parser_CLI, self).__init__(*args, **kwargs)
def print_analysis(self, show_decoded_strings=False, deobfuscate=False):
"""
Analyze the provided VBA code, and print the results in a table
:param vba_code: str, VBA source code to be analyzed
:param show_decoded_strings: bool, if True hex-encoded strings will be displayed with their decoded content.
:param deobfuscate: bool, if True attempt to deobfuscate VBA expressions (slow)
:return: None
"""
# print a waiting message only if the output is not redirected to a file:
if sys.stdout.isatty():
print('Analysis...\r')
sys.stdout.flush()
results = self.analyze_macros(show_decoded_strings, deobfuscate)
if results:
t = prettytable.PrettyTable(('Type', 'Keyword', 'Description'))
t.align = 'l'
t.max_width['Type'] = 10
t.max_width['Keyword'] = 20
t.max_width['Description'] = 39
for kw_type, keyword, description in results:
# handle non printable strings:
if not is_printable(keyword):
keyword = repr(keyword)
if not is_printable(description):
description = repr(description)
t.add_row((kw_type, keyword, description))
print(t)
else:
print('No suspicious keyword or IOC found.')
def print_analysis_json(self, show_decoded_strings=False, deobfuscate=False):
"""
Analyze the provided VBA code, and return the results in json format
:param vba_code: str, VBA source code to be analyzed
:param show_decoded_strings: bool, if True hex-encoded strings will be displayed with their decoded content.
:param deobfuscate: bool, if True attempt to deobfuscate VBA expressions (slow)
:return: dict
"""
# print a waiting message only if the output is not redirected to a file:
if sys.stdout.isatty():
print('Analysis...\r')
sys.stdout.flush()
return [dict(type=kw_type, keyword=keyword, description=description)
for kw_type, keyword, description in self.analyze_macros(show_decoded_strings, deobfuscate)]
def process_file(self, show_decoded_strings=False,
display_code=True, hide_attributes=True,
vba_code_only=False, show_deobfuscated_code=False,
deobfuscate=False):
"""
Process a single file
:param filename: str, path and filename of file on disk, or within the container.
:param data: bytes, content of the file if it is in a container, None if it is a file on disk.
:param show_decoded_strings: bool, if True hex-encoded strings will be displayed with their decoded content.
:param display_code: bool, if False VBA source code is not displayed (default True)
:param global_analysis: bool, if True all modules are merged for a single analysis (default),
otherwise each module is analyzed separately (old behaviour)
:param hide_attributes: bool, if True the first lines starting with "Attribute VB" are hidden (default)
:param deobfuscate: bool, if True attempt to deobfuscate VBA expressions (slow)
"""
#TODO: replace print by writing to a provided output file (sys.stdout by default)
# fix conflicting parameters:
if vba_code_only and not display_code:
display_code = True
if self.container:
display_filename = '%s in %s' % (self.filename, self.container)
else:
display_filename = self.filename
print('=' * 79)
print('FILE:', display_filename)
try:
#TODO: handle olefile errors, when an OLE file is malformed
print('Type: %s' % self.type)
if self.detect_vba_macros():
#print 'Contains VBA Macros:'
for (subfilename, stream_path, vba_filename, vba_code) in self.extract_all_macros():
if hide_attributes:
# hide attribute lines:
if isinstance(vba_code,bytes):
vba_code =vba_code.decode('utf-8','replace')
vba_code_filtered = filter_vba(vba_code)
else:
vba_code_filtered = vba_code
print('-' * 79)
print('VBA MACRO %s ' % vba_filename)
print('in file: %s - OLE stream: %s' % (subfilename, repr(stream_path)))
if display_code:
print('- ' * 39)
# detect empty macros:
if vba_code_filtered.strip() == '':
print('(empty macro)')
else:
print(vba_code_filtered)
for (subfilename, stream_path, form_string) in self.extract_form_strings():
print('-' * 79)
print('VBA FORM STRING IN %r - OLE stream: %r' % (subfilename, stream_path))
print('- ' * 39)
print(form_string.decode('utf-8', 'ignore'))
if not vba_code_only:
# analyse the code from all modules at once:
self.print_analysis(show_decoded_strings, deobfuscate)
if show_deobfuscated_code:
print('MACRO SOURCE CODE WITH DEOBFUSCATED VBA STRINGS (EXPERIMENTAL):\n\n')
print(self.reveal())
else:
print('No VBA macros found.')
except OlevbaBaseException:
raise
except Exception as exc:
# display the exception with full stack trace for debugging
log.info('Error processing file %s (%s)' % (self.filename, exc))
log.debug('Traceback:', exc_info=True)
raise ProcessingError(self.filename, exc)
print('')
def process_file_json(self, show_decoded_strings=False,
display_code=True, hide_attributes=True,
vba_code_only=False, show_deobfuscated_code=False,
deobfuscate=False):
"""
Process a single file
every "show" or "print" here is to be translated as "add to json"
:param filename: str, path and filename of file on disk, or within the container.
:param data: bytes, content of the file if it is in a container, None if it is a file on disk.
:param show_decoded_strings: bool, if True hex-encoded strings will be displayed with their decoded content.
:param display_code: bool, if False VBA source code is not displayed (default True)
:param global_analysis: bool, if True all modules are merged for a single analysis (default),
otherwise each module is analyzed separately (old behaviour)
:param hide_attributes: bool, if True the first lines starting with "Attribute VB" are hidden (default)
:param deobfuscate: bool, if True attempt to deobfuscate VBA expressions (slow)
"""
#TODO: fix conflicting parameters (?)
if vba_code_only and not display_code:
display_code = True
result = {}
if self.container:
result['container'] = self.container
else:
result['container'] = None
result['file'] = self.filename
result['json_conversion_successful'] = False
result['analysis'] = None
result['code_deobfuscated'] = None
result['do_deobfuscate'] = deobfuscate
try:
#TODO: handle olefile errors, when an OLE file is malformed
result['type'] = self.type
macros = []
if self.detect_vba_macros():
for (subfilename, stream_path, vba_filename, vba_code) in self.extract_all_macros():
curr_macro = {}
if hide_attributes:
# hide attribute lines:
vba_code_filtered = filter_vba(vba_code.decode('utf-8','replace'))
else:
vba_code_filtered = vba_code
curr_macro['vba_filename'] = vba_filename
curr_macro['subfilename'] = subfilename
curr_macro['ole_stream'] = stream_path
if display_code:
curr_macro['code'] = vba_code_filtered.strip()
else:
curr_macro['code'] = None
macros.append(curr_macro)
if not vba_code_only:
# analyse the code from all modules at once:
result['analysis'] = self.print_analysis_json(show_decoded_strings,
deobfuscate)
if show_deobfuscated_code:
result['code_deobfuscated'] = self.reveal()
result['macros'] = macros
result['json_conversion_successful'] = True
except Exception as exc:
# display the exception with full stack trace for debugging
log.info('Error processing file %s (%s)' % (self.filename, exc))
log.debug('Traceback:', exc_info=True)
raise ProcessingError(self.filename, exc)
return result
def process_file_triage(self, show_decoded_strings=False, deobfuscate=False):
"""
Process a file in triage mode, showing only summary results on one line.
"""
#TODO: replace print by writing to a provided output file (sys.stdout by default)
try:
#TODO: handle olefile errors, when an OLE file is malformed
if self.detect_vba_macros():
# print a waiting message only if the output is not redirected to a file:
if sys.stdout.isatty():
print('Analysis...\r')
sys.stdout.flush()
self.analyze_macros(show_decoded_strings=show_decoded_strings,
deobfuscate=deobfuscate)
flags = TYPE2TAG[self.type]
macros = autoexec = suspicious = iocs = hexstrings = base64obf = dridex = vba_obf = '-'
if self.contains_macros: macros = 'M'
if self.nb_autoexec: autoexec = 'A'
if self.nb_suspicious: suspicious = 'S'
if self.nb_iocs: iocs = 'I'
if self.nb_hexstrings: hexstrings = 'H'
if self.nb_base64strings: base64obf = 'B'
if self.nb_dridexstrings: dridex = 'D'
if self.nb_vbastrings: vba_obf = 'V'
flags += '%s%s%s%s%s%s%s%s' % (macros, autoexec, suspicious, iocs, hexstrings,
base64obf, dridex, vba_obf)
line = '%-12s %s' % (flags, self.filename)
print(line)
# old table display:
# macros = autoexec = suspicious = iocs = hexstrings = 'no'
# if nb_macros: macros = 'YES:%d' % nb_macros
# if nb_autoexec: autoexec = 'YES:%d' % nb_autoexec
# if nb_suspicious: suspicious = 'YES:%d' % nb_suspicious
# if nb_iocs: iocs = 'YES:%d' % nb_iocs
# if nb_hexstrings: hexstrings = 'YES:%d' % nb_hexstrings
# # 2nd line = info
# print '%-8s %-7s %-7s %-7s %-7s %-7s' % (self.type, macros, autoexec, suspicious, iocs, hexstrings)
except Exception as exc:
# display the exception with full stack trace for debugging only
log.debug('Error processing file %s (%s)' % (self.filename, exc),
exc_info=True)
raise ProcessingError(self.filename, exc)
# t = prettytable.PrettyTable(('filename', 'type', 'macros', 'autoexec', 'suspicious', 'ioc', 'hexstrings'),
# header=False, border=False)
# t.align = 'l'
# t.max_width['filename'] = 30
# t.max_width['type'] = 10
# t.max_width['macros'] = 6
# t.max_width['autoexec'] = 6
# t.max_width['suspicious'] = 6
# t.max_width['ioc'] = 6
# t.max_width['hexstrings'] = 6
# t.add_row((filename, ftype, macros, autoexec, suspicious, iocs, hexstrings))
# print t
#=== MAIN =====================================================================
def main():
"""
Main function, called when olevba is run from the command line
"""
DEFAULT_LOG_LEVEL = "warning" # Default log level
LOG_LEVELS = {
'debug': logging.DEBUG,
'info': logging.INFO,
'warning': logging.WARNING,
'error': logging.ERROR,
'critical': logging.CRITICAL
}
usage = 'usage: %prog [options] <filename> [filename2 ...]'
parser = optparse.OptionParser(usage=usage)
# parser.add_option('-o', '--outfile', dest='outfile',
# help='output file')
# parser.add_option('-c', '--csv', dest='csv',
# help='export results to a CSV file')
parser.add_option("-r", action="store_true", dest="recursive",
help='find files recursively in subdirectories.')
parser.add_option("-z", "--zip", dest='zip_password', type='str', default=None,
help='if the file is a zip archive, open all files from it, using the provided password (requires Python 2.6+)')
parser.add_option("-f", "--zipfname", dest='zip_fname', type='str', default='*',
help='if the file is a zip archive, file(s) to be opened within the zip. Wildcards * and ? are supported. (default:*)')
# output mode; could make this even simpler with add_option(type='choice') but that would make
# cmd line interface incompatible...
modes = optparse.OptionGroup(parser, title='Output mode (mutually exclusive)')
modes.add_option("-t", '--triage', action="store_const", dest="output_mode",
const='triage', default='unspecified',
help='triage mode, display results as a summary table (default for multiple files)')
modes.add_option("-d", '--detailed', action="store_const", dest="output_mode",
const='detailed', default='unspecified',
help='detailed mode, display full results (default for single file)')
modes.add_option("-j", '--json', action="store_const", dest="output_mode",
const='json', default='unspecified',
help='json mode, detailed in json format (never default)')
parser.add_option_group(modes)
parser.add_option("-a", '--analysis', action="store_false", dest="display_code", default=True,
help='display only analysis results, not the macro source code')
parser.add_option("-c", '--code', action="store_true", dest="vba_code_only", default=False,
help='display only VBA source code, do not analyze it')
parser.add_option("--decode", action="store_true", dest="show_decoded_strings",
help='display all the obfuscated strings with their decoded content (Hex, Base64, StrReverse, Dridex, VBA).')
parser.add_option("--attr", action="store_false", dest="hide_attributes", default=True,
help='display the attribute lines at the beginning of VBA source code')
parser.add_option("--reveal", action="store_true", dest="show_deobfuscated_code",
help='display the macro source code after replacing all the obfuscated strings by their decoded content.')
parser.add_option('-l', '--loglevel', dest="loglevel", action="store", default=DEFAULT_LOG_LEVEL,
help="logging level debug/info/warning/error/critical (default=%default)")
parser.add_option('--deobf', dest="deobfuscate", action="store_true", default=False,
help="Attempt to deobfuscate VBA expressions (slow)")
parser.add_option('--relaxed', dest="relaxed", action="store_true", default=False,
help="Do not raise errors if opening of substream fails")
(options, args) = parser.parse_args()
# Print help if no arguments are passed
if len(args) == 0:
print(__doc__)
parser.print_help()
sys.exit(RETURN_WRONG_ARGS)
# provide info about tool and its version
if options.output_mode == 'json':
# prints opening [
print_json(script_name='olevba', version=__version__,
url='http://decalage.info/python/oletools',
type='MetaInformation')
else:
print('olevba %s - http://decalage.info/python/oletools' % __version__)
logging.basicConfig(level=LOG_LEVELS[options.loglevel], format='%(levelname)-8s %(message)s')
# enable logging in the modules:
log.setLevel(logging.NOTSET)
# Old display with number of items detected:
# print '%-8s %-7s %-7s %-7s %-7s %-7s' % ('Type', 'Macros', 'AutoEx', 'Susp.', 'IOCs', 'HexStr')
# print '%-8s %-7s %-7s %-7s %-7s %-7s' % ('-'*8, '-'*7, '-'*7, '-'*7, '-'*7, '-'*7)
# with the option --reveal, make sure --deobf is also enabled:
if options.show_deobfuscated_code and not options.deobfuscate:
log.info('set --deobf because --reveal was set')
options.deobfuscate = True
if options.output_mode == 'triage' and options.show_deobfuscated_code:
log.info('ignoring option --reveal in triage output mode')
# Column headers (do not know how many files there will be yet, so if no output_mode
# was specified, we will print triage for first file --> need these headers)
if options.output_mode in ('triage', 'unspecified'):
print('%-12s %-65s' % ('Flags', 'Filename'))
print('%-12s %-65s' % ('-' * 11, '-' * 65))
previous_container = None
count = 0
container = filename = data = None
vba_parser = None
return_code = RETURN_OK
try:
for container, filename, data in xglob.iter_files(args, recursive=options.recursive,
zip_password=options.zip_password, zip_fname=options.zip_fname):
# ignore directory names stored in zip files:
if container and filename.endswith('/'):
continue
# handle errors from xglob
if isinstance(data, Exception):
if isinstance(data, PathNotFoundException):
if options.output_mode in ('triage', 'unspecified'):
print('%-12s %s - File not found' % ('?', filename))
elif options.output_mode != 'json':
log.error('Given path %r does not exist!' % filename)
return_code = RETURN_FILE_NOT_FOUND if return_code == 0 \
else RETURN_SEVERAL_ERRS
else:
if options.output_mode in ('triage', 'unspecified'):
print('%-12s %s - Failed to read from zip file %s' % ('?', filename, container))
elif options.output_mode != 'json':
log.error('Exception opening/reading %r from zip file %r: %s'
% (filename, container, data))
return_code = RETURN_XGLOB_ERR if return_code == 0 \
else RETURN_SEVERAL_ERRS
if options.output_mode == 'json':
print_json(file=filename, type='error',
error=type(data).__name__, message=str(data))
continue
try:
# Open the file
vba_parser = VBA_Parser_CLI(filename, data=data, container=container,
relaxed=options.relaxed)
if options.output_mode == 'detailed':
# fully detailed output
vba_parser.process_file(show_decoded_strings=options.show_decoded_strings,
display_code=options.display_code,
hide_attributes=options.hide_attributes, vba_code_only=options.vba_code_only,
show_deobfuscated_code=options.show_deobfuscated_code,
deobfuscate=options.deobfuscate)
elif options.output_mode in ('triage', 'unspecified'):
# print container name when it changes:
if container != previous_container:
if container is not None:
print('\nFiles in %s:' % container)
previous_container = container
# summarized output for triage:
vba_parser.process_file_triage(show_decoded_strings=options.show_decoded_strings,
deobfuscate=options.deobfuscate)
elif options.output_mode == 'json':
print_json(
vba_parser.process_file_json(show_decoded_strings=options.show_decoded_strings,
display_code=options.display_code,
hide_attributes=options.hide_attributes, vba_code_only=options.vba_code_only,
show_deobfuscated_code=options.show_deobfuscated_code,
deobfuscate=options.deobfuscate))
else: # (should be impossible)
raise ValueError('unexpected output mode: "{0}"!'.format(options.output_mode))
count += 1
except (SubstreamOpenError, UnexpectedDataError) as exc:
if options.output_mode in ('triage', 'unspecified'):
print('%-12s %s - Error opening substream or uenxpected ' \
'content' % ('?', filename))
elif options.output_mode == 'json':
print_json(file=filename, type='error',
error=type(exc).__name__, message=str(exc))
else:
log.exception('Error opening substream or unexpected '
'content in %s' % filename)
return_code = RETURN_OPEN_ERROR if return_code == 0 \
else RETURN_SEVERAL_ERRS
except FileOpenError as exc:
if options.output_mode in ('triage', 'unspecified'):
print('%-12s %s - File format not supported' % ('?', filename))
elif options.output_mode == 'json':
print_json(file=filename, type='error',
error=type(exc).__name__, message=str(exc))
else:
log.exception('Failed to open %s -- probably not supported!' % filename)
return_code = RETURN_OPEN_ERROR if return_code == 0 \
else RETURN_SEVERAL_ERRS
except ProcessingError as exc:
if options.output_mode in ('triage', 'unspecified'):
print('%-12s %s - %s' % ('!ERROR', filename, exc.orig_exc))
elif options.output_mode == 'json':
print_json(file=filename, type='error',
error=type(exc).__name__,
message=str(exc.orig_exc))
else:
log.exception('Error processing file %s (%s)!'
% (filename, exc.orig_exc))
return_code = RETURN_PARSE_ERROR if return_code == 0 \
else RETURN_SEVERAL_ERRS
finally:
if vba_parser is not None:
vba_parser.close()
if options.output_mode == 'triage':
print('\n(Flags: OpX=OpenXML, XML=Word2003XML, MHT=MHTML, TXT=Text, M=Macros, ' \
'A=Auto-executable, S=Suspicious keywords, I=IOCs, H=Hex strings, ' \
'B=Base64 strings, D=Dridex strings, V=VBA strings, ?=Unknown)\n')
if count == 1 and options.output_mode == 'unspecified':
# if options -t, -d and -j were not specified and it's a single file, print details:
vba_parser.process_file(show_decoded_strings=options.show_decoded_strings,
display_code=options.display_code,
hide_attributes=options.hide_attributes, vba_code_only=options.vba_code_only,
show_deobfuscated_code=options.show_deobfuscated_code,
deobfuscate=options.deobfuscate)
if options.output_mode == 'json':
# print last json entry (a last one without a comma) and closing ]
print_json(type='MetaInformation', return_code=return_code,
n_processed=count, _json_is_last=True)
except Exception as exc:
# some unexpected error, maybe some of the types caught in except clauses
# above were not sufficient. This is very bad, so log complete trace at exception level
# and do not care about output mode
log.exception('Unhandled exception in main: %s' % exc, exc_info=True)
return_code = RETURN_UNEXPECTED # even if there were others before -- this is more important
# TODO: print msg with URL to report issues (except in JSON mode)
# done. exit
log.debug('will exit now with code %s' % return_code)
sys.exit(return_code)
if __name__ == '__main__':
main()
# This was coded while listening to "Dust" from I Love You But I've Chosen Darkness