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/

Tags: ,

Cloud storage

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:

File Storage - Cloud Storage

There are many cloud storage, search them by using Google. And find the service that suits you better.

Tags: ,

How to check Yahoo Messenger invisible or offline

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.

Tags: ,

LM / NTLM Decrypter

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/

Tags: , , ,

Windows 7 Password Crack

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.

Tags: , ,

Google Panda Algorithm

July 12th, 2011 / 2 Comments » / by admin

Suggestion to survive Panda Algorithm Update

- The website should have quality content, unique and no duplicates from other sites or subdomain.
- Update the website often, few times a week.
- Backlinks only from quality websites.
- The websites loads quickly and no viruses / Trojan.
- Reduce your ads. Because too many ads will effects Google ranking.
- High bounce rate will lower the ranking.
- Avoid link farm.

Tags: ,

Transferring a domain name into another domain hosting

June 20th, 2011 / No Comments » / by admin

Transferring a domain name into another domain hosting is a easy process.
The steps involved in a domain transfer procedure are described below.

Step 1: User adds the domains that needs to be transferred and completes checkout

Step 2: If EPP Key (Authorization Key) is required, then an email with EPP request is sent. (To obtain an EPP key, please contact your current registrar of the domain.)

Step 3: If Step 2 is completed or not required, then the domain is submitted for transfer.

Step 4: An email containing a link is sent to ‘Administrator Email’ for the domain.

Step 5: If the user clicks on the link and approves the transfer, the domain name is transferred to us. (A domain transfer typically takes 7-10 days once all parties agree.)

Step 6: If the domain named is ‘locked’ at the losing registrar, the registrar lock should be removed before proceeding with the transfer. An email is sent if the lock needs to be removed.

Step 7: When the domain is unlocked, the transfer completes successfully.

Tags: ,

How to remove RVHOST.exe

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.

Tags: ,

How to enable registry edit and task manager

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)

Tags:

Download File Function

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’);

}
?>

Source http://php.net/manual/en/function.header.php