404

[ Avaa Bypassed ]




Upload:

Command:

botdev@18.188.163.236: ~ $
/* Script for -pie -z combreloc -z separate-code: position independent executable, combine & sort relocs with separate code segment */
/* Copyright (C) 2014-2018 Free Software Foundation, Inc.
   Copying and distribution of this script, with or without modification,
   are permitted in any medium without royalty provided the copyright
   notice and this notice are preserved.  */
OUTPUT_FORMAT("elf32-x86-64", "elf32-x86-64",
	      "elf32-x86-64")
OUTPUT_ARCH(i386:x64-32)
ENTRY(_start)
SEARCH_DIR("=/usr/local/lib/x86_64-linux-gnux32"); SEARCH_DIR("=/lib/x86_64-linux-gnux32"); SEARCH_DIR("=/usr/lib/x86_64-linux-gnux32"); SEARCH_DIR("=/usr/local/lib/i386-linux-gnu"); SEARCH_DIR("=/lib/i386-linux-gnu"); SEARCH_DIR("=/usr/lib/i386-linux-gnu"); SEARCH_DIR("=/usr/local/libx32"); SEARCH_DIR("=/libx32"); SEARCH_DIR("=/usr/libx32"); SEARCH_DIR("=/usr/lib/x86_64-linux-gnu"); SEARCH_DIR("=/usr/local/lib"); SEARCH_DIR("=/lib"); SEARCH_DIR("=/usr/lib"); SEARCH_DIR("=/usr/x86_64-linux-gnu/libx32"); SEARCH_DIR("=/usr/x86_64-linux-gnu/lib");
SECTIONS
{
  /* Read-only sections, merged into text segment: */
  PROVIDE (__executable_start = SEGMENT_START("text-segment", 0)); . = SEGMENT_START("text-segment", 0) + SIZEOF_HEADERS;
  .interp         : { *(.interp) }
  .note.gnu.build-id : { *(.note.gnu.build-id) }
  .hash           : { *(.hash) }
  .gnu.hash       : { *(.gnu.hash) }
  .dynsym         : { *(.dynsym) }
  .dynstr         : { *(.dynstr) }
  .gnu.version    : { *(.gnu.version) }
  .gnu.version_d  : { *(.gnu.version_d) }
  .gnu.version_r  : { *(.gnu.version_r) }
  .rela.dyn       :
    {
      *(.rela.init)
      *(.rela.text .rela.text.* .rela.gnu.linkonce.t.*)
      *(.rela.fini)
      *(.rela.rodata .rela.rodata.* .rela.gnu.linkonce.r.*)
      *(.rela.data .rela.data.* .rela.gnu.linkonce.d.*)
      *(.rela.tdata .rela.tdata.* .rela.gnu.linkonce.td.*)
      *(.rela.tbss .rela.tbss.* .rela.gnu.linkonce.tb.*)
      *(.rela.ctors)
      *(.rela.dtors)
      *(.rela.got)
      *(.rela.bss .rela.bss.* .rela.gnu.linkonce.b.*)
      *(.rela.ldata .rela.ldata.* .rela.gnu.linkonce.l.*)
      *(.rela.lbss .rela.lbss.* .rela.gnu.linkonce.lb.*)
      *(.rela.lrodata .rela.lrodata.* .rela.gnu.linkonce.lr.*)
      *(.rela.ifunc)
    }
  .rela.plt       :
    {
      *(.rela.plt)
      PROVIDE_HIDDEN (__rela_iplt_start = .);
      *(.rela.iplt)
      PROVIDE_HIDDEN (__rela_iplt_end = .);
    }
  . = ALIGN(CONSTANT (MAXPAGESIZE));
  .init           :
  {
    KEEP (*(SORT_NONE(.init)))
  }
  .plt            : { *(.plt) *(.iplt) }
.plt.got        : { *(.plt.got) }
.plt.sec        : { *(.plt.sec) }
  .text           :
  {
    *(.text.unlikely .text.*_unlikely .text.unlikely.*)
    *(.text.exit .text.exit.*)
    *(.text.startup .text.startup.*)
    *(.text.hot .text.hot.*)
    *(.text .stub .text.* .gnu.linkonce.t.*)
    /* .gnu.warning sections are handled specially by elf32.em.  */
    *(.gnu.warning)
  }
  .fini           :
  {
    KEEP (*(SORT_NONE(.fini)))
  }
  PROVIDE (__etext = .);
  PROVIDE (_etext = .);
  PROVIDE (etext = .);
  . = ALIGN(CONSTANT (MAXPAGESIZE));
  /* Adjust the address for the rodata segment.  We want to adjust up to
     the same address within the page on the next page up.  */
  . = SEGMENT_START("rodata-segment", ALIGN(CONSTANT (MAXPAGESIZE)) + (. & (CONSTANT (MAXPAGESIZE) - 1)));
  .rodata         : { *(.rodata .rodata.* .gnu.linkonce.r.*) }
  .rodata1        : { *(.rodata1) }
  .eh_frame_hdr : { *(.eh_frame_hdr) *(.eh_frame_entry .eh_frame_entry.*) }
  .eh_frame       : ONLY_IF_RO { KEEP (*(.eh_frame)) *(.eh_frame.*) }
  .gcc_except_table   : ONLY_IF_RO { *(.gcc_except_table
  .gcc_except_table.*) }
  .gnu_extab   : ONLY_IF_RO { *(.gnu_extab*) }
  /* These sections are generated by the Sun/Oracle C++ compiler.  */
  .exception_ranges   : ONLY_IF_RO { *(.exception_ranges
  .exception_ranges*) }
  /* Adjust the address for the data segment.  We want to adjust up to
     the same address within the page on the next page up.  */
  . = DATA_SEGMENT_ALIGN (CONSTANT (MAXPAGESIZE), CONSTANT (COMMONPAGESIZE));
  /* Exception handling  */
  .eh_frame       : ONLY_IF_RW { KEEP (*(.eh_frame)) *(.eh_frame.*) }
  .gnu_extab      : ONLY_IF_RW { *(.gnu_extab) }
  .gcc_except_table   : ONLY_IF_RW { *(.gcc_except_table .gcc_except_table.*) }
  .exception_ranges   : ONLY_IF_RW { *(.exception_ranges .exception_ranges*) }
  /* Thread Local Storage sections  */
  .tdata	  : { *(.tdata .tdata.* .gnu.linkonce.td.*) }
  .tbss		  : { *(.tbss .tbss.* .gnu.linkonce.tb.*) *(.tcommon) }
  .preinit_array     :
  {
    PROVIDE_HIDDEN (__preinit_array_start = .);
    KEEP (*(.preinit_array))
    PROVIDE_HIDDEN (__preinit_array_end = .);
  }
  .init_array     :
  {
    PROVIDE_HIDDEN (__init_array_start = .);
    KEEP (*(SORT_BY_INIT_PRIORITY(.init_array.*) SORT_BY_INIT_PRIORITY(.ctors.*)))
    KEEP (*(.init_array EXCLUDE_FILE (*crtbegin.o *crtbegin?.o *crtend.o *crtend?.o ) .ctors))
    PROVIDE_HIDDEN (__init_array_end = .);
  }
  .fini_array     :
  {
    PROVIDE_HIDDEN (__fini_array_start = .);
    KEEP (*(SORT_BY_INIT_PRIORITY(.fini_array.*) SORT_BY_INIT_PRIORITY(.dtors.*)))
    KEEP (*(.fini_array EXCLUDE_FILE (*crtbegin.o *crtbegin?.o *crtend.o *crtend?.o ) .dtors))
    PROVIDE_HIDDEN (__fini_array_end = .);
  }
  .ctors          :
  {
    /* gcc uses crtbegin.o to find the start of
       the constructors, so we make sure it is
       first.  Because this is a wildcard, it
       doesn't matter if the user does not
       actually link against crtbegin.o; the
       linker won't look for a file to match a
       wildcard.  The wildcard also means that it
       doesn't matter which directory crtbegin.o
       is in.  */
    KEEP (*crtbegin.o(.ctors))
    KEEP (*crtbegin?.o(.ctors))
    /* We don't want to include the .ctor section from
       the crtend.o file until after the sorted ctors.
       The .ctor section from the crtend file contains the
       end of ctors marker and it must be last */
    KEEP (*(EXCLUDE_FILE (*crtend.o *crtend?.o ) .ctors))
    KEEP (*(SORT(.ctors.*)))
    KEEP (*(.ctors))
  }
  .dtors          :
  {
    KEEP (*crtbegin.o(.dtors))
    KEEP (*crtbegin?.o(.dtors))
    KEEP (*(EXCLUDE_FILE (*crtend.o *crtend?.o ) .dtors))
    KEEP (*(SORT(.dtors.*)))
    KEEP (*(.dtors))
  }
  .jcr            : { KEEP (*(.jcr)) }
  .data.rel.ro : { *(.data.rel.ro.local* .gnu.linkonce.d.rel.ro.local.*) *(.data.rel.ro .data.rel.ro.* .gnu.linkonce.d.rel.ro.*) }
  .dynamic        : { *(.dynamic) }
  .got            : { *(.got) *(.igot) }
  . = DATA_SEGMENT_RELRO_END (SIZEOF (.got.plt) >= 24 ? 24 : 0, .);
  .got.plt        : { *(.got.plt)  *(.igot.plt) }
  .data           :
  {
    *(.data .data.* .gnu.linkonce.d.*)
    SORT(CONSTRUCTORS)
  }
  .data1          : { *(.data1) }
  _edata = .; PROVIDE (edata = .);
  . = .;
  __bss_start = .;
  .bss            :
  {
   *(.dynbss)
   *(.bss .bss.* .gnu.linkonce.b.*)
   *(COMMON)
   /* Align here to ensure that the .bss section occupies space up to
      _end.  Align after .bss to ensure correct alignment even if the
      .bss section disappears because there are no input sections.
      FIXME: Why do we need it? When there is no .bss section, we don't
      pad the .data section.  */
   . = ALIGN(. != 0 ? 32 / 8 : 1);
  }
  .lbss   :
  {
    *(.dynlbss)
    *(.lbss .lbss.* .gnu.linkonce.lb.*)
    *(LARGE_COMMON)
  }
  . = ALIGN(32 / 8);
  . = SEGMENT_START("ldata-segment", .);
  .lrodata   ALIGN(CONSTANT (MAXPAGESIZE)) + (. & (CONSTANT (MAXPAGESIZE) - 1)) :
  {
    *(.lrodata .lrodata.* .gnu.linkonce.lr.*)
  }
  .ldata   ALIGN(CONSTANT (MAXPAGESIZE)) + (. & (CONSTANT (MAXPAGESIZE) - 1)) :
  {
    *(.ldata .ldata.* .gnu.linkonce.l.*)
    . = ALIGN(. != 0 ? 32 / 8 : 1);
  }
  . = ALIGN(32 / 8);
  _end = .; PROVIDE (end = .);
  . = DATA_SEGMENT_END (.);
  /* Stabs debugging sections.  */
  .stab          0 : { *(.stab) }
  .stabstr       0 : { *(.stabstr) }
  .stab.excl     0 : { *(.stab.excl) }
  .stab.exclstr  0 : { *(.stab.exclstr) }
  .stab.index    0 : { *(.stab.index) }
  .stab.indexstr 0 : { *(.stab.indexstr) }
  .comment       0 : { *(.comment) }
  /* DWARF debug sections.
     Symbols in the DWARF debugging sections are relative to the beginning
     of the section so we begin them at 0.  */
  /* DWARF 1 */
  .debug          0 : { *(.debug) }
  .line           0 : { *(.line) }
  /* GNU DWARF 1 extensions */
  .debug_srcinfo  0 : { *(.debug_srcinfo) }
  .debug_sfnames  0 : { *(.debug_sfnames) }
  /* DWARF 1.1 and DWARF 2 */
  .debug_aranges  0 : { *(.debug_aranges) }
  .debug_pubnames 0 : { *(.debug_pubnames) }
  /* DWARF 2 */
  .debug_info     0 : { *(.debug_info .gnu.linkonce.wi.*) }
  .debug_abbrev   0 : { *(.debug_abbrev) }
  .debug_line     0 : { *(.debug_line .debug_line.* .debug_line_end ) }
  .debug_frame    0 : { *(.debug_frame) }
  .debug_str      0 : { *(.debug_str) }
  .debug_loc      0 : { *(.debug_loc) }
  .debug_macinfo  0 : { *(.debug_macinfo) }
  /* SGI/MIPS DWARF 2 extensions */
  .debug_weaknames 0 : { *(.debug_weaknames) }
  .debug_funcnames 0 : { *(.debug_funcnames) }
  .debug_typenames 0 : { *(.debug_typenames) }
  .debug_varnames  0 : { *(.debug_varnames) }
  /* DWARF 3 */
  .debug_pubtypes 0 : { *(.debug_pubtypes) }
  .debug_ranges   0 : { *(.debug_ranges) }
  /* DWARF Extension.  */
  .debug_macro    0 : { *(.debug_macro) }
  .debug_addr     0 : { *(.debug_addr) }
  .gnu.attributes 0 : { KEEP (*(.gnu.attributes)) }
  /DISCARD/ : { *(.note.GNU-stack) *(.gnu_debuglink) *(.gnu.lto_*) }
}

