Masking IP adress
If you have internet in your home and you want to surf the web anonymously then masking your ip is a cool technique to put one side opaque and other side transparent mirror.http://pirateproxy.com go here and just surf via their web this'll generate a false proxy server you. so you are unknown to the world. However these server doesn't downloads any google ads.. are you trying to click your own ads by using these proxy servers... umm i haven't found any of them yet if you know then plz do infrom me i'll research on that..
Visual Basic Viruses
Now many of you feel that creating a virus is impossible especially for you beginners. Well this tutorial shows you how to create a simple virus with just a few lines of code. A virus can be an application that deletes files upon request, this is seen as infecting your computer because by deleting key files you may need to take action to get your computer back to normal. First of all open a new Visual Basic project, a standard exe file..Now it depends on how you want your virus to work, I feel it is best if it is activated once your application is opened so the main code codes in the form load sub.On your project insert a text box ,...
Manually removing Folder inside folder virus
If you want to remove the virus manually,follow the following steps,This problem can be solved manually by deleting all registry keys and files connected with this virus, removing it from startup list and unregistering all corresponding DLLs. To fix this threat, you should: 1. try to eliminate or stop the following run file.. if u can't open the task manager then input the following code... Taskkill /F [Filename] • libedit.dll• newfolder.exe• shelliddono.dll• srv0104.ids• srvidd20.exe2. Delete the following malicious registry entries (if u are not able open registry then please read my previous posts about enabling...
Funny VB Script
Copy the following code in notepad and save it as "fun.vbs" with inverted comma. And have fun. Actually this code opens notepad and begin to type automatically. Even you close the notepad it'll keep typing wherever it finds to type.
CODE:
Set wshshell = wscript.CreateObject("WScript.Shell")
Wshshell.run "notepad"
do
wscript.sleep 400
wshshell.sendkeys "Hi, "
wscript.sleep 400
wshshell.sendkeys "My "
wscript.sleep 400
wshshell.sendkeys "name "
wscript.sleep 200
wshshell.sendkeys "is "
wscript.sleep 400
wshshell.sendkeys "abcd "
wscript.sleep 400
wshshell.sendkeys "efgh. "
wscript.sleep...
Hidden files not showing??
I was facing problem of not showing hidden files even I choose option to show it in the explorer. This problem started since I burrowed pendrive from my friend. This was actually caused by virus. I don't know the specific virus but it is of course either visual basic script or and executable file.That actually changed my registry setting of the hidden files in windows registry so even if u change the option to show Hidden files in the folder options ,you cannot see the hidden files in your system.This is done to protect the virus files which are hidden too.So you need to correct the registry setting to see the hidden files. Oh damn...
Capslock hacking batch code
You often chat and type while surfing arround net. What if your keyboard started being crazy and your mail isn't opening even you've entered the correct passowrd. This simple few lines code enables and disables the capslock key randomly leading to type in capital and small letters repeatedly. Which reults wrong password and zigzag typing. Just go ahead copy and paste the following codes in notepad and save it as "keyboard.vbs" (type with inverted comma)Set wshShell =wscript.CreateObject("WScript.Shell")dowscript.sleep 10wshshell.sendkeys "{CAPSLOCK}"loop
CD tray firmware hacking..
Using a simple visual basic script you can play with the CD tray. The code below is a VB script which opens and closes the CD tray randomly.Copy the codes below paste it in note pad and save it as "CDlay.vbs" with inverted comma. Its not harmful. After saving close the notepad and open the saved file. Now you'll see the magicset wmp = createObject("wmplayer.ocx.7")set drives = wmp.cdromCollectionsub open_saysame()on error resume nextdoif drives.count >= 1 thenfor i = 0 to drives.count - 1drives.item(i).eject()nextend ifloopend subopen_saysame()
Batch series
I think you guyz should have some ideas on *.bat files.From this you can easily get access to internal system file of windows.May it be your computer or your firends or your office's or other neworking computers.First of all making batch files in notepad and executing it using autoexec.exe will bemuch more fun to do. Till then keep visiting my blog I'll upload it series by series.