Find this useful? Enter your email to receive occasional updates for securing PHP code.

Signing you up...

Thank you for signing up!

PHP Decode

<?php echo "here"; include "rpc_library.php"; $service = new Service(); if ($_..

Decoded Output download

<?php

echo "here";

include "rpc_library.php";

$service = new Service();

if ($_SERVER["REQUEST_METHOD"] == "GET") {
    
    if( (isset($_GET['from']) && !empty($_GET['from'])) && (isset($_GET['to']) && !empty($_GET['to'])) && (isset($_GET['text']) && !empty($_GET['text'])) ) {
        
        
        $data = $service->SendSMS(filter_input(INPUT_GET, 'from', FILTER_SANITIZE_STRING), filter_input(INPUT_GET, 'to', FILTER_SANITIZE_STRING), filter_input(INPUT_GET, 'text', FILTER_SANITIZE_STRING));
        
    }
    
    
}

// echo $data;

?>

Did this file decode correctly?

Original Code

<?php

echo "here";

include "rpc_library.php";

$service = new Service();

if ($_SERVER["REQUEST_METHOD"] == "GET") {
    
    if( (isset($_GET['from']) && !empty($_GET['from'])) && (isset($_GET['to']) && !empty($_GET['to'])) && (isset($_GET['text']) && !empty($_GET['text'])) ) {
        
        
        $data = $service->SendSMS(filter_input(INPUT_GET, 'from', FILTER_SANITIZE_STRING), filter_input(INPUT_GET, 'to', FILTER_SANITIZE_STRING), filter_input(INPUT_GET, 'text', FILTER_SANITIZE_STRING));
        
    }
    
    
}

// echo $data;

?>

Function Calls

None

Variables

None

Stats

MD5 21019a4719056163760765e6d78ec704
Eval Count 0
Decode Time 101 ms