Linux vps-61133.fhnet.fr 4.9.0-19-amd64 #1 SMP Debian 4.9.320-2 (2022-06-30) x86_64
Apache/2.4.25 (Debian)
Server IP : 93.113.207.21 & Your IP : 216.73.216.112
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
src /
php-7.4.33 /
ext /
sysvshm /
tests /
Delete
Unzip
Name
Size
Permission
Date
Action
001.phpt
940
B
-rw-rw-r--
2022-10-31 11:36
002.phpt
1.75
KB
-rw-rw-r--
2022-10-31 11:36
003.phpt
1.22
KB
-rw-rw-r--
2022-10-31 11:36
004.phpt
986
B
-rw-rw-r--
2022-10-31 11:36
005.phpt
1.43
KB
-rw-rw-r--
2022-10-31 11:36
006.phpt
1.14
KB
-rw-rw-r--
2022-10-31 11:36
007.phpt
933
B
-rw-rw-r--
2022-10-31 11:36
bug72858.phpt
424
B
-rw-rw-r--
2022-10-31 11:36
shutdown_crash_0.phpt
409
B
-rw-rw-r--
2022-10-31 11:36
Save
Rename
--TEST-- shm_attach() tests --SKIPIF-- <?php if (!extension_loaded("sysvshm")){ print 'skip'; } if (!function_exists('ftok')){ print 'skip'; } ?> --FILE-- <?php $key = ftok(__FILE__, 't'); var_dump(shm_attach()); var_dump(shm_attach(1,2,3,4)); var_dump(shm_attach(-1, 0)); var_dump(shm_attach(0, -1)); var_dump(shm_attach(123, -1)); var_dump($s = shm_attach($key, -1)); shm_remove($s); var_dump($s = shm_attach($key, 0)); shm_remove($s); var_dump($s = shm_attach($key, 1024)); shm_remove($key); var_dump($s = shm_attach($key, 1024)); shm_remove($s); var_dump($s = shm_attach($key, 1024, 0666)); shm_remove($s); var_dump($s = shm_attach($key, 1024)); shm_remove($s); var_dump($s = shm_attach($key)); shm_remove($s); echo "Done\n"; ?> --EXPECTF-- Warning: shm_attach() expects at least 1 parameter, 0 given in %s on line %d NULL Warning: shm_attach() expects at most 3 parameters, 4 given in %s on line %d NULL Warning: shm_attach(): Segment size must be greater than zero in %s on line %d bool(false) Warning: shm_attach(): Segment size must be greater than zero in %s on line %d bool(false) Warning: shm_attach(): Segment size must be greater than zero in %s on line %d bool(false) Warning: shm_attach(): Segment size must be greater than zero in %s on line %d bool(false) Warning: shm_remove() expects parameter 1 to be resource, bool given in %s on line %d Warning: shm_attach(): Segment size must be greater than zero in %s on line %d bool(false) Warning: shm_remove() expects parameter 1 to be resource, bool given in %s on line %d resource(%d) of type (sysvshm) Warning: shm_remove() expects parameter 1 to be resource, int given in %s on line %d resource(%d) of type (sysvshm) resource(%d) of type (sysvshm) resource(%d) of type (sysvshm) resource(%d) of type (sysvshm) Done