Example #1
0
function SetSessionID()
{
    global $salt_id;
    $fhan = fopen_per("temp_sid.php", "w");
    fputs($fhan, "<" . "?php\n");
    //echo $salt_id;
    fputs($fhan, '$niche_sid=\'' . $salt_id . '\';' . "\n");
    fputs($fhan, "?" . ">");
    fclose($fhan);
}
Example #2
0
function LID_Init()
{
    global $arg_file_handle, $link_index;
    $arg_file_handle = fopen_per("temp_argument.php", "wb");
    $tmp_write = "<" . "?php\r\n\t\t\t\t\t\tinclude_once 'security.php';\r\n\t\t\t\t\t\t" . 'if(isset($_GET[' . "'LID'])==TRUE){\r\n\t\t\t\t\t\t" . 'switch($_GET' . "['LID']){\n";
    //have fun reading that up above....
    $link_index = 0;
    fwrite($arg_file_handle, $tmp_write);
}