[CONTEST] Who Can De-Obfuscate This
#11
(02-28-2016, 01:38 AM)El!teHax0rPr0 Wrote:
(02-28-2016, 01:33 AM)Anonymous Wrote:
(02-28-2016, 01:28 AM)El!teHax0rPr0 Wrote:
(02-28-2016, 01:21 AM)KeyBase Wrote:
(02-28-2016, 01:19 AM)El!teHax0rPr0 Wrote: Good guess? it outputs a string, it's not anything secret. The whole explanation is on that site as well as a tool that I cba to download.


Not to mention the same method was released a few years ago.....

There are alot of background calculations going on, and classes, i asked you to decrypt, not mimic the output Tongue

Background calculations and classes to output a string?

Not to mention, this is completely ripped off. So, congrats on showing off something you copied. - Change the comment name and call it your own.

His obfuscator made it. Even if he's not the one who created the original method, he made a tool to implement the method. Fair game to me.

I suppose. Just felt like pointing it out. Smile
Dude, you're a skid  Big Grin

You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '\'' at line 1

[Image: dzn6AKe.png]
Reply
#12
This is my try :O

http://pastebin.com/k24FK5iK
Reply
#13
(03-01-2016, 03:21 AM)BeatHimUp Wrote: This is my try :O

http://pastebin.com/k24FK5iK

RottenCode Smile

You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '\'' at line 1

[Image: dzn6AKe.png]
Reply
#14
(03-01-2016, 03:21 AM)BeatHimUp Wrote: This is my try :O

http://pastebin.com/k24FK5iK

That's not it, thats just the ROT encrypted code underneath. I previously linked tools to deobfuscate this and where he got this method from. Read the replies.
Reply
#15
(03-01-2016, 03:28 AM)El!teHax0rPr0 Wrote:
(03-01-2016, 03:21 AM)BeatHimUp Wrote: This is my try :O

http://pastebin.com/k24FK5iK

That's not it, thats just the ROT encrypted code underneath. I previously linked tools to deobfuscate this and where he got this method from. Read the replies.

I see, didn't read the replies, my bad  Noh
Reply
#16
Nobody got it, Here is the source for it.

PHP Code:
<?php
echo "DemonForums";

class 
myIterator implements Iterator {
 
   private $position 0;
 
   private $array = array(
 
       "firstelement",
 
       "secondelement",
 
       "lastelement",
 
   );  

    public 
function __construct() {
 
       $this->position 0;
 
   }

 
   function rewind() {
 
       
        $this
->position 0;
 
   }

 
   function current() {
 
       
        return $this
->array[$this->position];
 
   }

 
   function key() {
 
       
        return $this
->position;
 
   }

 
   function next() {
 
      
        
++$this->position;
 
   }

 
   function valid() {
 
       
        return 
isset($this->array[$this->position]);
 
   }
}

$it = new myIterator;

foreach(
$it as $key => $value) {
 
   
    echo 
"\n";
}
?>

You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '\'' at line 1

[Image: dzn6AKe.png]
Reply
#17
1+1
<?
php
echo 'demonforums.net';
?>
Reply
#18
(05-07-2016, 09:51 PM)datadealer Wrote: 1+1
<?
php
echo 'demonforums.net';
?>

Incorrect.

Source has been released in the reply above yours

You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '\'' at line 1

[Image: dzn6AKe.png]
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)