forked from JonathanSalwan/Tigress_protection
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcollberg-0001-2.data
2795 lines (2795 loc) · 96.4 KB
/
collberg-0001-2.data
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
[+] Loading 0x000040 - 0x000238
[+] Loading 0x000238 - 0x000254
[+] Loading 0x000000 - 0x004838
[+] Loading 0x204dd8 - 0x205f88
[+] Loading 0x204df0 - 0x204fd0
[+] Loading 0x000254 - 0x000274
[+] Loading 0x004678 - 0x0046cc
[+] Loading 0x000000 - 0x000000
[+] Loading 0x204dd8 - 0x205000
[+] Hooking printf
[+] Hooking malloc
[+] Hooking strtoul
[+] Hooking __libc_start_main
[+] Starting emulation.
[+] __libc_start_main hooked
[+] argv[0] = build/virtualization/anti-branch-analysis/branchFuns/sample19-virt-anti-branch-analysis-branchFuns
[+] argv[1] = 1234
[+] strtoul hooked
[+] Symbolizing the strtoul return
[+] malloc hooked
[+] malloc hooked
[+] malloc hooked
[+] malloc hooked
[+] malloc hooked
[+] malloc hooked
[+] malloc hooked
[+] malloc hooked
[+] printf hooked
18446744072806803045
[+] Slicing end-point user expression
[-] Instruction not supported: 0x13ba: hlt
[+] Instruction executed: 72976
[+] Unique instruction executed: 1910
[+] PC len: 1
[+] Emulation done.
[+] Generating symbolic_expressions/sample19-virt-anti-branch-analysis-branchFuns.py
[+] Converting symbolic expressions to an LLVM module...
[+] LLVM module wrote in llvm_expressions/sample19-virt-anti-branch-analysis-branchFuns.ll
[+] Recompiling deobfuscated binary...
[+] Deobfuscated binary recompiled: deobfuscated_binaries/sample19-virt-anti-branch-analysis-branchFuns.deobfuscated
--------------------------------------------------------------------
-> sample19-virt-anti-branch-analysis-branchFuns
Instructions executed: 72976
Unique Instructions executed: 1910
Functions simulated: 11
Time of analysis: 6.037034 seconds
Command being timed: "./solve-vm.py build/virtualization/anti-branch-analysis/branchFuns/sample19-virt-anti-branch-analysis-branchFuns"
User time (seconds): 6.52
System time (seconds): 0.06
Percent of CPU this job got: 99%
Elapsed (wall clock) time (h:mm:ss or m:ss): 0:06.60
Average shared text size (kbytes): 0
Average unshared data size (kbytes): 0
Average stack size (kbytes): 0
Average total size (kbytes): 0
Maximum resident set size (kbytes): 108236
Average resident set size (kbytes): 0
Major (requiring I/O) page faults: 0
Minor (reclaiming a frame) page faults: 46386
Voluntary context switches: 62
Involuntary context switches: 80
Swaps: 0
File system inputs: 64
File system outputs: 128
Socket messages sent: 0
Socket messages received: 0
Signals delivered: 0
Page size (bytes): 4096
Exit status: 0
[+] Loading 0x000040 - 0x000238
[+] Loading 0x000238 - 0x000254
[+] Loading 0x000000 - 0x004a18
[+] Loading 0x204dd8 - 0x205a28
[+] Loading 0x204df0 - 0x204fd0
[+] Loading 0x000254 - 0x000274
[+] Loading 0x004880 - 0x0048cc
[+] Loading 0x000000 - 0x000000
[+] Loading 0x204dd8 - 0x205000
[+] Hooking printf
[+] Hooking malloc
[+] Hooking strtoul
[+] Hooking __libc_start_main
[+] Starting emulation.
[+] __libc_start_main hooked
[+] argv[0] = build/virtualization/max-merge-length/10/sample19-virt-max-merge-lenght-10
[+] argv[1] = 1234
[+] strtoul hooked
[+] Symbolizing the strtoul return
[+] malloc hooked
[+] printf hooked
18446744072806803045
[+] Slicing end-point user expression
[-] Instruction not supported: 0xada: hlt
[+] Instruction executed: 8630
[+] Unique instruction executed: 3073
[+] PC len: 1
[+] Emulation done.
[+] Generating symbolic_expressions/sample19-virt-max-merge-lenght-10.py
[+] Converting symbolic expressions to an LLVM module...
[+] LLVM module wrote in llvm_expressions/sample19-virt-max-merge-lenght-10.ll
[+] Recompiling deobfuscated binary...
[+] Deobfuscated binary recompiled: deobfuscated_binaries/sample19-virt-max-merge-lenght-10.deobfuscated
--------------------------------------------------------------------
-> sample19-virt-max-merge-lenght-10
Instructions executed: 8630
Unique Instructions executed: 3073
Functions simulated: 4
Time of analysis: 0.769753 seconds
Command being timed: "./solve-vm.py build/virtualization/max-merge-length/10/sample19-virt-max-merge-lenght-10"
User time (seconds): 1.25
System time (seconds): 0.05
Percent of CPU this job got: 98%
Elapsed (wall clock) time (h:mm:ss or m:ss): 0:01.32
Average shared text size (kbytes): 0
Average unshared data size (kbytes): 0
Average stack size (kbytes): 0
Average total size (kbytes): 0
Maximum resident set size (kbytes): 93312
Average resident set size (kbytes): 0
Major (requiring I/O) page faults: 0
Minor (reclaiming a frame) page faults: 39135
Voluntary context switches: 47
Involuntary context switches: 29
Swaps: 0
File system inputs: 64
File system outputs: 112
Socket messages sent: 0
Socket messages received: 0
Signals delivered: 0
Page size (bytes): 4096
Exit status: 0
[+] Loading 0x000040 - 0x000238
[+] Loading 0x000238 - 0x000254
[+] Loading 0x000000 - 0x005ee8
[+] Loading 0x206dd8 - 0x2079f0
[+] Loading 0x206df0 - 0x206fd0
[+] Loading 0x000254 - 0x000274
[+] Loading 0x005d54 - 0x005da0
[+] Loading 0x000000 - 0x000000
[+] Loading 0x206dd8 - 0x207000
[+] Hooking printf
[+] Hooking malloc
[+] Hooking strtoul
[+] Hooking __libc_start_main
[+] Starting emulation.
[+] __libc_start_main hooked
[+] argv[0] = build/virtualization/max-merge-length/20/sample19-virt-max-merge-lenght-20
[+] argv[1] = 1234
[+] strtoul hooked
[+] Symbolizing the strtoul return
[+] malloc hooked
[+] printf hooked
18446744072806803045
[+] Slicing end-point user expression
[-] Instruction not supported: 0xada: hlt
[+] Instruction executed: 7458
[+] Unique instruction executed: 4262
[+] PC len: 1
[+] Emulation done.
[+] Generating symbolic_expressions/sample19-virt-max-merge-lenght-20.py
[+] Converting symbolic expressions to an LLVM module...
[+] LLVM module wrote in llvm_expressions/sample19-virt-max-merge-lenght-20.ll
[+] Recompiling deobfuscated binary...
[+] Deobfuscated binary recompiled: deobfuscated_binaries/sample19-virt-max-merge-lenght-20.deobfuscated
--------------------------------------------------------------------
-> sample19-virt-max-merge-lenght-20
Instructions executed: 7458
Unique Instructions executed: 4262
Functions simulated: 4
Time of analysis: 0.675019 seconds
Command being timed: "./solve-vm.py build/virtualization/max-merge-length/20/sample19-virt-max-merge-lenght-20"
User time (seconds): 1.14
System time (seconds): 0.06
Percent of CPU this job got: 98%
Elapsed (wall clock) time (h:mm:ss or m:ss): 0:01.22
Average shared text size (kbytes): 0
Average unshared data size (kbytes): 0
Average stack size (kbytes): 0
Average total size (kbytes): 0
Maximum resident set size (kbytes): 93016
Average resident set size (kbytes): 0
Major (requiring I/O) page faults: 0
Minor (reclaiming a frame) page faults: 39162
Voluntary context switches: 64
Involuntary context switches: 40
Swaps: 0
File system inputs: 80
File system outputs: 112
Socket messages sent: 0
Socket messages received: 0
Signals delivered: 0
Page size (bytes): 4096
Exit status: 0
[+] Loading 0x000040 - 0x000238
[+] Loading 0x000238 - 0x000254
[+] Loading 0x000000 - 0x002428
[+] Loading 0x202dd8 - 0x203ca0
[+] Loading 0x202df0 - 0x202fd0
[+] Loading 0x000254 - 0x000274
[+] Loading 0x002294 - 0x0022e0
[+] Loading 0x000000 - 0x000000
[+] Loading 0x202dd8 - 0x203000
[+] Hooking printf
[+] Hooking malloc
[+] Hooking strtoul
[+] Hooking __libc_start_main
[+] Starting emulation.
[+] __libc_start_main hooked
[+] argv[0] = build/virtualization/max-merge-length/0/sample19-virt-max-merge-lenght-0
[+] argv[1] = 1234
[+] strtoul hooked
[+] Symbolizing the strtoul return
[+] malloc hooked
[+] printf hooked
18446744072806803045
[+] Slicing end-point user expression
[-] Instruction not supported: 0xada: hlt
[+] Instruction executed: 20935
[+] Unique instruction executed: 996
[+] PC len: 1
[+] Emulation done.
[+] Generating symbolic_expressions/sample19-virt-max-merge-lenght-0.py
[+] Converting symbolic expressions to an LLVM module...
[+] LLVM module wrote in llvm_expressions/sample19-virt-max-merge-lenght-0.ll
[+] Recompiling deobfuscated binary...
[+] Deobfuscated binary recompiled: deobfuscated_binaries/sample19-virt-max-merge-lenght-0.deobfuscated
--------------------------------------------------------------------
-> sample19-virt-max-merge-lenght-0
Instructions executed: 20935
Unique Instructions executed: 996
Functions simulated: 4
Time of analysis: 1.652051 seconds
Command being timed: "./solve-vm.py build/virtualization/max-merge-length/0/sample19-virt-max-merge-lenght-0"
User time (seconds): 2.12
System time (seconds): 0.06
Percent of CPU this job got: 99%
Elapsed (wall clock) time (h:mm:ss or m:ss): 0:02.20
Average shared text size (kbytes): 0
Average unshared data size (kbytes): 0
Average stack size (kbytes): 0
Average total size (kbytes): 0
Maximum resident set size (kbytes): 96236
Average resident set size (kbytes): 0
Major (requiring I/O) page faults: 0
Minor (reclaiming a frame) page faults: 40652
Voluntary context switches: 56
Involuntary context switches: 39
Swaps: 0
File system inputs: 48
File system outputs: 120
Socket messages sent: 0
Socket messages received: 0
Signals delivered: 0
Page size (bytes): 4096
Exit status: 0
[+] Loading 0x000040 - 0x000238
[+] Loading 0x000238 - 0x000254
[+] Loading 0x000000 - 0x006ca8
[+] Loading 0x206dd8 - 0x2079e0
[+] Loading 0x206df0 - 0x206fd0
[+] Loading 0x000254 - 0x000274
[+] Loading 0x006b14 - 0x006b60
[+] Loading 0x000000 - 0x000000
[+] Loading 0x206dd8 - 0x207000
[+] Hooking printf
[+] Hooking malloc
[+] Hooking strtoul
[+] Hooking __libc_start_main
[+] Starting emulation.
[+] __libc_start_main hooked
[+] argv[0] = build/virtualization/max-merge-length/30/sample19-virt-max-merge-lenght-30
[+] argv[1] = 1234
[+] strtoul hooked
[+] Symbolizing the strtoul return
[+] malloc hooked
[+] printf hooked
18446744072806803045
[+] Slicing end-point user expression
[-] Instruction not supported: 0xada: hlt
[+] Instruction executed: 7099
[+] Unique instruction executed: 5043
[+] PC len: 1
[+] Emulation done.
[+] Generating symbolic_expressions/sample19-virt-max-merge-lenght-30.py
[+] Converting symbolic expressions to an LLVM module...
[+] LLVM module wrote in llvm_expressions/sample19-virt-max-merge-lenght-30.ll
[+] Recompiling deobfuscated binary...
[+] Deobfuscated binary recompiled: deobfuscated_binaries/sample19-virt-max-merge-lenght-30.deobfuscated
--------------------------------------------------------------------
-> sample19-virt-max-merge-lenght-30
Instructions executed: 7099
Unique Instructions executed: 5043
Functions simulated: 4
Time of analysis: 0.656153 seconds
Command being timed: "./solve-vm.py build/virtualization/max-merge-length/30/sample19-virt-max-merge-lenght-30"
User time (seconds): 1.13
System time (seconds): 0.05
Percent of CPU this job got: 98%
Elapsed (wall clock) time (h:mm:ss or m:ss): 0:01.20
Average shared text size (kbytes): 0
Average unshared data size (kbytes): 0
Average stack size (kbytes): 0
Average total size (kbytes): 0
Maximum resident set size (kbytes): 93624
Average resident set size (kbytes): 0
Major (requiring I/O) page faults: 0
Minor (reclaiming a frame) page faults: 39277
Voluntary context switches: 45
Involuntary context switches: 37
Swaps: 0
File system inputs: 80
File system outputs: 112
Socket messages sent: 0
Socket messages received: 0
Signals delivered: 0
Page size (bytes): 4096
Exit status: 0
[+] Loading 0x000040 - 0x000238
[+] Loading 0x000238 - 0x000254
[+] Loading 0x000000 - 0x003308
[+] Loading 0x203dd8 - 0x2058f0
[+] Loading 0x203df0 - 0x203fd0
[+] Loading 0x000254 - 0x000274
[+] Loading 0x003168 - 0x0031b4
[+] Loading 0x000000 - 0x000000
[+] Loading 0x203dd8 - 0x204000
[+] Hooking printf
[+] Hooking fprintf
[+] Hooking malloc
[+] Hooking fopen
[+] Hooking strtoul
[+] Hooking __libc_start_main
[+] Starting emulation.
[+] __libc_start_main hooked
[+] argv[0] = build/virtualization/bogus-functions/1/sample19-virt-bogus-functions-1
[+] argv[1] = 1234
[+] strtoul hooked
[+] Symbolizing the strtoul return
[+] malloc hooked
[+] fopen hooked
[+] fprintf hooked
[+] fprintf hooked
[+] fprintf hooked
[+] fprintf hooked
[+] fprintf hooked
[+] fprintf hooked
[+] printf hooked
18446744072806803045
[+] Slicing end-point user expression
[-] Instruction not supported: 0xbaa: hlt
[+] Instruction executed: 64483
[+] Unique instruction executed: 1800
[+] PC len: 1
[+] Emulation done.
[+] Generating symbolic_expressions/sample19-virt-bogus-functions-1.py
[+] Converting symbolic expressions to an LLVM module...
[+] LLVM module wrote in llvm_expressions/sample19-virt-bogus-functions-1.ll
[+] Recompiling deobfuscated binary...
[+] Deobfuscated binary recompiled: deobfuscated_binaries/sample19-virt-bogus-functions-1.deobfuscated
--------------------------------------------------------------------
-> sample19-virt-bogus-functions-1
Instructions executed: 64483
Unique Instructions executed: 1800
Functions simulated: 11
Time of analysis: 4.859348 seconds
Command being timed: "./solve-vm.py build/virtualization/bogus-functions/1/sample19-virt-bogus-functions-1"
User time (seconds): 5.31
System time (seconds): 0.10
Percent of CPU this job got: 99%
Elapsed (wall clock) time (h:mm:ss or m:ss): 0:05.43
Average shared text size (kbytes): 0
Average unshared data size (kbytes): 0
Average stack size (kbytes): 0
Average total size (kbytes): 0
Maximum resident set size (kbytes): 124100
Average resident set size (kbytes): 0
Major (requiring I/O) page faults: 0
Minor (reclaiming a frame) page faults: 55654
Voluntary context switches: 64
Involuntary context switches: 49
Swaps: 0
File system inputs: 64
File system outputs: 128
Socket messages sent: 0
Socket messages received: 0
Signals delivered: 0
Page size (bytes): 4096
Exit status: 0
[+] Loading 0x000040 - 0x000238
[+] Loading 0x000238 - 0x000254
[+] Loading 0x000000 - 0x003560
[+] Loading 0x203dd8 - 0x206528
[+] Loading 0x203df0 - 0x203fd0
[+] Loading 0x000254 - 0x000274
[+] Loading 0x0033c4 - 0x003410
[+] Loading 0x000000 - 0x000000
[+] Loading 0x203dd8 - 0x204000
[+] Hooking printf
[+] Hooking fprintf
[+] Hooking malloc
[+] Hooking fopen
[+] Hooking strtoul
[+] Hooking __libc_start_main
[+] Starting emulation.
[+] __libc_start_main hooked
[+] argv[0] = build/virtualization/bogus-functions/2/sample19-virt-bogus-functions-2
[+] argv[1] = 1234
[+] strtoul hooked
[+] Symbolizing the strtoul return
[+] malloc hooked
[+] fopen hooked
[+] fopen hooked
[+] fprintf hooked
[+] fprintf hooked
[+] fprintf hooked
[+] fprintf hooked
[+] fprintf hooked
[+] fprintf hooked
[+] fprintf hooked
[+] fprintf hooked
[+] fprintf hooked
[+] fprintf hooked
[+] fprintf hooked
[+] fprintf hooked
[+] fprintf hooked
[+] fprintf hooked
[+] fprintf hooked
[+] fprintf hooked
[+] fprintf hooked
[+] fprintf hooked
[+] fprintf hooked
[+] fprintf hooked
[+] fprintf hooked
[+] fprintf hooked
[+] fprintf hooked
[+] fprintf hooked
[+] fprintf hooked
[+] fprintf hooked
[+] fprintf hooked
[+] fprintf hooked
[+] fprintf hooked
[+] fprintf hooked
[+] fprintf hooked
[+] printf hooked
18446744072806803045
[+] Slicing end-point user expression
[-] Instruction not supported: 0xbaa: hlt
[+] Instruction executed: 90344
[+] Unique instruction executed: 1926
[+] PC len: 1
[+] Emulation done.
[+] Generating symbolic_expressions/sample19-virt-bogus-functions-2.py
[+] Converting symbolic expressions to an LLVM module...
[+] LLVM module wrote in llvm_expressions/sample19-virt-bogus-functions-2.ll
[+] Recompiling deobfuscated binary...
[+] Deobfuscated binary recompiled: deobfuscated_binaries/sample19-virt-bogus-functions-2.deobfuscated
--------------------------------------------------------------------
-> sample19-virt-bogus-functions-2
Instructions executed: 90344
Unique Instructions executed: 1926
Functions simulated: 37
Time of analysis: 6.20241 seconds
Command being timed: "./solve-vm.py build/virtualization/bogus-functions/2/sample19-virt-bogus-functions-2"
User time (seconds): 6.70
System time (seconds): 0.05
Percent of CPU this job got: 99%
Elapsed (wall clock) time (h:mm:ss or m:ss): 0:06.77
Average shared text size (kbytes): 0
Average unshared data size (kbytes): 0
Average stack size (kbytes): 0
Average total size (kbytes): 0
Maximum resident set size (kbytes): 125204
Average resident set size (kbytes): 0
Major (requiring I/O) page faults: 0
Minor (reclaiming a frame) page faults: 56053
Voluntary context switches: 56
Involuntary context switches: 64
Swaps: 0
File system inputs: 72
File system outputs: 120
Socket messages sent: 0
Socket messages received: 0
Signals delivered: 0
Page size (bytes): 4096
Exit status: 0
[+] Loading 0x000040 - 0x000238
[+] Loading 0x000238 - 0x000254
[+] Loading 0x000000 - 0x002428
[+] Loading 0x202dd8 - 0x203ca0
[+] Loading 0x202df0 - 0x202fd0
[+] Loading 0x000254 - 0x000274
[+] Loading 0x002294 - 0x0022e0
[+] Loading 0x000000 - 0x000000
[+] Loading 0x202dd8 - 0x203000
[+] Hooking printf
[+] Hooking malloc
[+] Hooking strtoul
[+] Hooking __libc_start_main
[+] Starting emulation.
[+] __libc_start_main hooked
[+] argv[0] = build/virtualization/bogus-functions/0/sample19-virt-bogus-functions-0
[+] argv[1] = 1234
[+] strtoul hooked
[+] Symbolizing the strtoul return
[+] malloc hooked
[+] printf hooked
18446744072806803045
[+] Slicing end-point user expression
[-] Instruction not supported: 0xada: hlt
[+] Instruction executed: 20935
[+] Unique instruction executed: 996
[+] PC len: 1
[+] Emulation done.
[+] Generating symbolic_expressions/sample19-virt-bogus-functions-0.py
[+] Converting symbolic expressions to an LLVM module...
[+] LLVM module wrote in llvm_expressions/sample19-virt-bogus-functions-0.ll
[+] Recompiling deobfuscated binary...
[+] Deobfuscated binary recompiled: deobfuscated_binaries/sample19-virt-bogus-functions-0.deobfuscated
--------------------------------------------------------------------
-> sample19-virt-bogus-functions-0
Instructions executed: 20935
Unique Instructions executed: 996
Functions simulated: 4
Time of analysis: 1.659423 seconds
Command being timed: "./solve-vm.py build/virtualization/bogus-functions/0/sample19-virt-bogus-functions-0"
User time (seconds): 2.12
System time (seconds): 0.08
Percent of CPU this job got: 99%
Elapsed (wall clock) time (h:mm:ss or m:ss): 0:02.23
Average shared text size (kbytes): 0
Average unshared data size (kbytes): 0
Average stack size (kbytes): 0
Average total size (kbytes): 0
Maximum resident set size (kbytes): 96556
Average resident set size (kbytes): 0
Major (requiring I/O) page faults: 0
Minor (reclaiming a frame) page faults: 42182
Voluntary context switches: 64
Involuntary context switches: 47
Swaps: 0
File system inputs: 48
File system outputs: 112
Socket messages sent: 0
Socket messages received: 0
Signals delivered: 0
Page size (bytes): 4096
Exit status: 0
[+] Loading 0x000040 - 0x000238
[+] Loading 0x000238 - 0x000254
[+] Loading 0x000000 - 0x003638
[+] Loading 0x203dd8 - 0x207158
[+] Loading 0x203df0 - 0x203fd0
[+] Loading 0x000254 - 0x000274
[+] Loading 0x00349c - 0x0034e8
[+] Loading 0x000000 - 0x000000
[+] Loading 0x203dd8 - 0x204000
[+] Hooking printf
[+] Hooking fprintf
[+] Hooking malloc
[+] Hooking fopen
[+] Hooking strtoul
[+] Hooking __libc_start_main
[+] Starting emulation.
[+] __libc_start_main hooked
[+] argv[0] = build/virtualization/bogus-functions/3/sample19-virt-bogus-functions-3
[+] argv[1] = 1234
[+] strtoul hooked
[+] Symbolizing the strtoul return
[+] malloc hooked
[+] fopen hooked
[+] fopen hooked
[+] fopen hooked
[+] fprintf hooked
[+] fprintf hooked
[+] fprintf hooked
[+] fprintf hooked
[+] fprintf hooked
[+] fprintf hooked
[+] fprintf hooked
[+] fprintf hooked
[+] fprintf hooked
[+] fprintf hooked
[+] fprintf hooked
[+] fprintf hooked
[+] fprintf hooked
[+] fprintf hooked
[+] fprintf hooked
[+] fprintf hooked
[+] fprintf hooked
[+] fprintf hooked
[+] fprintf hooked
[+] fprintf hooked
[+] fprintf hooked
[+] fprintf hooked
[+] fprintf hooked
[+] fprintf hooked
[+] fprintf hooked
[+] fprintf hooked
[+] fprintf hooked
[+] fprintf hooked
[+] fprintf hooked
[+] fprintf hooked
[+] fprintf hooked
[+] fprintf hooked
[+] fprintf hooked
[+] fprintf hooked
[+] fprintf hooked
[+] fprintf hooked
[+] fprintf hooked
[+] fprintf hooked
[+] fprintf hooked
[+] fprintf hooked
[+] fprintf hooked
[+] fprintf hooked
[+] fprintf hooked
[+] fprintf hooked
[+] fprintf hooked
[+] fprintf hooked
[+] fprintf hooked
[+] fprintf hooked
[+] fprintf hooked
[+] fprintf hooked
[+] printf hooked
18446744072806803045
[+] Slicing end-point user expression
[-] Instruction not supported: 0xbaa: hlt
[+] Instruction executed: 117145
[+] Unique instruction executed: 1853
[+] PC len: 1
[+] Emulation done.
[+] Generating symbolic_expressions/sample19-virt-bogus-functions-3.py
[+] Converting symbolic expressions to an LLVM module...
[+] LLVM module wrote in llvm_expressions/sample19-virt-bogus-functions-3.ll
[+] Recompiling deobfuscated binary...
[+] Deobfuscated binary recompiled: deobfuscated_binaries/sample19-virt-bogus-functions-3.deobfuscated
--------------------------------------------------------------------
-> sample19-virt-bogus-functions-3
Instructions executed: 117145
Unique Instructions executed: 1853
Functions simulated: 57
Time of analysis: 7.781118 seconds
Command being timed: "./solve-vm.py build/virtualization/bogus-functions/3/sample19-virt-bogus-functions-3"
User time (seconds): 8.27
System time (seconds): 0.08
Percent of CPU this job got: 99%
Elapsed (wall clock) time (h:mm:ss or m:ss): 0:08.37
Average shared text size (kbytes): 0
Average unshared data size (kbytes): 0
Average stack size (kbytes): 0
Average total size (kbytes): 0
Maximum resident set size (kbytes): 136764
Average resident set size (kbytes): 0
Major (requiring I/O) page faults: 0
Minor (reclaiming a frame) page faults: 60293
Voluntary context switches: 55
Involuntary context switches: 76
Swaps: 0
File system inputs: 72
File system outputs: 136
Socket messages sent: 0
Socket messages received: 0
Signals delivered: 0
Page size (bytes): 4096
Exit status: 0
[+] Loading 0x000040 - 0x000238
[+] Loading 0x000238 - 0x000254
[+] Loading 0x000000 - 0x002428
[+] Loading 0x202dd8 - 0x203ca0
[+] Loading 0x202df0 - 0x202fd0
[+] Loading 0x000254 - 0x000274
[+] Loading 0x002294 - 0x0022e0
[+] Loading 0x000000 - 0x000000
[+] Loading 0x202dd8 - 0x203000
[+] Hooking printf
[+] Hooking malloc
[+] Hooking strtoul
[+] Hooking __libc_start_main
[+] Starting emulation.
[+] __libc_start_main hooked
[+] argv[0] = build/virtualization/operands/stack/sample19-virt-operand-stack
[+] argv[1] = 1234
[+] strtoul hooked
[+] Symbolizing the strtoul return
[+] malloc hooked
[+] printf hooked
18446744072806803045
[+] Slicing end-point user expression
[-] Instruction not supported: 0xada: hlt
[+] Instruction executed: 20935
[+] Unique instruction executed: 996
[+] PC len: 1
[+] Emulation done.
[+] Generating symbolic_expressions/sample19-virt-operand-stack.py
[+] Converting symbolic expressions to an LLVM module...
[+] LLVM module wrote in llvm_expressions/sample19-virt-operand-stack.ll
[+] Recompiling deobfuscated binary...
[+] Deobfuscated binary recompiled: deobfuscated_binaries/sample19-virt-operand-stack.deobfuscated
--------------------------------------------------------------------
-> sample19-virt-operand-stack
Instructions executed: 20935
Unique Instructions executed: 996
Functions simulated: 4
Time of analysis: 1.658198 seconds
Command being timed: "./solve-vm.py build/virtualization/operands/stack/sample19-virt-operand-stack"
User time (seconds): 2.11
System time (seconds): 0.08
Percent of CPU this job got: 99%
Elapsed (wall clock) time (h:mm:ss or m:ss): 0:02.21
Average shared text size (kbytes): 0
Average unshared data size (kbytes): 0
Average stack size (kbytes): 0
Average total size (kbytes): 0
Maximum resident set size (kbytes): 96324
Average resident set size (kbytes): 0
Major (requiring I/O) page faults: 0
Minor (reclaiming a frame) page faults: 40639
Voluntary context switches: 64
Involuntary context switches: 42
Swaps: 0
File system inputs: 48
File system outputs: 112
Socket messages sent: 0
Socket messages received: 0
Signals delivered: 0
Page size (bytes): 4096
Exit status: 0
[+] Loading 0x000040 - 0x000238
[+] Loading 0x000238 - 0x000254
[+] Loading 0x000000 - 0x002648
[+] Loading 0x202dd8 - 0x205330
[+] Loading 0x202df0 - 0x202fd0
[+] Loading 0x000254 - 0x000274
[+] Loading 0x0024b4 - 0x002500
[+] Loading 0x000000 - 0x000000
[+] Loading 0x202dd8 - 0x203000
[+] Hooking printf
[+] Hooking malloc
[+] Hooking strtoul
[+] Hooking __libc_start_main
[+] Starting emulation.
[+] __libc_start_main hooked
[+] argv[0] = build/virtualization/operands/registers/sample19-virt-operand-registers
[+] argv[1] = 1234
[+] strtoul hooked
[+] Symbolizing the strtoul return
[+] malloc hooked
[+] printf hooked
18446744072806803045
[+] Slicing end-point user expression
[-] Instruction not supported: 0xada: hlt
[+] Instruction executed: 22758
[+] Unique instruction executed: 1113
[+] PC len: 1
[+] Emulation done.
[+] Generating symbolic_expressions/sample19-virt-operand-registers.py
[+] Converting symbolic expressions to an LLVM module...
[+] LLVM module wrote in llvm_expressions/sample19-virt-operand-registers.ll
[+] Recompiling deobfuscated binary...
[+] Deobfuscated binary recompiled: deobfuscated_binaries/sample19-virt-operand-registers.deobfuscated
--------------------------------------------------------------------
-> sample19-virt-operand-registers
Instructions executed: 22758
Unique Instructions executed: 1113
Functions simulated: 4
Time of analysis: 1.773449 seconds
Command being timed: "./solve-vm.py build/virtualization/operands/registers/sample19-virt-operand-registers"
User time (seconds): 2.22
System time (seconds): 0.09
Percent of CPU this job got: 99%
Elapsed (wall clock) time (h:mm:ss or m:ss): 0:02.33
Average shared text size (kbytes): 0
Average unshared data size (kbytes): 0
Average stack size (kbytes): 0
Average total size (kbytes): 0
Maximum resident set size (kbytes): 98712
Average resident set size (kbytes): 0
Major (requiring I/O) page faults: 0
Minor (reclaiming a frame) page faults: 41925
Voluntary context switches: 54
Involuntary context switches: 44
Swaps: 0
File system inputs: 56
File system outputs: 120
Socket messages sent: 0
Socket messages received: 0
Signals delivered: 0
Page size (bytes): 4096
Exit status: 0
[+] Loading 0x000040 - 0x000238
[+] Loading 0x000238 - 0x000254
[+] Loading 0x000000 - 0x002750
[+] Loading 0x202dd8 - 0x203ca0
[+] Loading 0x202df0 - 0x202fd0
[+] Loading 0x000254 - 0x000274
[+] Loading 0x0025b8 - 0x002604
[+] Loading 0x000000 - 0x000000
[+] Loading 0x202dd8 - 0x203000
[+] Hooking printf
[+] Hooking malloc
[+] Hooking strtoul
[+] Hooking __libc_start_main
[+] Starting emulation.
[+] __libc_start_main hooked
[+] argv[0] = build/virtualization/add-opaque-to-vpc/true/sample19-virt-add-opaque-to-vpc-true
[+] argv[1] = 1234
[+] strtoul hooked
[+] Symbolizing the strtoul return
[+] malloc hooked
[+] printf hooked
18446744072806803045
[+] Slicing end-point user expression
[-] Instruction not supported: 0xada: hlt
[+] Instruction executed: 29981
[+] Unique instruction executed: 1204
[+] PC len: 1
[+] Emulation done.
[+] Generating symbolic_expressions/sample19-virt-add-opaque-to-vpc-true.py
[+] Converting symbolic expressions to an LLVM module...
[+] LLVM module wrote in llvm_expressions/sample19-virt-add-opaque-to-vpc-true.ll
[+] Recompiling deobfuscated binary...
[+] Deobfuscated binary recompiled: deobfuscated_binaries/sample19-virt-add-opaque-to-vpc-true.deobfuscated
--------------------------------------------------------------------
-> sample19-virt-add-opaque-to-vpc-true
Instructions executed: 29981
Unique Instructions executed: 1204
Functions simulated: 4
Time of analysis: 2.374408 seconds
Command being timed: "./solve-vm.py build/virtualization/add-opaque-to-vpc/true/sample19-virt-add-opaque-to-vpc-true"
User time (seconds): 2.84
System time (seconds): 0.06
Percent of CPU this job got: 99%
Elapsed (wall clock) time (h:mm:ss or m:ss): 0:02.93
Average shared text size (kbytes): 0
Average unshared data size (kbytes): 0
Average stack size (kbytes): 0
Average total size (kbytes): 0
Maximum resident set size (kbytes): 99600
Average resident set size (kbytes): 0
Major (requiring I/O) page faults: 0
Minor (reclaiming a frame) page faults: 42056
Voluntary context switches: 64
Involuntary context switches: 50
Swaps: 0
File system inputs: 48
File system outputs: 112
Socket messages sent: 0
Socket messages received: 0
Signals delivered: 0
Page size (bytes): 4096
Exit status: 0
[+] Loading 0x000040 - 0x000238
[+] Loading 0x000238 - 0x000254
[+] Loading 0x000000 - 0x002428
[+] Loading 0x202dd8 - 0x203ca0
[+] Loading 0x202df0 - 0x202fd0
[+] Loading 0x000254 - 0x000274
[+] Loading 0x002294 - 0x0022e0
[+] Loading 0x000000 - 0x000000
[+] Loading 0x202dd8 - 0x203000
[+] Hooking printf
[+] Hooking malloc
[+] Hooking strtoul
[+] Hooking __libc_start_main
[+] Starting emulation.
[+] __libc_start_main hooked
[+] argv[0] = build/virtualization/add-opaque-to-vpc/false/sample19-virt-add-opaque-to-vpc-false
[+] argv[1] = 1234
[+] strtoul hooked
[+] Symbolizing the strtoul return
[+] malloc hooked
[+] printf hooked
18446744072806803045
[+] Slicing end-point user expression
[-] Instruction not supported: 0xada: hlt
[+] Instruction executed: 20935
[+] Unique instruction executed: 996
[+] PC len: 1
[+] Emulation done.
[+] Generating symbolic_expressions/sample19-virt-add-opaque-to-vpc-false.py
[+] Converting symbolic expressions to an LLVM module...
[+] LLVM module wrote in llvm_expressions/sample19-virt-add-opaque-to-vpc-false.ll
[+] Recompiling deobfuscated binary...
[+] Deobfuscated binary recompiled: deobfuscated_binaries/sample19-virt-add-opaque-to-vpc-false.deobfuscated
--------------------------------------------------------------------
-> sample19-virt-add-opaque-to-vpc-false
Instructions executed: 20935
Unique Instructions executed: 996
Functions simulated: 4
Time of analysis: 1.64868 seconds
Command being timed: "./solve-vm.py build/virtualization/add-opaque-to-vpc/false/sample19-virt-add-opaque-to-vpc-false"
User time (seconds): 2.14
System time (seconds): 0.07
Percent of CPU this job got: 99%
Elapsed (wall clock) time (h:mm:ss or m:ss): 0:02.23
Average shared text size (kbytes): 0
Average unshared data size (kbytes): 0
Average stack size (kbytes): 0
Average total size (kbytes): 0
Maximum resident set size (kbytes): 96396
Average resident set size (kbytes): 0
Major (requiring I/O) page faults: 0
Minor (reclaiming a frame) page faults: 42172
Voluntary context switches: 64
Involuntary context switches: 231
Swaps: 0
File system inputs: 48
File system outputs: 112
Socket messages sent: 0
Socket messages received: 0
Signals delivered: 0
Page size (bytes): 4096
Exit status: 0
[+] Loading 0x000040 - 0x000238
[+] Loading 0x000238 - 0x000254
[+] Loading 0x000000 - 0x002428
[+] Loading 0x202dd8 - 0x203ca0
[+] Loading 0x202df0 - 0x202fd0
[+] Loading 0x000254 - 0x000274
[+] Loading 0x002294 - 0x0022e0
[+] Loading 0x000000 - 0x000000
[+] Loading 0x202dd8 - 0x203000
[+] Hooking printf
[+] Hooking malloc
[+] Hooking strtoul
[+] Hooking __libc_start_main
[+] Starting emulation.
[+] __libc_start_main hooked
[+] argv[0] = build/virtualization/nested-vm/1/sample19-virt-nested-vm-1
[+] argv[1] = 1234
[+] strtoul hooked
[+] Symbolizing the strtoul return
[+] malloc hooked
[+] printf hooked
18446744072806803045
[+] Slicing end-point user expression
[-] Instruction not supported: 0xada: hlt
[+] Instruction executed: 20935
[+] Unique instruction executed: 996
[+] PC len: 1
[+] Emulation done.
[+] Generating symbolic_expressions/sample19-virt-nested-vm-1.py
[+] Converting symbolic expressions to an LLVM module...
[+] LLVM module wrote in llvm_expressions/sample19-virt-nested-vm-1.ll
[+] Recompiling deobfuscated binary...
[+] Deobfuscated binary recompiled: deobfuscated_binaries/sample19-virt-nested-vm-1.deobfuscated
--------------------------------------------------------------------
-> sample19-virt-nested-vm-1
Instructions executed: 20935
Unique Instructions executed: 996
Functions simulated: 4
Time of analysis: 1.727721 seconds
Command being timed: "./solve-vm.py build/virtualization/nested-vm/1/sample19-virt-nested-vm-1"
User time (seconds): 2.20
System time (seconds): 0.07
Percent of CPU this job got: 98%
Elapsed (wall clock) time (h:mm:ss or m:ss): 0:02.31
Average shared text size (kbytes): 0
Average unshared data size (kbytes): 0
Average stack size (kbytes): 0
Average total size (kbytes): 0
Maximum resident set size (kbytes): 96524
Average resident set size (kbytes): 0
Major (requiring I/O) page faults: 0
Minor (reclaiming a frame) page faults: 42165
Voluntary context switches: 64
Involuntary context switches: 1212
Swaps: 0
File system inputs: 48
File system outputs: 112
Socket messages sent: 0
Socket messages received: 0
Signals delivered: 0
Page size (bytes): 4096
Exit status: 0
[+] Loading 0x000040 - 0x000238
[+] Loading 0x000238 - 0x000254
[+] Loading 0x000000 - 0x0021e8
[+] Loading 0x202dd8 - 0x206700
[+] Loading 0x202df0 - 0x202fd0
[+] Loading 0x000254 - 0x000274
[+] Loading 0x002050 - 0x00209c
[+] Loading 0x000000 - 0x000000
[+] Loading 0x202dd8 - 0x203000
[+] Hooking printf
[+] Hooking malloc
[+] Hooking strtoul
[+] Hooking __libc_start_main
[+] Starting emulation.
[+] __libc_start_main hooked
[+] argv[0] = build/virtualization/nested-vm/2/sample19-virt-nested-vm-2
[+] argv[1] = 1234
[+] strtoul hooked
[+] Symbolizing the strtoul return
[+] malloc hooked
[+] malloc hooked
[+] malloc hooked
[+] malloc hooked
[+] malloc hooked
[+] malloc hooked
[+] malloc hooked