Status
Not open for further replies.

Griz

Active Member
36
2010
2
0
Hi everyone,

I'm using a RDP,

I'm wondering if it's possible to change the MD5 hash of some files without using the MD5 script of rapidleech.

Is there a software or a script that allow me to do that ?

Thanks :)
 
5 comments
As sceneguy mentioned, just add a text file or something to the file and the MD5 will be unique. However, I'm pretty sure that filehosts have adopted a more in-depth verification system now, other than hash blacklist comparison.
 
just add or delete a simple file from the Rar file and the hash will also change ! i put 3 credit files in the rar and in case file get deleted i just delete one of them and the hash changes and reupload with no issue ! doing this with DF, UL, Rapidgator and bitshare !
 
i once added this code to phpUploader. modified it a little now..

PHP:
<?php


echo "Your current Path: " . getcwd() . "\n";
$filespath = getcwd();

    $filelist = array();
        
    $handle = opendir($filespath);
        
    while (false !== ($files = readdir($handle)))
{
            
        if ($files !== '.' && $files !== '..')
    {
                
            array_push($filelist, $files);
            
        }
        
    }
        
closedir($handle);

echo "Changing MD5... <br />";
        
flush();
        
sort($filelist);
        
foreach ($filelist as $file)
        {
        

    $handle = fopen($filespath . $file, 'a+');
    if ($handle)
    {
        fwrite($handle, '0');
        echo "<br />MD5 Changed :)";
    }
    else
    {
        echo "<br />Error Changing MD5<br />";
    }   
    fclose($handle);
        
}


?>
You can try it.. can't say if it will work :P

P.S: had tried the code when i was uploading stuffs
 
Status
Not open for further replies.
Back
Top