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.35
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
www /
html /
bdc.bdcloud.fr /
admin /
system /
Delete
Unzip
Name
Size
Permission
Date
Action
about.php
7.56
KB
-rwxr-x---
2023-04-04 15:50
browser.php
3.33
KB
-rwxr-x---
2023-04-04 15:50
constall.php
7.58
KB
-rwxr-x---
2023-04-04 15:50
database-tables.php
8.41
KB
-rwxr-x---
2023-04-04 15:50
database.php
5.14
KB
-rwxr-x---
2023-04-04 15:50
dbtable.php
3.67
KB
-rwxr-x---
2023-04-04 15:50
dolibarr.php
23.17
KB
-rwxr-x---
2023-04-04 15:50
filecheck.php
19.17
KB
-rwxr-x---
2023-04-04 15:50
modules.php
14.14
KB
-rwxr-x---
2023-04-04 15:50
os.php
1.68
KB
-rwxr-x---
2023-04-04 15:50
perf.php
24.17
KB
-rwxr-x---
2023-04-04 15:50
phpinfo.php
11.02
KB
-rwxr-x---
2023-04-04 15:50
security.php
31.06
KB
-rwxr-x---
2023-04-04 15:50
web.php
3.16
KB
-rwxr-x---
2023-04-04 15:50
xcache.php
1.98
KB
-rwxr-x---
2023-04-04 15:50
xdebug.php
4.53
KB
-rwxr-x---
2023-04-04 15:50
Save
Rename
<?php /* Copyright (C) 2009-2014 Laurent Destailleur <eldy@users.sourceforge.net> * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see <https://www.gnu.org/licenses/>. */ /** * \file htdocs/admin/system/xdebug.php * \brief Page administration XDebug */ // Load Dolibarr environment require '../../main.inc.php'; $langs->load("admin"); if (!$user->admin) { accessforbidden(); } /* * View */ llxHeader(); print load_fiche_titre("XDebug", '', 'title_setup'); if (!function_exists('xdebug_is_enabled')) { print "<br>\n"; print 'XDebug seems to be not installed. Function xdebug_is_enabled not found.'; llxFooter(); exit; } print '<span class="opacitymedium">'; print $langs->trans("ModuleActivatedMayExposeInformation", $langs->transnoentities("XDebug")); print '</span>'; print '<br><br>'; if (function_exists('socket_create')) { $address = ini_get('xdebug.remote_host') ?ini_get('xdebug.remote_host') : '127.0.0.1'; $port = ini_get('xdebug.remote_port') ?ini_get('xdebug.remote_port') : 9000; print "<strong>Current xdebug setup:</strong><br>\n"; print "* Remote debug setup:<br>\n"; print 'xdebug.remote_enable = '.ini_get('xdebug.remote_enable')."<br>\n"; print 'xdebug.remote_host = '.$address."<br>\n"; print 'xdebug.remote_port = '.$port."<br>\n"; print "* Profiler setup "; if (function_exists('xdebug_get_profiler_filename')) { print xdebug_get_profiler_filename() ? "(currently on into file ".xdebug_get_profiler_filename().")" : "(currently off)"; } else { print "(currenlty not available)"; } print ":<br>\n"; print 'xdebug.profiler_enable = '.ini_get('xdebug.profiler_enable')."<br>\n"; print 'xdebug.profiler_enable_trigger = '.ini_get('xdebug.profiler_enable_trigger')."<br>\n"; print 'xdebug.profiler_output_dir = '.ini_get('xdebug.profiler_output_dir')."<br>\n"; print 'xdebug.profiler_output_name = '.ini_get('xdebug.profiler_output_name')."<br>\n"; print 'xdebug.profiler_append = '.ini_get('xdebug.profiler_append')."<br>\n"; print "<br>\n"; print "To run a debug session, add parameter<br>"; print "* XDEBUG_SESSION_START=aname on your URL. To stop, remove cookie XDEBUG_SESSION_START.<br>\n"; print "To run a profiler session (when xdebug.profiler_enable_trigger=1), add parameter<br>\n"; print "* XDEBUG_PROFILE=aname on each URL.<br>"; print "<br>"; print "<strong>Test debugger server (Eclipse for example):</strong><br>\n"; $socket = socket_create(AF_INET, SOCK_STREAM, SOL_TCP); if (empty($socket)) { die('Unable to prepare a socket'); } //socket_bind($sock, $address, $port) or die('Unable to bind on address='.$address.' port='.$port); //socket_listen($sock); //$client = socket_accept($sock); $client = socket_connect($socket, $address, $port); if ($client) { print "Connection established: ".$client." - address=".$address." port=".$port."<br>\n"; print "There is a Remote debug server at this address.<br>\n"; print "<br>\n"; print "To be sure this debugger accepts input from your PHP server and xdebug, be sure to have\n"; print "your php.ini file with this :<br>\n"; print '<textarea cols="80" rows="16">'."xdebug.remote_enable=on xdebug.remote_handle=dbgp xdebug.remote_host=localhost xdebug.remote_port=9000 xdebug.profiler_enable=0 xdebug.profiler_enable_trigger=1 xdebug.show_local_vars=off xdebug.profiler_output_dir=/tmp/xdebug xdebug.profiler_append=0 ; for xdebug 2.2+ xdebug.trace_enable_trigger=1 xdebug.show_mem_delta=1 xdebug.trace_output_dir=/tmp/trace xdebug.auto_trace=0 </textarea>\n"; print "<br><br>\n"; print 'Then check in your debug server (Eclipse), you have setup:<br> XDebug with same port than in php.ini<br> Allow Remote debug=yes or prompt<br>'."\n"; print "<br>\n"; } else { print socket_strerror(socket_last_error()); print " - Failed to connect to address=".$address." port=".$port."<br>\n"; print "There is no Remote debug server at this address.\n"; } socket_close($socket); } else { print "Can't test if PHPDebug is OK as PHP socket functions are not enabled."; } llxFooter(); $db->close();