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 /
doc /
HTML_Progress /
examples /
[ HOME SHELL ]
Name
Size
Permission
Action
generator
[ DIR ]
drwxr-xr-x
horizontal
[ DIR ]
drwxr-xr-x
images
[ DIR ]
drwxr-xr-x
indeterminate
[ DIR ]
drwxr-xr-x
model
[ DIR ]
drwxr-xr-x
monitor
[ DIR ]
drwxr-xr-x
multiple
[ DIR ]
drwxr-xr-x
newshape
[ DIR ]
drwxr-xr-x
observer
[ DIR ]
drwxr-xr-x
preload
[ DIR ]
drwxr-xr-x
screenshots
[ DIR ]
drwxr-xr-x
templates
[ DIR ]
drwxr-xr-x
upload
[ DIR ]
drwxr-xr-x
vertical
[ DIR ]
drwxr-xr-x
examples.css
2.16
KB
-rw-r--r--
highlighter.php
1.23
KB
-rw-r--r--
index.html
8.37
KB
-rw-r--r--
pear-power.png
1.41
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : highlighter.php
<style> .hl-main {font-family: monospace; font-size:13px;} .hl-gutter { background-color: #CCCCCC; padding-right: 10px; font-family: monospace; font-size:13px;} .hl-table {border: solid 1px #000000; } .hl-default { color: #000000; } .hl-code { color: #7f7f33; } .hl-brackets { color: #009966; } .hl-comment { color: #7F7F7F; } .hl-quotes { color: #00007F; } .hl-string { color: #7F0000; } .hl-identifier { color: #000000; } .hl-reserved { color: #7F007F; } .hl-inlinedoc { color: #0000FF; } .hl-var { color: #0066FF; } .hl-url { color: #FF0000; } .hl-special { color: #0000FF; } .hl-number { color: #007F00; } .hl-inlinetags { color: #FF0000; } </style> <?php $ok = false; if (isset($_GET['file'])) { $file = trim($_GET['file']); if ((stristr($file, '../') == false) && (substr($file, 0,2) == './') && (file_exists($file))) { $ok = true; } } if (!$ok) { die ("<b>this syntax is forbidden</b>"); } else { @include_once 'include_path.php'; include_once 'Text/Highlighter.php'; $hl =& Text_Highlighter::factory('PHP',array('numbers'=>HL_NUMBERS_TABLE)); $code = file_get_contents($_GET['file']); $html = $hl->highlight($code); echo $html; } ?>
Close