NuSphere Forums Forum Index
NuSphere Forums
Reply to topic
Site Admin

Joined: 13 Jul 2003
Posts: 8334
Reply with quote
let me correct a bit. No, if we talk about nucoder 1.4, it does not obfuscate the sources in terms adopted in the area of strong software encoders. In other words, currently it does not rename variables, functions, classes, properties and methods before encoding them. Nevertheless, this feature is planned for the future.

Please note, that a few other php encoders (I'd call them packers) only advertize that they use obfuscation, but really they don't. To make sure that obfuscation is applied, just encode a script like below

Code:
<?php
error_reporting(E_ALL);
ini_set("display_errors", "on");
function test_function($param) {
   echo "test of var1: $var1 \n";
   echo "test of param: $param \n";
   echo "backtrace: ";
   debug_print_backtrace();
   echo "\n";
}

test_function("a param value");


and check how its output. If you see "Undefined variable: var1" it means that var1 remained with its original name. Same goes for test_function in the backtrace output: "backtrace: #0 test_function(a param value)"

_________________
The PHP IDE team
View user's profileFind all posts by dmitriSend private messageVisit poster's website


Joined: 03 Mar 2007
Posts: 72
Reply with quote
ah...Thanks for the correction...

BTW, I did speak with with Yury, and I am buying both products this week.

As always, Dimitri, thanks,

Very few folks know what you do behind the scenes.

Randy
View user's profileFind all posts by randySend private messageVisit poster's website


Joined: 24 Jan 2008
Posts: 15
Reply with quote
so what is the road map...? or the estimated time for the next release?
feeling lonely =[
View user's profileFind all posts by hehachrisSend private message


Joined: 03 Mar 2007
Posts: 72
Reply with quote
um....I think two posts ago I said late march 08 was the best estimate Shocked

Randy
View user's profileFind all posts by randySend private messageVisit poster's website
Road map?
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum
All times are GMT - 5 Hours  
Page 2 of 2  

  
  
 Reply to topic