Free PHP encoder

Discussion in 'Products & Tools' started by sitescripts, Feb 4, 2014.

?

Is this useful?

  1. Yes

    1 vote(s)
    50.0%
  2. No

    1 vote(s)
    50.0%
  1. #1
    sitescripts, Feb 4, 2014 IP
  2. 会成功的

    会成功的 Peon

    Messages:
    7
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    3
    #2
    Taking a quick look at it, I'd not recommend it. (Unless I'm missing something, which I don't I am)

    You put in:
    echo 'hello';
    PHP:
    You get:
    eval(base64_decode("ZWNobyAnaGVsbG8nOw=="));
    PHP:
    You replace eval with echo:
    echo(base64_decode("ZWNobyAnaGVsbG8nOw=="));
    PHP:
    And you get:
    echo 'hello';
    PHP:
    Back again to our original code, so I would not consider this secure in the slightest.


    You could also simply make your own version of this script with:

    
    if (isset($_POST['code'])) {
        echo 'eval(base64_decode("'.base64_encode ( $_POST['code'] ) . '"));';
    }
    
    PHP:
     
    会成功的, Feb 6, 2014 IP