Jump to content

where do I begin


ballhogjoni

Recommended Posts

Where do I begin with changing this code back to normal before obfuscation?

This is just the first couple of lines of the script.

 

global $HTTP_GET_VARS,$HTTP_POST_VARS,$HTTP_COOKIE_VARS; 
$O1vv=""; 
if ((file_exists("hi.cfg")) && ($O1bh= @ fopen("hi.cfg","r"))) 
{ $O1vv=fread($O1bh,filesize("hi.cfg")); fclose($O1bh); } 
if (((! isset ($GLOBALS[ua])) || ($GLOBALS[ua] == "")) && (strpos($O1vv,"no_copy_global") === FALSE)) 
	{ 
	if (is_array($HTTP_GET_VARS)) 
		{ 
		while ( list ($O1d1,$l1d2)=each($HTTP_GET_VARS)) 
			{ $GLOBALS[$O1d1]=$l1d2; 
			} 
		}

Link to comment
Share on other sites

You'll have to make them up then.  The original programmer also made up the variable names.

 

For example, $O1bh is a file pointer for reading from "hi.cfg".  $O1vv is a buffer for reading from $O1bh.  $O1d1 and $l1d2 look like a key and value from iterating over $HTTP_GET_VARS.

 

If you're not experienced with php you'll have a lot of trouble.. but you'll also learn a lot :)

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.