Sourcecop Decrypt
January 13th, 2012 / No Comments » / by admin
Need to decrypt php files that encrypted by Sourcecop? Maybe this link will help you.
http://sourcecop.decoder-online.com/
January 13th, 2012 / No Comments » / by admin
Need to decrypt php files that encrypted by Sourcecop? Maybe this link will help you.
http://sourcecop.decoder-online.com/
January 13th, 2012 / No Comments » / by admin
Nowadays, it is not necessary to bring USB Flash Disk when you are on vacation. What you need is create account in cloud storage such as Dropbox, Zumodrive (Yahoo). But in 1 condition, you must connected to the internet.
Dropbox give you 2 Gigabytes of space for free, but of course you can increase the storage quota using paid account type. And you can choose the folder that want you to use. You can also share the folder to friends or clients. The other cloud storage is Zumodrive, integrate with Yahoo email account. And if you install the executable files that provide by Zumodrive, that will create another drive Z:
There are many cloud storage, search them by using Google. And find the service that suits you better.
October 14th, 2011 / No Comments » / by admin
Do you have any friends, supplier, customer or clients that appear offline to you all the time? You can check their status here: http://www.imvisible.info/
And you can find Yahoo Messenger status indicator script here for your lovely website.
There is a tools for Hi5 and Facebook also. Check it out.
September 12th, 2011 / No Comments » / by admin
Here is the useful link to help you decrypt LM / NTLM
http://www.md5decrypter.co.uk/ntlm-decrypt.aspx
You can find more tools also in this web, that will help you a lot.
http://www.md5decrypter.co.uk/
September 12th, 2011 / No Comments » / by admin
If you forgot the password of window 7, maybe you can use this tools (ophcrack).
This Runs on Windows, Linux/Unix, Mac OS X, …
But i only have try in Windows 7 and it works.
Y0u can view the futures of ophcrack and downloads here
Windows XP passwords (LM hashes) Windows Vista passwords (NT hashes).
If you are using other harddisk that contain the windows, you can find the hash here (SAM file):
[windows system]:\windows\system32\config
You will see the windows account in ophcrack, and let you choose what account you want to hack.
July 12th, 2011 / 2 Comments » / by admin
Suggestion to survive Panda Algorithm Update
June 20th, 2011 / No Comments » / by admin
May 31st, 2011 / No Comments » / by admin
RVHOST.exe will disable your task manager and registry, so you have to enable the registry first using this method (how to enable registry edit and task manager).
1. Run Regedit, find and delete all RVHOST registry.
2. Search RVHOST.exe from your windows explorer.
3. Now you can use your anti virus to re-check your computer.
May 31st, 2011 / No Comments » / by admin
Open your notepad and write this code
On Error Resume Next
Set shl = CreateObject(“WScript.Shell”)
Set fso = CreateObject(“scripting.FileSystemObject”)
shl.RegDelete “HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\System\DisableRegistryTools”
shl.RegDelete “HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\System\DisableTaskMgr”
shl.RegDelete
save it as *.vbs, run it (you can double click the file)
April 8th, 2011 / No Comments » / by admin
Here is the function for Download many file:
<?php
function downloadFile( $fullPath ){// Must be fresh start
if( headers_sent() )
die(‘Headers Sent’);// Required for some browsers
if(ini_get(‘zlib.output_compression’))
ini_set(‘zlib.output_compression’, ’Off’);// File Exists?
if( file_exists($fullPath) ){// Parse Info / Get Extension
$fsize = filesize($fullPath);
$path_parts = pathinfo($fullPath);
$ext = strtolower($path_parts["extension"]);// Determine Content Type
switch ($ext) {
case ”pdf”: $ctype=”application/pdf”; break;
case ”exe”: $ctype=”application/octet-stream”; break;
case ”zip”: $ctype=”application/zip”; break;
case ”doc”: $ctype=”application/msword”; break;
case ”xls”: $ctype=”application/vnd.ms-excel”; break;
case ”ppt”: $ctype=”application/vnd.ms-powerpoint”; break;
case ”gif”: $ctype=”image/gif”; break;
case ”png”: $ctype=”image/png”; break;
case ”jpeg”:
case ”jpg”: $ctype=”image/jpg”; break;
default: $ctype=”application/force-download”;
}header(“Pragma: public”); // required
header(“Expires: 0″);
header(“Cache-Control: must-revalidate, post-check=0, pre-check=0″);
header(“Cache-Control: private”,false); // required for certain browsers
header(“Content-Type: $ctype”);
header(“Content-Disposition: attachment; filename=\”".basename($fullPath).”\”;” );
header(“Content-Transfer-Encoding: binary”);
header(“Content-Length: “.$fsize);
ob_clean();
flush();
readfile( $fullPath );} else
die(‘File Not Found’);}
?>