403Webshell
Server IP : 121.121.20.254  /  Your IP : 216.73.216.70
Web Server : Microsoft-IIS/10.0
System : Windows NT WEB-SERVER 10.0 build 20348 (Windows Server 2022) AMD64
User : IUSR ( 0)
PHP Version : 8.3.28
Disable Function : NONE
MySQL : ON  |  cURL : ON  |  WGET : OFF  |  Perl : OFF  |  Python : OFF  |  Sudo : OFF  |  Pkexec : OFF
Directory :  C:/inetpub/wwwroot/AIWEBSTATION/wp-content/plugins/whatsapp-chatbot-addon/includes/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : C:/inetpub/wwwroot/AIWEBSTATION/wp-content/plugins/whatsapp-chatbot-addon/includes/request.php
<?php

/**
 * WhatsApp webhook Request class
 * 
 * @since 1.0.0
 */
class Qcld_WA_Request {

    /**
     * Account Sid
     *
     * @var string
     * 
     * @since 1.0.0
     */
    private $AccountSid = '';

    /**
     * Api Version
     *
     * @var string
     * 
     * @since 1.0.0
     */
    private $ApiVersion = '';

    /**
     * Request body
     *
     * @var string
     * 
     * @since 1.0.0
     */
    private $Body = '';

    /**
     * From whatsApp Number
     * 
     * @var string
     * 
     * @since 1.0.0
     */
    private $From = '';

    /**
     * Message Sid
     *
     * @var string
     * 
     * @since 1.0.0
     */
    private $MessageSid = '';

    /**
     * Number of Media
     *
     * @var int
     * 
     * @since 1.0.0
     */
    private $NumMedia = 0;

    /**
     * Number of Segments
     *
     * @var int
     * 
     * @since 1.0.0
     */
    private $NumSegments = 0;

    /**
     * Profile Name
     *
     * @var string
     * 
     * @since 1.0.0
     */
    private $ProfileName = '';

    /**
     * Sms Message Sid
     *
     * @var string
     * 
     * @since 1.0.0
     */
    private $SmsMessageSid = '';

    /**
     * Sms Sid
     * 
     * @var string
     * 
     * @since 1.0.0
     */
    private $SmsSid = '';

    /**
     * Sms Status
     *
     * @var string
     * 
     * @since 1.0.0
     */
    private $SmsStatus = '';

    /**
     * To WhatsApp number
     *
     * @var string
     * 
     * @since 1.0.0
     */
    private $To = '';

    /**
     * WaId
     *
     * @var string
     * 
     * @since 1.0.0
     */
    private $WaId = '';

    /**
     * Construction
     * 
     * @since 0.0.9
     * @param null
     * @return null
     */
    public function __construct(){

        $data = $_POST;

        $this->AccountSid = isset( $data['AccountSid'] ) ? $data['AccountSid'] : '';
        $this->ApiVersion = isset( $data['ApiVersion'] ) ? $data['ApiVersion'] : '';
        $this->Body = isset( $data['Body'] ) ? $data['Body'] : '';
        $this->From = isset( $data['From'] ) ? $data['From'] : '';
        $this->MessageSid = isset( $data['MessageSid'] ) ? $data['MessageSid'] : '';
        $this->NumMedia = isset( $data['NumMedia'] ) ? $data['NumMedia'] : 0;
        $this->NumSegments = isset( $data['NumSegments'] ) ? $data['NumSegments'] : 1;
        $this->ProfileName = isset( $data['ProfileName'] ) ? $data['ProfileName'] : '';
        $this->SmsMessageSid = isset( $data['SmsMessageSid'] ) ? $data['SmsMessageSid'] : '';
        $this->SmsSid = isset( $data['SmsSid'] ) ? $data['SmsSid'] : '';
        $this->SmsStatus = isset( $data['SmsStatus'] ) ? $data['SmsStatus'] : '';
        $this->To = isset( $data['To'] ) ? $data['To'] : '';
        $this->WaId = isset( $data['WaId'] ) ? $data['WaId'] : '';
        
    }

    public function getAccountSid() {
        return $this->AccountSid;
    }

    public function getApiVersion() {
        return $this->ApiVersion;
    }

    public function getBody() {
        return $this->Body;
    }

    public function getFrom() {
        return $this->From;
    }

    public function getMessageSid() {
        return $this->MessageSid;
    }

    public function getProfileName() {
        return $this->ProfileName;
    }

    public function getSmsMessageSid() {
        return $this->SmsMessageSid;
    }

    public function getSmsSid() {
        return $this->SmsSid;
    }

    public function getSmsStatus() {
        return $this->SmsStatus;
    }

    public function getTo() {
        return $this->To;
    }

    public function getWaId() {
        return $this->WaId;
    }

}

Youez - 2016 - github.com/yon3zu
LinuXploit