Feature Demos

Testing integrations for Email and File Uploads.

Security Fortress

1. XSS Shield Simulator

Try entering malicious HTML/JS. The system will sanitize it.

2. Active Shields (Headers)

X-Frame-Options SAMEORIGIN
X-XSS-Protection 1; mode=block
X-Content-Type nosniff
HSTS Active

Email Service (PHPMailer)


$app->mail
    ->to('user@example.com')
    ->subject('Hello')
    ->body('<b>Message</b>')
    ->send();
Copy disabled in demo

Fluent Mail Interface

Image Upload (Intervention)


$up = new Upload($_FILES['img']);
$up->save('/path/to/upload', [
    'image_resize' => true,
    'image_x' => 300
]);
Copy disabled in demo

Intervention Image Wrapper

WebSocket Client

Server connects to wss://ws.postman-echo.com/raw, sends message, and waits for reply.

Server Reply:

$ws = new WebSocket('wss://...');
$ws->send('Hello');
$reply = $ws->receive();
Copy disabled in demo

WebSocket Client Usage

Web Push (VAPID)

Push Messaging not supported in this browser.
Subscribed!

* Backend uses minishlink/web-push to send payload to FCM/Mozilla.

Async Export (Queue)

Generate Excel/PDF reports in background (Queue) and notify via Web Push.

Requesting export... check your notifications soon.

Recent Exports

  • No exports found.

API Security (JWT)

1. Get Token

2. Access Protected Route

Queue Monitor (Real-time Config)

ID Job Handler Payload Size Created At Status

Queue is empty. All jobs processed.