0xV3NOMx
Linux ip-172-26-7-228 5.4.0-1103-aws #111~18.04.1-Ubuntu SMP Tue May 23 20:04:10 UTC 2023 x86_64



Your IP : 3.145.83.96


Current Path : /var/www/html/sms/
Upload File :
Current File : /var/www/html/sms/sms.php

<?php
//lib16107 lib16103

ini_set('display_errors', 'on');
include("sendsmsapi.php");
ini_set('memory_limit','900M');
ini_set('max_execution_time',0);

$to = trim($_GET['to']);
$text = trim($_GET['text']);

if($to == '' || $text == '')
{
	die();
}

$username = 'logisyhttp';
$password = 'Logis986';
$from = 'UNISOL';
$category = '';
$smsresp = sendsmaapi($username,$password,$from,$to,$text,$category);

echo $smsresp;
?>