Filemanager

Name Type Size Permission Actions
elf32_x86_64.x File 9.25 KB 0644
elf32_x86_64.xbn File 9.1 KB 0644
elf32_x86_64.xc File 8.93 KB 0644
elf32_x86_64.xce File 9.28 KB 0644
elf32_x86_64.xd File 9.24 KB 0644
elf32_x86_64.xdc File 8.95 KB 0644
elf32_x86_64.xdce File 9.3 KB 0644
elf32_x86_64.xde File 9.59 KB 0644
elf32_x86_64.xdw File 8.91 KB 0644
elf32_x86_64.xdwe File 9.26 KB 0644
elf32_x86_64.xe File 9.59 KB 0644
elf32_x86_64.xn File 9.25 KB 0644
elf32_x86_64.xr File 5.29 KB 0644
elf32_x86_64.xs File 8.78 KB 0644
elf32_x86_64.xsc File 8.48 KB 0644
elf32_x86_64.xsce File 8.84 KB 0644
elf32_x86_64.xse File 9.13 KB 0644
elf32_x86_64.xsw File 8.44 KB 0644
elf32_x86_64.xswe File 8.8 KB 0644
elf32_x86_64.xu File 5.33 KB 0644
elf32_x86_64.xw File 8.89 KB 0644
elf32_x86_64.xwe File 9.25 KB 0644
elf_i386.x File 8.53 KB 0644
elf_i386.xbn File 8.39 KB 0644
elf_i386.xc File 8.35 KB 0644
elf_i386.xce File 8.7 KB 0644
elf_i386.xd File 8.53 KB 0644
elf_i386.xdc File 8.36 KB 0644
elf_i386.xdce File 8.71 KB 0644
elf_i386.xde File 8.88 KB 0644
elf_i386.xdw File 8.32 KB 0644
elf_i386.xdwe File 8.67 KB 0644
elf_i386.xe File 8.88 KB 0644
elf_i386.xn File 8.53 KB 0644
elf_i386.xr File 5 KB 0644
elf_i386.xs File 8.07 KB 0644
elf_i386.xsc File 7.9 KB 0644
elf_i386.xsce File 8.25 KB 0644
elf_i386.xse File 8.42 KB 0644
elf_i386.xsw File 7.86 KB 0644
elf_i386.xswe File 8.21 KB 0644
elf_i386.xu File 5.05 KB 0644
elf_i386.xw File 8.31 KB 0644
elf_i386.xwe File 8.66 KB 0644
elf_iamcu.x File 8.26 KB 0644
elf_iamcu.xbn File 8.12 KB 0644
elf_iamcu.xc File 8.08 KB 0644
elf_iamcu.xce File 8.43 KB 0644
elf_iamcu.xd File 8.26 KB 0644
elf_iamcu.xdc File 8.09 KB 0644
elf_iamcu.xdce File 8.44 KB 0644
elf_iamcu.xde File 8.61 KB 0644
elf_iamcu.xdw File 8.05 KB 0644
elf_iamcu.xdwe File 8.4 KB 0644
elf_iamcu.xe File 8.61 KB 0644
elf_iamcu.xn File 8.26 KB 0644
elf_iamcu.xr File 4.97 KB 0644
elf_iamcu.xs File 7.8 KB 0644
elf_iamcu.xsc File 7.63 KB 0644
elf_iamcu.xsce File 7.98 KB 0644
elf_iamcu.xse File 8.15 KB 0644
elf_iamcu.xsw File 7.59 KB 0644
elf_iamcu.xswe File 7.94 KB 0644
elf_iamcu.xu File 5.02 KB 0644
elf_iamcu.xw File 8.04 KB 0644
elf_iamcu.xwe File 8.39 KB 0644
elf_k1om.x File 8.87 KB 0644
elf_k1om.xbn File 8.73 KB 0644
elf_k1om.xc File 8.56 KB 0644
elf_k1om.xce File 8.91 KB 0644
elf_k1om.xd File 8.87 KB 0644
elf_k1om.xdc File 8.57 KB 0644
elf_k1om.xdce File 8.92 KB 0644
elf_k1om.xde File 9.22 KB 0644
elf_k1om.xdw File 8.53 KB 0644
elf_k1om.xdwe File 8.88 KB 0644
elf_k1om.xe File 9.22 KB 0644
elf_k1om.xn File 8.87 KB 0644
elf_k1om.xr File 5.21 KB 0644
elf_k1om.xs File 8.4 KB 0644
elf_k1om.xsc File 8.11 KB 0644
elf_k1om.xsce File 8.46 KB 0644
elf_k1om.xse File 8.76 KB 0644
elf_k1om.xsw File 8.07 KB 0644
elf_k1om.xswe File 8.42 KB 0644
elf_k1om.xu File 5.26 KB 0644
elf_k1om.xw File 8.52 KB 0644
elf_k1om.xwe File 8.87 KB 0644
elf_l1om.x File 8.87 KB 0644
elf_l1om.xbn File 8.73 KB 0644
elf_l1om.xc File 8.56 KB 0644
elf_l1om.xce File 8.91 KB 0644
elf_l1om.xd File 8.87 KB 0644
elf_l1om.xdc File 8.57 KB 0644
elf_l1om.xdce File 8.92 KB 0644
elf_l1om.xde File 9.22 KB 0644
elf_l1om.xdw File 8.53 KB 0644
elf_l1om.xdwe File 8.88 KB 0644
elf_l1om.xe File 9.22 KB 0644
elf_l1om.xn File 8.87 KB 0644
elf_l1om.xr File 5.21 KB 0644
elf_l1om.xs File 8.4 KB 0644
elf_l1om.xsc File 8.11 KB 0644
elf_l1om.xsce File 8.46 KB 0644
elf_l1om.xse File 8.76 KB 0644
elf_l1om.xsw File 8.07 KB 0644
elf_l1om.xswe File 8.42 KB 0644
elf_l1om.xu File 5.26 KB 0644
elf_l1om.xw File 8.52 KB 0644
elf_l1om.xwe File 8.87 KB 0644
elf_x86_64.x File 9.12 KB 0644
elf_x86_64.xbn File 8.97 KB 0644
elf_x86_64.xc File 8.8 KB 0644
elf_x86_64.xce File 9.15 KB 0644
elf_x86_64.xd File 9.11 KB 0644
elf_x86_64.xdc File 8.82 KB 0644
elf_x86_64.xdce File 9.17 KB 0644
elf_x86_64.xde File 9.46 KB 0644
elf_x86_64.xdw File 8.78 KB 0644
elf_x86_64.xdwe File 9.13 KB 0644
elf_x86_64.xe File 9.46 KB 0644
elf_x86_64.xn File 9.12 KB 0644
elf_x86_64.xr File 5.29 KB 0644
elf_x86_64.xs File 8.65 KB 0644
elf_x86_64.xsc File 8.35 KB 0644
elf_x86_64.xsce File 8.71 KB 0644
elf_x86_64.xse File 9 KB 0644
elf_x86_64.xsw File 8.31 KB 0644
elf_x86_64.xswe File 8.67 KB 0644
elf_x86_64.xu File 5.33 KB 0644
elf_x86_64.xw File 8.76 KB 0644
elf_x86_64.xwe File 9.12 KB 0644
i386linux.x File 1.11 KB 0644
i386linux.xbn File 1.11 KB 0644
i386linux.xe File 1.15 KB 0644
i386linux.xn File 1.11 KB 0644
i386linux.xr File 895 B 0644
i386linux.xu File 935 B 0644
i386pe.x File 8.92 KB 0644
i386pe.xa File 8.97 KB 0644
i386pe.xbn File 8.94 KB 0644
i386pe.xe File 8.96 KB 0644
i386pe.xn File 8.92 KB 0644
i386pe.xr File 3.93 KB 0644
i386pe.xu File 5.09 KB 0644
i386pep.x File 9.23 KB 0644
i386pep.xa File 9.29 KB 0644
i386pep.xbn File 9.25 KB 0644
i386pep.xe File 9.27 KB 0644
i386pep.xn File 9.23 KB 0644
i386pep.xr File 4.18 KB 0644
i386pep.xu File 5.4 KB 0644