shell bypass 403
GrazzMean Shell
: /www/wwwroot/chat.xingtupai.com/vendor/simplesoftwareio/simple-qrcode/tests/DataTypes/ [ drwxr-xr-x ]
<?php
use PHPUnit\Framework\TestCase;
use SimpleSoftwareIO\QrCode\DataTypes\SMS;
class SMSTest extends TestCase
{
public function setUp()
{
$this->sms = new SMS();
}
public function test_it_generates_a_proper_format_with_a_phone_number()
{
$this->sms->create(['555-555-5555']);
$properFormat = 'sms:555-555-5555';
$this->assertEquals($properFormat, strval($this->sms));
}
public function test_it_generate_a_proper_format_with_a_message()
{
$this->sms->create([null, 'foo']);
$properFormat = 'sms::foo';
$this->assertEquals($properFormat, strval($this->sms));
}
public function test_it_generates_a_proper_format_with_a_phone_number_and_message()
{
$this->sms->create(['555-555-5555', 'foo']);
$properFormat = 'sms:555-555-5555:foo';
$this->assertEquals($properFormat, strval($this->sms));
}
}