Files
wevads-platform/scripts/sms-gateway.php
2026-02-26 04:53:11 +01:00

37 lines
1.4 KiB
PHP
Executable File

<?php
require_once '../vendor/autoload.php';
session_start();
$pageTitle = "DARK SMS INJECTOR";
?>
<div class="container-fluid">
<div class="row">
<div class="col-md-12">
<div class="card bg-dark text-turquoise" style="border: 1px solid #00f2ff;">
<div class="card-header">
<h3><i class="fas fa-sms"></i> SMS INJECTION PANEL</h3>
</div>
<div class="card-body">
<form id="smsForm">
<div class="form-group">
<label>Sender ID (TPOA)</label>
<input type="text" class="form-control bg-black text-white" placeholder="e.g. INFO_SEC">
</div>
<div class="form-group mt-3">
<label>Recipients (One per line)</label>
<textarea class="form-control bg-black text-white" rows="5"></textarea>
</div>
<div class="form-group mt-3">
<label>Message Payload</label>
<textarea class="form-control bg-black text-white" rows="3"></textarea>
</div>
<button type="submit" class="btn btn-turquoise mt-4">LAUNCH INJECTION</button>
</form>
</div>
</div>
</div>
</div>
</div>