Linux ns1.utparral.edu.mx 6.8.0-79-generic #79~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Aug 15 16:54:53 UTC 2 x86_64
Apache/2.4.58 (Unix) OpenSSL/1.1.1w PHP/8.2.12 mod_perl/2.0.12 Perl/v5.34.1
: 10.10.1.9 | : 10.10.1.254
Cant Read [ /etc/named.conf ]
daemon
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
README
+ Create Folder
+ Create File
/
opt /
lampp /
lib /
php /
[ HOME SHELL ]
Name
Size
Permission
Action
.channels
[ DIR ]
drwxr-xr-x
.registry
[ DIR ]
drwxr-xr-x
Archive
[ DIR ]
drwxr-xr-x
Auth
[ DIR ]
drwxr-xr-x
Benchmark
[ DIR ]
drwxr-xr-x
build
[ DIR ]
drwxr-xr-x
Cache
[ DIR ]
drwxr-xr-x
Console
[ DIR ]
drwxr-xr-x
Contact
[ DIR ]
drwxr-xr-x
Crypt
[ DIR ]
drwxr-xr-x
data
[ DIR ]
drwxr-xr-x
doc
[ DIR ]
drwxr-xr-x
example
[ DIR ]
drwxr-xr-x
extensions
[ DIR ]
drwxr-xr-x
File
[ DIR ]
drwxr-xr-x
fonts
[ DIR ]
drwxr-xr-x
FSM
[ DIR ]
drwxr-xr-x
HTML
[ DIR ]
drwxr-xr-x
HTTP
[ DIR ]
drwxr-xr-x
I18N
[ DIR ]
drwxr-xr-x
Image
[ DIR ]
drwxr-xr-x
Log
[ DIR ]
drwxr-xr-x
Mail
[ DIR ]
drwxr-xr-x
Math
[ DIR ]
drwxr-xr-x
MDB
[ DIR ]
drwxr-xr-x
MDB2
[ DIR ]
drwxr-xr-x
MP3
[ DIR ]
drwxr-xr-x
Net
[ DIR ]
drwxr-xr-x
Numbers
[ DIR ]
drwxr-xr-x
OS
[ DIR ]
drwxr-xr-x
Pager
[ DIR ]
drwxr-xr-x
Payment_Clieop
[ DIR ]
drwxr-xr-x
PEAR
[ DIR ]
drwxr-xr-x
PHP
[ DIR ]
drwxr-xr-x
PHPUnit
[ DIR ]
drwxr-xr-x
Science
[ DIR ]
drwxr-xr-x
Stream
[ DIR ]
drwxr-xr-x
Structures
[ DIR ]
drwxr-xr-x
SymfonyComponents
[ DIR ]
drwxr-xr-x
System
[ DIR ]
drwxr-xr-x
test
[ DIR ]
drwxr-xr-x
Text
[ DIR ]
drwxr-xr-x
Tree
[ DIR ]
drwxr-xr-x
Var_Dump
[ DIR ]
drwxr-xr-x
XML
[ DIR ]
drwxr-xr-x
.depdb
30.49
KB
-rw-r--r--
.depdblock
0
B
-rw-r--r--
.filemap
178.4
KB
-rw-r--r--
.lock
0
B
-rw-r--r--
Auth.php
38.4
KB
-rw-r--r--
Cache.php
10.78
KB
-rw-r--r--
Cezpdf.php
80.11
KB
-rw-r--r--
Contact_Vcard_Build.php
929
B
-rw-r--r--
Contact_Vcard_Parse.php
927
B
-rw-r--r--
Cpdf.php
149.29
KB
-rw-r--r--
fpdf.php
45.98
KB
-rwxrwxrwx
FSM.php
10.72
KB
-rw-r--r--
HTTP.php
17.95
KB
-rw-r--r--
Log.php
26.37
KB
-rw-r--r--
Mail.php
9.65
KB
-rw-r--r--
MDB2.php
149.14
KB
-rw-r--r--
Pager.php
9.05
KB
-rw-r--r--
pearcmd.php
14.49
KB
-rw-r--r--
PEAR.php
35.32
KB
-rw-r--r--
peclcmd.php
1.08
KB
-rw-r--r--
System.php
20.21
KB
-rw-r--r--
Var_Dump.php
20.38
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : peclcmd.php
<?php /** * PEAR, the PHP Extension and Application Repository * * Command line interface * * PHP versions 4 and 5 * * @category pear * @package PEAR * @author Stig Bakken <ssb@php.net> * @author Tomas V.V.Cox <cox@idecnet.com> * @copyright 1997-2009 The Authors * @license http://opensource.org/licenses/bsd-license.php New BSD License * @link http://pear.php.net/package/PEAR */ /** * @nodep Gtk */ //the space is needed for windows include paths with trailing backslash // http://pear.php.net/bugs/bug.php?id=19482 if ('/opt/lampp/lib/php ' != '@'.'include_path'.'@ ') { ini_set('include_path', trim('/opt/lampp/lib/php '). PATH_SEPARATOR . get_include_path()); $raw = false; } else { // this is a raw, uninstalled pear, either a cvs checkout, or php distro ini_set('include_path', __DIR__ . PATH_SEPARATOR . get_include_path()); $raw = true; } define('PEAR_RUNTYPE', 'pecl'); require_once 'pearcmd.php'; /* * Local variables: * tab-width: 4 * c-basic-offset: 4 * indent-tabs-mode: nil * mode: php * End: */ // vim600:syn=php ?>
Close