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
|
--- !ELF
FileHeader:
Class: ELFCLASS64
Data: ELFDATA2LSB
Type: ET_DYN
Machine: EM_X86_64
Entry: 0x4F0
ProgramHeaders:
- Type: PT_PHDR
Flags: [ PF_R ]
VAddr: 0x40
Align: 0x8
Offset: 0x40
- Type: PT_INTERP
Flags: [ PF_R ]
FirstSec: .interp
LastSec: .interp
VAddr: 0x238
Offset: 0x238
- Type: PT_LOAD
Flags: [ PF_X, PF_R ]
FirstSec: .interp
LastSec: .eh_frame
Align: 0x200000
Offset: 0x0
- Type: PT_LOAD
Flags: [ PF_W, PF_R ]
FirstSec: .init_array
LastSec: .bss
VAddr: 0x200DE0
Align: 0x200000
Offset: 0xDE0
- Type: PT_DYNAMIC
Flags: [ PF_W, PF_R ]
FirstSec: .dynamic
LastSec: .dynamic
VAddr: 0x200DF8
Align: 0x8
Offset: 0xDF8
- Type: PT_NOTE
Flags: [ PF_R ]
FirstSec: .note.ABI-tag
LastSec: .note.ABI-tag
VAddr: 0x254
Align: 0x4
Offset: 0x254
- Type: PT_GNU_EH_FRAME
Flags: [ PF_R ]
FirstSec: .eh_frame_hdr
LastSec: .eh_frame_hdr
VAddr: 0x69C
Align: 0x4
Offset: 0x69C
- Type: PT_GNU_STACK
Flags: [ PF_W, PF_R ]
Align: 0x10
Offset: 0x0
- Type: PT_GNU_RELRO
Flags: [ PF_R ]
FirstSec: .init_array
LastSec: .got
VAddr: 0x200DE0
Offset: 0xDE0
Sections:
- Name: .interp
Type: SHT_PROGBITS
Flags: [ SHF_ALLOC ]
Address: 0x238
AddressAlign: 0x1
Content: 2F6C696236342F6C642D6C696E75782D7838362D36342E736F2E3200
- Name: .note.ABI-tag
Type: SHT_NOTE
Flags: [ SHF_ALLOC ]
Address: 0x254
AddressAlign: 0x4
Notes:
- Name: GNU
Desc: '00000000030000000200000000000000'
Type: NT_VERSION
- Name: .gnu.hash
Type: SHT_GNU_HASH
Flags: [ SHF_ALLOC ]
Address: 0x278
Link: .dynsym
AddressAlign: 0x8
Header:
SymNdx: 0x1
Shift2: 0x0
BloomFilter: [ 0x0 ]
HashBuckets: [ 0x0 ]
HashValues: [ ]
- Name: .dynsym
Type: SHT_DYNSYM
Flags: [ SHF_ALLOC ]
Address: 0x298
Link: .dynstr
AddressAlign: 0x8
- Name: .dynstr
Type: SHT_STRTAB
Flags: [ SHF_ALLOC ]
Address: 0x328
AddressAlign: 0x1
- Name: .gnu.version
Type: SHT_GNU_versym
Flags: [ SHF_ALLOC ]
Address: 0x3A6
Link: .dynsym
AddressAlign: 0x2
Entries: [ 0, 1, 2, 1, 1, 2 ]
- Name: .gnu.version_r
Type: SHT_GNU_verneed
Flags: [ SHF_ALLOC ]
Address: 0x3B8
Link: .dynstr
AddressAlign: 0x8
Dependencies:
- Version: 1
File: libc.so.6
Entries:
- Name: GLIBC_2.2.5
Hash: 157882997
Flags: 0
Other: 2
- Name: .rela.dyn
Type: SHT_RELA
Flags: [ SHF_ALLOC ]
Address: 0x3D8
Link: .dynsym
AddressAlign: 0x8
Relocations:
- Offset: 0x200DE0
Type: R_X86_64_RELATIVE
Addend: 1488
- Offset: 0x200DE8
Type: R_X86_64_RELATIVE
Addend: 1424
- Offset: 0x200DF0
Type: R_X86_64_RELATIVE
Addend: 2100720
- Offset: 0x200FD8
Symbol: _ITM_deregisterTMCloneTable
Type: R_X86_64_GLOB_DAT
- Offset: 0x200FE0
Symbol: __libc_start_main
Type: R_X86_64_GLOB_DAT
- Offset: 0x200FE8
Symbol: __gmon_start__
Type: R_X86_64_GLOB_DAT
- Offset: 0x200FF0
Symbol: _ITM_registerTMCloneTable
Type: R_X86_64_GLOB_DAT
- Offset: 0x200FF8
Symbol: __cxa_finalize
Type: R_X86_64_GLOB_DAT
- Name: .rela.plt
Type: SHT_RELA
Flags: [ SHF_ALLOC, SHF_INFO_LINK ]
Address: 0x498
Link: .dynsym
AddressAlign: 0x8
Info: .got.plt
Relocations:
- Offset: 0x201018
Symbol: __cxa_finalize
Type: R_X86_64_JUMP_SLOT
- Name: .init
Type: SHT_PROGBITS
Flags: [ SHF_ALLOC, SHF_EXECINSTR ]
Address: 0x4B0
AddressAlign: 0x4
Content: F30F1EFA4883EC08488B05290B20004885C07402FFD04883C408C3
- Name: .plt
Type: SHT_PROGBITS
Flags: [ SHF_ALLOC, SHF_EXECINSTR ]
Address: 0x4D0
AddressAlign: 0x10
EntSize: 0x10
Content: FF35320B2000FF25340B20000F1F4000FF25320B20006800000000E9E0FFFFFF
- Name: .text
Type: SHT_PROGBITS
Flags: [ SHF_ALLOC, SHF_EXECINSTR ]
Address: 0x4F0
AddressAlign: 0x10
Content: F30F1EFA31ED4989D15E4889E24883E4F050544C8D0576010000488D0DFF000000488D3DC8000000FF15C20A2000F490488D3D010B2000488D05FA0A20004839F87415488B059E0A20004885C07409FFE00F1F8000000000C30F1F8000000000488D3DD10A2000488D35CA0A20004829FE48C1FE034889F048C1E83F4801C648D1FE7414488B05750A20004885C07408FFE0660F1F440000C30F1F8000000000F30F1EFA803D890A200000752B5548833D520A2000004889E5740C488D3D3E082000E829FFFFFFE864FFFFFFC605610A2000015DC30F1F00C30F1F8000000000F30F1EFAE977FFFFFF0F1F8000000000554889E54883EC10C745FC00000000B000E80A0000004883C4105DC30F1F4000554889E5B8010000005DC30F1F440000F30F1EFA41574989D741564989F641554189FD41544C8D25B407200055488D2DB4072000534C29E54883EC08E86FFEFFFF48C1FD03741F31DB0F1F80000000004C89FA4C89F64489EF41FF14DC4883C3014839DD75EA4883C4085B5D415C415D415E415FC366662E0F1F840000000000F30F1EFAC3
- Name: .fini
Type: SHT_PROGBITS
Flags: [ SHF_ALLOC, SHF_EXECINSTR ]
Address: 0x688
AddressAlign: 0x4
Content: F30F1EFA4883EC084883C408C3
- Name: .rodata
Type: SHT_PROGBITS
Flags: [ SHF_ALLOC, SHF_MERGE ]
Address: 0x698
AddressAlign: 0x4
EntSize: 0x4
Content: '01000200'
- Name: .eh_frame_hdr
Type: SHT_PROGBITS
Flags: [ SHF_ALLOC ]
Address: 0x69C
AddressAlign: 0x4
Content: 011B033B380000000600000034FEFFFF6C00000054FEFFFF5400000044FFFFFF9400000064FFFFFFB400000074FFFFFFD4000000E4FFFFFF1C010000
- Name: .eh_frame
Type: SHT_PROGBITS
Flags: [ SHF_ALLOC ]
Address: 0x6D8
AddressAlign: 0x8
Content: 1400000000000000017A5200017810011B0C070890010000140000001C000000F8FDFFFF2F00000000440710000000002400000034000000C0FDFFFF20000000000E10460E184A0F0B770880003F1A3B2A332422000000001C0000005C000000A8FEFFFF1C00000000410E108602430D06570C07080000001C0000007C000000A8FEFFFF0B00000000410E108602430D06460C0708000000440000009C00000098FEFFFF6500000000460E108F02450E188E03450E208D04450E288C05480E308606480E388307470E406E0E38410E30410E28420E20420E18420E10420E080010000000E4000000C0FEFFFF050000000000000000000000
- Name: .init_array
Type: SHT_INIT_ARRAY
Flags: [ SHF_WRITE, SHF_ALLOC ]
Address: 0x200DE0
AddressAlign: 0x8
EntSize: 0x8
Offset: 0xDE0
Content: D005000000000000
- Name: .fini_array
Type: SHT_FINI_ARRAY
Flags: [ SHF_WRITE, SHF_ALLOC ]
Address: 0x200DE8
AddressAlign: 0x8
EntSize: 0x8
Content: '9005000000000000'
- Name: .data.rel.ro
Type: SHT_PROGBITS
Flags: [ SHF_WRITE, SHF_ALLOC ]
Address: 0x200DF0
AddressAlign: 0x8
Content: F00D200000000000
- Name: .dynamic
Type: SHT_DYNAMIC
Flags: [ SHF_WRITE, SHF_ALLOC ]
Address: 0x200DF8
Link: .dynstr
AddressAlign: 0x8
Entries:
- Tag: DT_NEEDED
Value: 0x1
- Tag: DT_INIT
Value: 0x4B0
- Tag: DT_FINI
Value: 0x688
- Tag: DT_INIT_ARRAY
Value: 0x200DE0
- Tag: DT_INIT_ARRAYSZ
Value: 0x8
- Tag: DT_FINI_ARRAY
Value: 0x200DE8
- Tag: DT_FINI_ARRAYSZ
Value: 0x8
- Tag: DT_GNU_HASH
Value: 0x278
- Tag: DT_STRTAB
Value: 0x328
- Tag: DT_SYMTAB
Value: 0x298
- Tag: DT_STRSZ
Value: 0x7D
- Tag: DT_SYMENT
Value: 0x18
- Tag: DT_DEBUG
Value: 0x0
- Tag: DT_PLTGOT
Value: 0x201000
- Tag: DT_PLTRELSZ
Value: 0x18
- Tag: DT_PLTREL
Value: 0x7
- Tag: DT_JMPREL
Value: 0x498
- Tag: DT_RELA
Value: 0x3D8
- Tag: DT_RELASZ
Value: 0xC0
- Tag: DT_RELAENT
Value: 0x18
- Tag: DT_FLAGS_1
Value: 0x8000000
- Tag: DT_VERNEED
Value: 0x3B8
- Tag: DT_VERNEEDNUM
Value: 0x1
- Tag: DT_VERSYM
Value: 0x3A6
- Tag: DT_RELACOUNT
Value: 0x3
- Tag: DT_NULL
Value: 0x0
- Tag: DT_NULL
Value: 0x0
- Tag: DT_NULL
Value: 0x0
- Tag: DT_NULL
Value: 0x0
- Tag: DT_NULL
Value: 0x0
- Name: .got
Type: SHT_PROGBITS
Flags: [ SHF_WRITE, SHF_ALLOC ]
Address: 0x200FD8
AddressAlign: 0x8
EntSize: 0x8
Content: '00000000000000000000000000000000000000000000000000000000000000000000000000000000'
- Name: .got.plt
Type: SHT_PROGBITS
Flags: [ SHF_WRITE, SHF_ALLOC ]
Address: 0x201000
AddressAlign: 0x8
EntSize: 0x8
Content: F80D20000000000000000000000000000000000000000000E604000000000000
- Name: .data
Type: SHT_PROGBITS
Flags: [ SHF_WRITE, SHF_ALLOC ]
Address: 0x201020
AddressAlign: 0x1
Content: '00000000'
- Name: .bss
Type: SHT_NOBITS
Flags: [ SHF_WRITE, SHF_ALLOC ]
Address: 0x201024
AddressAlign: 0x1
Size: 0x4
- Name: .comment
Type: SHT_PROGBITS
Flags: [ SHF_MERGE, SHF_STRINGS ]
AddressAlign: 0x1
EntSize: 0x1
Content: 4743433A2028474E552920382E352E3020323032313035313420285265642048617420382E352E302D3231290046616365626F6F6B20636C616E672076657273696F6E2031352E302E3020287373683A2F2F6769742E7669702E66616365626F6F6B2E636F6D2F646174612F6769747265706F732F6F736D6574612F65787465726E616C2F6C6C766D2D70726F6A65637420343561653864633237346536636263626434306435373435313664353334333739366265313532372900
- Name: .gnu.build.attributes
Type: SHT_NOTE
Address: 0x601028
AddressAlign: 0x4
Notes:
- Name: "GA$\x013p1113"
Desc: 1F050000000000001F05000000000000
Type: NT_GNU_BUILD_ATTRIBUTE_OPEN
- Name: "GA$\x05running gcc 8.5.0 20210514"
Desc: ''
Type: NT_GNU_BUILD_ATTRIBUTE_OPEN
- Name: "GA$\x05annobin gcc 8.5.0 20210514"
Desc: ''
Type: NT_GNU_BUILD_ATTRIBUTE_OPEN
- Name: "GA$\x05plugin name: gcc-annobin"
Desc: ''
Type: NT_GNU_BUILD_ATTRIBUTE_OPEN
- Name: "GA*GOW\0*\x05\x02"
Desc: ''
Type: NT_GNU_BUILD_ATTRIBUTE_OPEN
- Name: "GA*\x02\0"
Desc: ''
Type: NT_GNU_BUILD_ATTRIBUTE_OPEN
- Name: 'GA+stack_clash'
Desc: ''
Type: NT_GNU_BUILD_ATTRIBUTE_OPEN
- Name: "GA*cf_protection\0\b"
Desc: ''
Type: NT_GNU_BUILD_ATTRIBUTE_OPEN
- Name: "GA*FORTIFY\0�"
Desc: ''
Type: NT_GNU_BUILD_ATTRIBUTE_OPEN
- Name: 'GA+GLIBCXX_ASSERTIONS'
Desc: ''
Type: NT_GNU_BUILD_ATTRIBUTE_OPEN
- Name: "GA*\a\x03"
Desc: ''
Type: NT_GNU_BUILD_ATTRIBUTE_OPEN
- Name: "GA!\b"
Desc: ''
Type: NT_GNU_BUILD_ATTRIBUTE_OPEN
- Name: 'GA+omit_frame_pointer'
Desc: ''
Type: NT_GNU_BUILD_ATTRIBUTE_OPEN
- Name: "GA*\x06\x12"
Desc: ''
Type: NT_GNU_BUILD_ATTRIBUTE_OPEN
- Name: 'GA!stack_realign'
Desc: ''
Type: NT_GNU_BUILD_ATTRIBUTE_OPEN
- Name: "GA$\x013p1113"
Desc: F004000000000000F004000000000000
Type: NT_GNU_BUILD_ATTRIBUTE_OPEN
- Name: "GA$\x05running gcc 8.5.0 20210514"
Desc: ''
Type: NT_GNU_BUILD_ATTRIBUTE_OPEN
- Name: "GA$\x05annobin gcc 8.5.0 20210514"
Desc: ''
Type: NT_GNU_BUILD_ATTRIBUTE_OPEN
- Name: "GA$\x05plugin name: gcc-annobin"
Desc: ''
Type: NT_GNU_BUILD_ATTRIBUTE_OPEN
- Name: "GA*GOW\0*\x05\x02"
Desc: ''
Type: NT_GNU_BUILD_ATTRIBUTE_OPEN
- Name: "GA*\x02\0"
Desc: ''
Type: NT_GNU_BUILD_ATTRIBUTE_OPEN
- Name: 'GA+stack_clash'
Desc: ''
Type: NT_GNU_BUILD_ATTRIBUTE_OPEN
- Name: "GA*cf_protection\0\b"
Desc: ''
Type: NT_GNU_BUILD_ATTRIBUTE_OPEN
- Name: "GA*FORTIFY\0�"
Desc: ''
Type: NT_GNU_BUILD_ATTRIBUTE_OPEN
- Name: 'GA+GLIBCXX_ASSERTIONS'
Desc: ''
Type: NT_GNU_BUILD_ATTRIBUTE_OPEN
- Name: "GA*\a\x03"
Desc: ''
Type: NT_GNU_BUILD_ATTRIBUTE_OPEN
- Name: "GA!\b"
Desc: ''
Type: NT_GNU_BUILD_ATTRIBUTE_OPEN
- Name: 'GA+omit_frame_pointer'
Desc: ''
Type: NT_GNU_BUILD_ATTRIBUTE_OPEN
- Name: "GA*\x06\x12"
Desc: ''
Type: NT_GNU_BUILD_ATTRIBUTE_OPEN
- Name: 'GA!stack_realign'
Desc: ''
Type: NT_GNU_BUILD_ATTRIBUTE_OPEN
- Name: "GA$\x013p1113"
Desc: F004000000000000F004000000000000
Type: NT_GNU_BUILD_ATTRIBUTE_OPEN
- Name: "GA$\x05running gcc 8.5.0 20210514"
Desc: ''
Type: NT_GNU_BUILD_ATTRIBUTE_OPEN
- Name: "GA$\x05annobin gcc 8.5.0 20210514"
Desc: ''
Type: NT_GNU_BUILD_ATTRIBUTE_OPEN
- Name: "GA$\x05plugin name: gcc-annobin"
Desc: ''
Type: NT_GNU_BUILD_ATTRIBUTE_OPEN
- Name: "GA*GOW\0*\x05\x02"
Desc: ''
Type: NT_GNU_BUILD_ATTRIBUTE_OPEN
- Name: "GA*\x02\0"
Desc: ''
Type: NT_GNU_BUILD_ATTRIBUTE_OPEN
- Name: 'GA+stack_clash'
Desc: ''
Type: NT_GNU_BUILD_ATTRIBUTE_OPEN
- Name: "GA*cf_protection\0\b"
Desc: ''
Type: NT_GNU_BUILD_ATTRIBUTE_OPEN
- Name: "GA*FORTIFY\0�"
Desc: ''
Type: NT_GNU_BUILD_ATTRIBUTE_OPEN
- Name: 'GA+GLIBCXX_ASSERTIONS'
Desc: ''
Type: NT_GNU_BUILD_ATTRIBUTE_OPEN
- Name: "GA*\a\x03"
Desc: ''
Type: NT_GNU_BUILD_ATTRIBUTE_OPEN
- Name: "GA!\b"
Desc: ''
Type: NT_GNU_BUILD_ATTRIBUTE_OPEN
- Name: 'GA+omit_frame_pointer'
Desc: ''
Type: NT_GNU_BUILD_ATTRIBUTE_OPEN
- Name: "GA*\x06\x12"
Desc: ''
Type: NT_GNU_BUILD_ATTRIBUTE_OPEN
- Name: 'GA!stack_realign'
Desc: ''
Type: NT_GNU_BUILD_ATTRIBUTE_OPEN
- Name: "GA$\x013p1113"
Desc: F004000000000000F004000000000000
Type: NT_GNU_BUILD_ATTRIBUTE_OPEN
- Name: "GA$\x05running gcc 8.5.0 20210514"
Desc: ''
Type: NT_GNU_BUILD_ATTRIBUTE_OPEN
- Name: "GA$\x05annobin gcc 8.5.0 20210514"
Desc: ''
Type: NT_GNU_BUILD_ATTRIBUTE_OPEN
- Name: "GA$\x05plugin name: gcc-annobin"
Desc: ''
Type: NT_GNU_BUILD_ATTRIBUTE_OPEN
- Name: "GA*GOW\0*\x05\x02"
Desc: ''
Type: NT_GNU_BUILD_ATTRIBUTE_OPEN
- Name: "GA*\x02\0"
Desc: ''
Type: NT_GNU_BUILD_ATTRIBUTE_OPEN
- Name: 'GA+stack_clash'
Desc: ''
Type: NT_GNU_BUILD_ATTRIBUTE_OPEN
- Name: "GA*cf_protection\0\b"
Desc: ''
Type: NT_GNU_BUILD_ATTRIBUTE_OPEN
- Name: "GA*FORTIFY\0�"
Desc: ''
Type: NT_GNU_BUILD_ATTRIBUTE_OPEN
- Name: 'GA+GLIBCXX_ASSERTIONS'
Desc: ''
Type: NT_GNU_BUILD_ATTRIBUTE_OPEN
- Name: "GA*\a\x03"
Desc: ''
Type: NT_GNU_BUILD_ATTRIBUTE_OPEN
- Name: "GA!\b"
Desc: ''
Type: NT_GNU_BUILD_ATTRIBUTE_OPEN
- Name: 'GA+omit_frame_pointer'
Desc: ''
Type: NT_GNU_BUILD_ATTRIBUTE_OPEN
- Name: "GA*\x06\x12"
Desc: ''
Type: NT_GNU_BUILD_ATTRIBUTE_OPEN
- Name: 'GA!stack_realign'
Desc: ''
Type: NT_GNU_BUILD_ATTRIBUTE_OPEN
- Name: "GA$\x013p1113"
Desc: F004000000000000F004000000000000
Type: NT_GNU_BUILD_ATTRIBUTE_OPEN
- Name: "GA$\x05running gcc 8.5.0 20210514"
Desc: ''
Type: NT_GNU_BUILD_ATTRIBUTE_OPEN
- Name: "GA$\x05annobin gcc 8.5.0 20210514"
Desc: ''
Type: NT_GNU_BUILD_ATTRIBUTE_OPEN
- Name: "GA$\x05plugin name: gcc-annobin"
Desc: ''
Type: NT_GNU_BUILD_ATTRIBUTE_OPEN
- Name: "GA*GOW\0*\x05\x02"
Desc: ''
Type: NT_GNU_BUILD_ATTRIBUTE_OPEN
- Name: "GA*\x02\0"
Desc: ''
Type: NT_GNU_BUILD_ATTRIBUTE_OPEN
- Name: 'GA+stack_clash'
Desc: ''
Type: NT_GNU_BUILD_ATTRIBUTE_OPEN
- Name: "GA*cf_protection\0\b"
Desc: ''
Type: NT_GNU_BUILD_ATTRIBUTE_OPEN
- Name: "GA*FORTIFY\0�"
Desc: ''
Type: NT_GNU_BUILD_ATTRIBUTE_OPEN
- Name: 'GA+GLIBCXX_ASSERTIONS'
Desc: ''
Type: NT_GNU_BUILD_ATTRIBUTE_OPEN
- Name: "GA*\a\x03"
Desc: ''
Type: NT_GNU_BUILD_ATTRIBUTE_OPEN
- Name: "GA!\b"
Desc: ''
Type: NT_GNU_BUILD_ATTRIBUTE_OPEN
- Name: 'GA+omit_frame_pointer'
Desc: ''
Type: NT_GNU_BUILD_ATTRIBUTE_OPEN
- Name: "GA*\x06\x12"
Desc: ''
Type: NT_GNU_BUILD_ATTRIBUTE_OPEN
- Name: 'GA!stack_realign'
Desc: ''
Type: NT_GNU_BUILD_ATTRIBUTE_OPEN
- Name: "GA$\x013a1"
Desc: F0040000000000001F05000000000000
Type: NT_GNU_BUILD_ATTRIBUTE_OPEN
- Name: "GA$\x013a1"
Desc: 1F050000000000001F05000000000000
Type: NT_GNU_BUILD_ATTRIBUTE_OPEN
- Name: "GA$\x013a1"
Desc: 1F050000000000001F05000000000000
Type: NT_GNU_BUILD_ATTRIBUTE_OPEN
- Name: "GA$\x013a1"
Desc: B004000000000000C604000000000000
Type: NT_GNU_BUILD_ATTRIBUTE_OPEN
- Name: "GA$\x013a1"
Desc: '88060000000000009006000000000000'
Type: NT_GNU_BUILD_ATTRIBUTE_OPEN
- Name: "GA$\x013a1"
Desc: 2005000000000000D905000000000000
Type: NT_GNU_BUILD_ATTRIBUTE_OPEN
- Name: "GA$\x013p1113"
Desc: '10060000000000008506000000000000'
Type: NT_GNU_BUILD_ATTRIBUTE_OPEN
- Name: "GA$\x05running gcc 8.5.0 20210514"
Desc: ''
Type: NT_GNU_BUILD_ATTRIBUTE_OPEN
- Name: "GA$\x05annobin gcc 8.5.0 20210514"
Desc: ''
Type: NT_GNU_BUILD_ATTRIBUTE_OPEN
- Name: "GA$\x05plugin name: gcc-annobin"
Desc: ''
Type: NT_GNU_BUILD_ATTRIBUTE_OPEN
- Name: "GA*GOW\0*\x05\x02"
Desc: ''
Type: NT_GNU_BUILD_ATTRIBUTE_OPEN
- Name: "GA*\x02\x03"
Desc: ''
Type: NT_GNU_BUILD_ATTRIBUTE_OPEN
- Name: 'GA+stack_clash'
Desc: ''
Type: NT_GNU_BUILD_ATTRIBUTE_OPEN
- Name: "GA*cf_protection\0\b"
Desc: ''
Type: NT_GNU_BUILD_ATTRIBUTE_OPEN
- Name: "GA*FORTIFY\0\x02"
Desc: ''
Type: NT_GNU_BUILD_ATTRIBUTE_OPEN
- Name: 'GA+GLIBCXX_ASSERTIONS'
Desc: ''
Type: NT_GNU_BUILD_ATTRIBUTE_OPEN
- Name: "GA*\a\x02"
Desc: ''
Type: NT_GNU_BUILD_ATTRIBUTE_OPEN
- Name: "GA!\b"
Desc: ''
Type: NT_GNU_BUILD_ATTRIBUTE_OPEN
- Name: 'GA+omit_frame_pointer'
Desc: ''
Type: NT_GNU_BUILD_ATTRIBUTE_OPEN
- Name: "GA*\x06\x12"
Desc: ''
Type: NT_GNU_BUILD_ATTRIBUTE_OPEN
- Name: 'GA!stack_realign'
Desc: ''
Type: NT_GNU_BUILD_ATTRIBUTE_OPEN
- Name: "GA*FORTIFY\0\x02"
Desc: '10060000000000007506000000000000'
Type: NT_GNU_BUILD_ATTRIBUTE_FUNC
- Name: 'GA+GLIBCXX_ASSERTIONS'
Desc: '10060000000000007506000000000000'
Type: NT_GNU_BUILD_ATTRIBUTE_FUNC
- Name: "GA*FORTIFY\0\x02"
Desc: '75060000000000008506000000000000'
Type: NT_GNU_BUILD_ATTRIBUTE_FUNC
- Name: 'GA+GLIBCXX_ASSERTIONS'
Desc: '75060000000000008506000000000000'
Type: NT_GNU_BUILD_ATTRIBUTE_FUNC
- Name: "GA$\x013p1113"
Desc: F004000000000000F004000000000000
Type: NT_GNU_BUILD_ATTRIBUTE_OPEN
- Name: "GA$\x05running gcc 8.5.0 20210514"
Desc: ''
Type: NT_GNU_BUILD_ATTRIBUTE_OPEN
- Name: "GA$\x05annobin gcc 8.5.0 20210514"
Desc: ''
Type: NT_GNU_BUILD_ATTRIBUTE_OPEN
- Name: "GA$\x05plugin name: gcc-annobin"
Desc: ''
Type: NT_GNU_BUILD_ATTRIBUTE_OPEN
- Name: "GA*GOW\0*\x05\x02"
Desc: ''
Type: NT_GNU_BUILD_ATTRIBUTE_OPEN
- Name: "GA*\x02\x03"
Desc: ''
Type: NT_GNU_BUILD_ATTRIBUTE_OPEN
- Name: 'GA+stack_clash'
Desc: ''
Type: NT_GNU_BUILD_ATTRIBUTE_OPEN
- Name: "GA*cf_protection\0\b"
Desc: ''
Type: NT_GNU_BUILD_ATTRIBUTE_OPEN
- Name: "GA*FORTIFY\0\x02"
Desc: ''
Type: NT_GNU_BUILD_ATTRIBUTE_OPEN
- Name: 'GA+GLIBCXX_ASSERTIONS'
Desc: ''
Type: NT_GNU_BUILD_ATTRIBUTE_OPEN
- Name: "GA*\a\x02"
Desc: ''
Type: NT_GNU_BUILD_ATTRIBUTE_OPEN
- Name: "GA!\b"
Desc: ''
Type: NT_GNU_BUILD_ATTRIBUTE_OPEN
- Name: 'GA+omit_frame_pointer'
Desc: ''
Type: NT_GNU_BUILD_ATTRIBUTE_OPEN
- Name: "GA*\x06\x12"
Desc: ''
Type: NT_GNU_BUILD_ATTRIBUTE_OPEN
- Name: 'GA!stack_realign'
Desc: ''
Type: NT_GNU_BUILD_ATTRIBUTE_OPEN
- Name: "GA$\x013p1113"
Desc: F004000000000000F004000000000000
Type: NT_GNU_BUILD_ATTRIBUTE_OPEN
- Name: "GA$\x05running gcc 8.5.0 20210514"
Desc: ''
Type: NT_GNU_BUILD_ATTRIBUTE_OPEN
- Name: "GA$\x05annobin gcc 8.5.0 20210514"
Desc: ''
Type: NT_GNU_BUILD_ATTRIBUTE_OPEN
- Name: "GA$\x05plugin name: gcc-annobin"
Desc: ''
Type: NT_GNU_BUILD_ATTRIBUTE_OPEN
- Name: "GA*GOW\0*\x05\x02"
Desc: ''
Type: NT_GNU_BUILD_ATTRIBUTE_OPEN
- Name: "GA*\x02\x03"
Desc: ''
Type: NT_GNU_BUILD_ATTRIBUTE_OPEN
- Name: 'GA+stack_clash'
Desc: ''
Type: NT_GNU_BUILD_ATTRIBUTE_OPEN
- Name: "GA*cf_protection\0\b"
Desc: ''
Type: NT_GNU_BUILD_ATTRIBUTE_OPEN
- Name: "GA*FORTIFY\0\x02"
Desc: ''
Type: NT_GNU_BUILD_ATTRIBUTE_OPEN
- Name: 'GA+GLIBCXX_ASSERTIONS'
Desc: ''
Type: NT_GNU_BUILD_ATTRIBUTE_OPEN
- Name: "GA*\a\x02"
Desc: ''
Type: NT_GNU_BUILD_ATTRIBUTE_OPEN
- Name: "GA!\b"
Desc: ''
Type: NT_GNU_BUILD_ATTRIBUTE_OPEN
- Name: 'GA+omit_frame_pointer'
Desc: ''
Type: NT_GNU_BUILD_ATTRIBUTE_OPEN
- Name: "GA*\x06\x12"
Desc: ''
Type: NT_GNU_BUILD_ATTRIBUTE_OPEN
- Name: 'GA!stack_realign'
Desc: ''
Type: NT_GNU_BUILD_ATTRIBUTE_OPEN
- Name: "GA$\x013p1113"
Desc: F004000000000000F004000000000000
Type: NT_GNU_BUILD_ATTRIBUTE_OPEN
- Name: "GA$\x05running gcc 8.5.0 20210514"
Desc: ''
Type: NT_GNU_BUILD_ATTRIBUTE_OPEN
- Name: "GA$\x05annobin gcc 8.5.0 20210514"
Desc: ''
Type: NT_GNU_BUILD_ATTRIBUTE_OPEN
- Name: "GA$\x05plugin name: gcc-annobin"
Desc: ''
Type: NT_GNU_BUILD_ATTRIBUTE_OPEN
- Name: "GA*GOW\0*\x05\x02"
Desc: ''
Type: NT_GNU_BUILD_ATTRIBUTE_OPEN
- Name: "GA*\x02\x03"
Desc: ''
Type: NT_GNU_BUILD_ATTRIBUTE_OPEN
- Name: 'GA+stack_clash'
Desc: ''
Type: NT_GNU_BUILD_ATTRIBUTE_OPEN
- Name: "GA*cf_protection\0\b"
Desc: ''
Type: NT_GNU_BUILD_ATTRIBUTE_OPEN
- Name: "GA*FORTIFY\0\x02"
Desc: ''
Type: NT_GNU_BUILD_ATTRIBUTE_OPEN
- Name: 'GA+GLIBCXX_ASSERTIONS'
Desc: ''
Type: NT_GNU_BUILD_ATTRIBUTE_OPEN
- Name: "GA*\a\x02"
Desc: ''
Type: NT_GNU_BUILD_ATTRIBUTE_OPEN
- Name: "GA!\b"
Desc: ''
Type: NT_GNU_BUILD_ATTRIBUTE_OPEN
- Name: 'GA+omit_frame_pointer'
Desc: ''
Type: NT_GNU_BUILD_ATTRIBUTE_OPEN
- Name: "GA*\x06\x12"
Desc: ''
Type: NT_GNU_BUILD_ATTRIBUTE_OPEN
- Name: 'GA!stack_realign'
Desc: ''
Type: NT_GNU_BUILD_ATTRIBUTE_OPEN
- Name: "GA$\x013p1113"
Desc: F004000000000000F004000000000000
Type: NT_GNU_BUILD_ATTRIBUTE_OPEN
- Name: "GA$\x05running gcc 8.5.0 20210514"
Desc: ''
Type: NT_GNU_BUILD_ATTRIBUTE_OPEN
- Name: "GA$\x05annobin gcc 8.5.0 20210514"
Desc: ''
Type: NT_GNU_BUILD_ATTRIBUTE_OPEN
- Name: "GA$\x05plugin name: gcc-annobin"
Desc: ''
Type: NT_GNU_BUILD_ATTRIBUTE_OPEN
- Name: "GA*GOW\0*\x05\x02"
Desc: ''
Type: NT_GNU_BUILD_ATTRIBUTE_OPEN
- Name: "GA*\x02\x03"
Desc: ''
Type: NT_GNU_BUILD_ATTRIBUTE_OPEN
- Name: 'GA+stack_clash'
Desc: ''
Type: NT_GNU_BUILD_ATTRIBUTE_OPEN
- Name: "GA*cf_protection\0\b"
Desc: ''
Type: NT_GNU_BUILD_ATTRIBUTE_OPEN
- Name: "GA*FORTIFY\0\x02"
Desc: ''
Type: NT_GNU_BUILD_ATTRIBUTE_OPEN
- Name: 'GA+GLIBCXX_ASSERTIONS'
Desc: ''
Type: NT_GNU_BUILD_ATTRIBUTE_OPEN
- Name: "GA*\a\x02"
Desc: ''
Type: NT_GNU_BUILD_ATTRIBUTE_OPEN
- Name: "GA!\b"
Desc: ''
Type: NT_GNU_BUILD_ATTRIBUTE_OPEN
- Name: 'GA+omit_frame_pointer'
Desc: ''
Type: NT_GNU_BUILD_ATTRIBUTE_OPEN
- Name: "GA*\x06\x12"
Desc: ''
Type: NT_GNU_BUILD_ATTRIBUTE_OPEN
- Name: 'GA!stack_realign'
Desc: ''
Type: NT_GNU_BUILD_ATTRIBUTE_OPEN
- Name: "GA$\x013a1"
Desc: '85060000000000008506000000000000'
Type: NT_GNU_BUILD_ATTRIBUTE_OPEN
- Name: "GA$\x013a1"
Desc: '85060000000000008506000000000000'
Type: NT_GNU_BUILD_ATTRIBUTE_OPEN
- Name: "GA$\x013a1"
Desc: C604000000000000CB04000000000000
Type: NT_GNU_BUILD_ATTRIBUTE_OPEN
- Name: "GA$\x013a1"
Desc: '90060000000000009506000000000000'
Type: NT_GNU_BUILD_ATTRIBUTE_OPEN
- Name: .debug_info
Type: SHT_PROGBITS
AddressAlign: 0x1
Content: 24000000050004080000000037AA38DE48449DD70100000000080000000001001C00000008000000240000000500040817000000495EA96AE5C99FC4015F000000180000000001000B00000018000000
- Name: .debug_abbrev
Type: SHT_PROGBITS
AddressAlign: 0x1
Content: 014A00101772171B25B442197625111B12067317000000014A00101772171B25B442197625111B12067317000000
- Name: .debug_line
Type: SHT_PROGBITS
AddressAlign: 0x1
Content: 5B0000000500080037000000010101FB0E0D00010101010000000100000101011F010000000003011F020F051E010200000000CEBCB192A47C15B4C4C1CCEC9400444F0400000902E0050000000000001405190AE40512060B740206000101590000000500080037000000010101FB0E0D00010101010000000100000101011F010000000003011F020F051E016200000000E50309AC872C80EA355C846ACBBCF1660400000902000600000000000014050D0A4A060B580202000101
- Name: .debug_str_offsets
Type: SHT_PROGBITS
AddressAlign: 0x1
Content: 0C0000000500000000000000020000000C000000050000000000000011000000
- Name: .debug_gnu_pubnames
Type: SHT_PROGBITS
AddressAlign: 0x1
Content: 18000000020000000000280000001A000000306D61696E000000000017000000020028000000280000001A00000030666F6F0000000000
- Name: .debug_gnu_pubtypes
Type: SHT_PROGBITS
AddressAlign: 0x1
Content: 17000000020000000000280000002900000090696E74000000000017000000020028000000280000002900000090696E740000000000
- Name: .debug_line_str
Type: SHT_PROGBITS
Flags: [ SHF_MERGE, SHF_STRINGS ]
AddressAlign: 0x1
EntSize: 0x1
Content: 2E002F686F6D652F6A65666672657974616E2F6C6C766D2D73616E642F65787465726E616C2F6C6C766D2D70726F6A6563742F6C6C64622F746573742F4150492F636F6D6D616E64732F7461726765742F6465627567696E666F2F6D61696E2E63002F686F6D652F6A65666672657974616E2F6C6C766D2D73616E642F65787465726E616C2F6C6C766D2D70726F6A6563742F6C6C64622F746573742F4150492F636F6D6D616E64732F7461726765742F6465627567696E666F2F666F6F2E6300
Symbols:
- Name: .interp
Type: STT_SECTION
Section: .interp
Value: 0x238
- Name: .note.ABI-tag
Type: STT_SECTION
Section: .note.ABI-tag
Value: 0x254
- Name: .gnu.hash
Type: STT_SECTION
Section: .gnu.hash
Value: 0x278
- Name: .dynsym
Type: STT_SECTION
Section: .dynsym
Value: 0x298
- Name: .dynstr
Type: STT_SECTION
Section: .dynstr
Value: 0x328
- Name: .gnu.version
Type: STT_SECTION
Section: .gnu.version
Value: 0x3A6
- Name: .gnu.version_r
Type: STT_SECTION
Section: .gnu.version_r
Value: 0x3B8
- Name: .rela.dyn
Type: STT_SECTION
Section: .rela.dyn
Value: 0x3D8
- Name: .rela.plt
Type: STT_SECTION
Section: .rela.plt
Value: 0x498
- Name: .init
Type: STT_SECTION
Section: .init
Value: 0x4B0
- Name: .plt
Type: STT_SECTION
Section: .plt
Value: 0x4D0
- Name: .text
Type: STT_SECTION
Section: .text
Value: 0x4F0
- Name: .fini
Type: STT_SECTION
Section: .fini
Value: 0x688
- Name: .rodata
Type: STT_SECTION
Section: .rodata
Value: 0x698
- Name: .eh_frame_hdr
Type: STT_SECTION
Section: .eh_frame_hdr
Value: 0x69C
- Name: .eh_frame
Type: STT_SECTION
Section: .eh_frame
Value: 0x6D8
- Name: .init_array
Type: STT_SECTION
Section: .init_array
Value: 0x200DE0
- Name: .fini_array
Type: STT_SECTION
Section: .fini_array
Value: 0x200DE8
- Name: .data.rel.ro
Type: STT_SECTION
Section: .data.rel.ro
Value: 0x200DF0
- Name: .dynamic
Type: STT_SECTION
Section: .dynamic
Value: 0x200DF8
- Name: .got
Type: STT_SECTION
Section: .got
Value: 0x200FD8
- Name: .got.plt
Type: STT_SECTION
Section: .got.plt
Value: 0x201000
- Name: .data
Type: STT_SECTION
Section: .data
Value: 0x201020
- Name: .bss
Type: STT_SECTION
Section: .bss
Value: 0x201024
- Name: .comment
Type: STT_SECTION
Section: .comment
- Name: .gnu.build.attributes
Type: STT_SECTION
Section: .gnu.build.attributes
Value: 0x601028
- Name: .debug_info
Type: STT_SECTION
Section: .debug_info
- Name: .debug_abbrev
Type: STT_SECTION
Section: .debug_abbrev
- Name: .debug_line
Type: STT_SECTION
Section: .debug_line
- Name: .debug_str
Type: STT_SECTION
Section: .debug_str
- Name: .debug_addr
Type: STT_SECTION
Section: .debug_addr
- Name: .debug_str_offsets
Type: STT_SECTION
Section: .debug_str_offsets
- Name: .debug_gnu_pubnames
Type: STT_SECTION
Section: .debug_gnu_pubnames
- Name: .debug_gnu_pubtypes
Type: STT_SECTION
Section: .debug_gnu_pubtypes
- Name: .debug_line_str
Type: STT_SECTION
Section: .debug_line_str
- Name: '/usr/lib/gcc/x86_64-redhat-linux/8/../../../../lib64/Scrt1.o'
Type: STT_FILE
Index: SHN_ABS
- Name: .annobin_init.c
Section: .text
Value: 0x51F
Other: [ STV_HIDDEN ]
- Name: .annobin_init.c_end
Section: .text
Value: 0x51F
Other: [ STV_HIDDEN ]
- Name: .annobin_init.c.hot
Section: .text
Value: 0x4F0
Other: [ STV_HIDDEN ]
- Name: .annobin_init.c_end.hot
Section: .text
Value: 0x4F0
Other: [ STV_HIDDEN ]
- Name: .annobin_init.c.unlikely
Section: .text
Value: 0x4F0
Other: [ STV_HIDDEN ]
- Name: .annobin_init.c_end.unlikely
Section: .text
Value: 0x4F0
Other: [ STV_HIDDEN ]
- Name: .annobin_init.c.startup
Section: .text
Value: 0x4F0
Other: [ STV_HIDDEN ]
- Name: .annobin_init.c_end.startup
Section: .text
Value: 0x4F0
Other: [ STV_HIDDEN ]
- Name: .annobin_init.c.exit
Section: .text
Value: 0x4F0
Other: [ STV_HIDDEN ]
- Name: .annobin_init.c_end.exit
Section: .text
Value: 0x4F0
Other: [ STV_HIDDEN ]
- Name: elf-init.oS
Type: STT_FILE
Index: SHN_ABS
- Name: .annobin_elf_init.c
Section: .text
Value: 0x610
Other: [ STV_HIDDEN ]
- Name: .annobin_elf_init.c_end
Section: .text
Value: 0x685
Other: [ STV_HIDDEN ]
- Name: .annobin_elf_init.c.hot
Section: .text
Value: 0x4F0
Other: [ STV_HIDDEN ]
- Name: .annobin_elf_init.c_end.hot
Section: .text
Value: 0x4F0
Other: [ STV_HIDDEN ]
- Name: .annobin_elf_init.c.unlikely
Section: .text
Value: 0x4F0
Other: [ STV_HIDDEN ]
- Name: .annobin_elf_init.c_end.unlikely
Section: .text
Value: 0x4F0
Other: [ STV_HIDDEN ]
- Name: .annobin_elf_init.c.startup
Section: .text
Value: 0x4F0
Other: [ STV_HIDDEN ]
- Name: .annobin_elf_init.c_end.startup
Section: .text
Value: 0x4F0
Other: [ STV_HIDDEN ]
- Name: .annobin_elf_init.c.exit
Section: .text
Value: 0x4F0
Other: [ STV_HIDDEN ]
- Name: .annobin_elf_init.c_end.exit
Section: .text
Value: 0x4F0
Other: [ STV_HIDDEN ]
- Name: .annobin___libc_csu_init.start
Section: .text
Value: 0x610
Other: [ STV_HIDDEN ]
- Name: .annobin___libc_csu_init.end
Section: .text
Value: 0x675
Other: [ STV_HIDDEN ]
- Name: .annobin___libc_csu_fini.start
Section: .text
Value: 0x675
Other: [ STV_HIDDEN ]
- Name: .annobin___libc_csu_fini.end
Section: .text
Value: 0x685
Other: [ STV_HIDDEN ]
- Name: crtstuff.c
Type: STT_FILE
Index: SHN_ABS
- Name: deregister_tm_clones
Type: STT_FUNC
Section: .text
Value: 0x520
- Name: register_tm_clones
Type: STT_FUNC
Section: .text
Value: 0x550
- Name: __do_global_dtors_aux
Type: STT_FUNC
Section: .text
Value: 0x590
- Name: completed.7303
Type: STT_OBJECT
Section: .bss
Value: 0x201024
Size: 0x1
- Name: __do_global_dtors_aux_fini_array_entry
Type: STT_OBJECT
Section: .fini_array
Value: 0x200DE8
- Name: frame_dummy
Type: STT_FUNC
Section: .text
Value: 0x5D0
- Name: __frame_dummy_init_array_entry
Type: STT_OBJECT
Section: .init_array
Value: 0x200DE0
- Name: main.c
Type: STT_FILE
Index: SHN_ABS
- Name: foo.c
Type: STT_FILE
Index: SHN_ABS
- Name: 'crtstuff.c (1)'
Type: STT_FILE
Index: SHN_ABS
- Name: __FRAME_END__
Type: STT_OBJECT
Section: .eh_frame
Value: 0x7CC
- Type: STT_FILE
Index: SHN_ABS
- Name: __init_array_end
Section: .init_array
Value: 0x200DE8
- Name: _DYNAMIC
Type: STT_OBJECT
Section: .dynamic
Value: 0x200DF8
- Name: __init_array_start
Section: .init_array
Value: 0x200DE0
- Name: __GNU_EH_FRAME_HDR
Section: .eh_frame_hdr
Value: 0x69C
- Name: _GLOBAL_OFFSET_TABLE_
Type: STT_OBJECT
Section: .got.plt
Value: 0x201000
- Name: _init
Type: STT_FUNC
Section: .init
Value: 0x4B0
- Name: __libc_csu_fini
Type: STT_FUNC
Section: .text
Binding: STB_GLOBAL
Value: 0x680
Size: 0x5
- Name: _ITM_deregisterTMCloneTable
Binding: STB_WEAK
- Name: data_start
Section: .data
Binding: STB_WEAK
Value: 0x201020
- Name: _edata
Section: .data
Binding: STB_GLOBAL
Value: 0x201024
- Name: _fini
Type: STT_FUNC
Section: .fini
Binding: STB_GLOBAL
Value: 0x688
Other: [ STV_HIDDEN ]
- Name: '__libc_start_main@@GLIBC_2.2.5'
Type: STT_FUNC
Binding: STB_GLOBAL
- Name: __data_start
Section: .data
Binding: STB_GLOBAL
Value: 0x201020
- Name: __gmon_start__
Binding: STB_WEAK
- Name: __dso_handle
Type: STT_OBJECT
Section: .data.rel.ro
Binding: STB_GLOBAL
Value: 0x200DF0
Other: [ STV_HIDDEN ]
- Name: _IO_stdin_used
Type: STT_OBJECT
Section: .rodata
Binding: STB_GLOBAL
Value: 0x698
Size: 0x4
- Name: __libc_csu_init
Type: STT_FUNC
Section: .text
Binding: STB_GLOBAL
Value: 0x610
Size: 0x65
- Name: foo
Type: STT_FUNC
Section: .text
Binding: STB_GLOBAL
Value: 0x600
Size: 0xB
- Name: _end
Section: .bss
Binding: STB_GLOBAL
Value: 0x201028
- Name: _start
Type: STT_FUNC
Section: .text
Binding: STB_GLOBAL
Value: 0x4F0
Size: 0x2F
- Name: __bss_start
Section: .bss
Binding: STB_GLOBAL
Value: 0x201024
- Name: main
Type: STT_FUNC
Section: .text
Binding: STB_GLOBAL
Value: 0x5E0
Size: 0x1C
- Name: __TMC_END__
Type: STT_OBJECT
Section: .data
Binding: STB_GLOBAL
Value: 0x201028
Other: [ STV_HIDDEN ]
- Name: _ITM_registerTMCloneTable
Binding: STB_WEAK
- Name: '__cxa_finalize@@GLIBC_2.2.5'
Type: STT_FUNC
Binding: STB_WEAK
DynamicSymbols:
- Name: _ITM_deregisterTMCloneTable
Binding: STB_WEAK
- Name: __libc_start_main
Type: STT_FUNC
Binding: STB_GLOBAL
- Name: __gmon_start__
Binding: STB_WEAK
- Name: _ITM_registerTMCloneTable
Binding: STB_WEAK
- Name: __cxa_finalize
Type: STT_FUNC
Binding: STB_WEAK
DWARF:
debug_str:
- .
- a.out-main.dwo
- a.out-foo.dwo
debug_addr:
- Length: 0xC
Version: 0x5
AddressSize: 0x8
Entries:
- Address: 0x5E0
- Length: 0xC
Version: 0x5
AddressSize: 0x8
Entries:
- Address: 0x600
...
|