March 26, 2011

HOW TO TRACE AN UNKNOWN MOBILE NUMBER


1. The first step is to Find the unknown number's Operator. For that you can take the help of Mobile number Tracing sites. Here are some usefull Links:

Indiatrace.com - Mobile Number Location Trace

BharatiyaMobile.com - Trace Indian Mobile Location & Operator

Go to any of the above links; Type the Unknown number and note down the Results. The result will be the "Operator Name" and "State".

Suppose your Unknown number is 9876547892 : After Tracing we Get the Result : "West bengal" & "Airtel".

2. Now starts the Trick: Search for the Ten Digit customer care Number of the Unknown number; Every state has a different customer care number; so be careful.
[NOTE: Search for 10 Digit customer care Number]

In my case I should search for West bengal - Airtel's 10 digit customer care number.

3. After you find the 10 digit customer care number - Call the customer care from a different Operator (Different from the Unknown Numbers Operator)
Suppose the Unknown Number uses Airtel; You should call from other Operators SIM like BSNL, Reliance, Docomo, Idea or Vodafone

4. When connected the customer care opt you for Languge selection.

5. After Language selection they will ask you: Are you a current User of xxxxx operator??
So Press "YES" or say "YES"
In my case they will ask me Are you a current User of Airtel?? So i will say "Yes"

6. Now they will ask you to enter the 10 digit Mobile Number (UNKNOWN NUMBER)
In my case I will enter 9876547892

7. Now they will ask you to enter a password. So enter:- 1234
[1234 is the default password of sim card; Most of us do not change SIM Password so there is 95% success rate of 1234]

8. After you successfully enter the Password - Now its your turn to seek Revenge.

* You can Know the Balance and Validity
* Activate Caller tune services
* Activate other Packs or subscribe V.A.S
* And many other things.

==CUSTOMER CARE NUMBERS==
Airtel – Kolkata 98310-12345
Airtel – Rest of Bengal 99330-12345
Aircel – Kolkata 98040-12345
Aircel – Rest of Bengal 98510-12345
BSNL – Kolkata 98830-98830
BSNL – Rest of Bengal 94000-24365
Reliance (GSM) – Kolkata
98830-98830
Reliance (GSM) – Rest of Bengal
98320-98320
Reliance 3033-3333
Tata Indicom – Kolkata
92310-08282
Tata Indicom – Rest of Bengal
92330-08282
Vodafone – Kolkata 98300-98300
Vodafone – Rest of Bengal
97320-97320
Tata Docomo- 90460-12345
( Kolkata 90380-12345 )

March 23, 2011

Facebook keyboard shortcuts


These shortcuts are browser specific.If you are using Google Chrome then use these shortcuts:
Alt + M:To quickly composing message
Alt + ?: To search Facebook
Alt + 1: To open Facebook Home Page(news feed)
Alt + 2: Opens your Facebook profile
Alt + 3: To open friend request approval panel
Alt + 4: Opens the messages panel in Facebook.
Alt + 5: Shortcut to opens the Facebook notifications panel
Alt + 6: Brings you to your account settings page
Alt + 7: Brings the ‘Privacy’ page
Alt + 8: Opens Facebook’s “Facebook page”.
Alt + 9: It Opens the “terms and condition” page.
Alt + 0: Brings you to the “Help” Page.
Firefox users need to use Shift+Alt+# replace # with 1,2,3
Internet Explorer Alt+# and Enter

March 20, 2011

How To Change Your Ip In Less Then 1 Minute


1. Click on "Start" in the bottom left hand corner of screen
2. Click on "Run"
3. Type in "command" and hit ok

You should now be at an MSDOS prompt screen.

4. Type "ipconfig /release" just like that, and hit "enter"
5. Type "exit" and leave the prompt
6. Right-click on "Network Places" or "My Network Places" on your desktop.
7. Click on "properties"

You should now be on a screen with something titled "Local Area Connection", or something close to that, and, if you have a network hooked up, all of your other networks.

8. Right click on "Local Area Connection" and click "properties"
9. Double-click on the "Internet Protocol (TCP/IP)" from the list under the "General" tab
10. Click on "Use the following IP address" under the "General" tab
11. Create an IP address (It doesn't matter what it is. I just type 1 and 2 until i fill the area up).
12. Press "Tab" and it should automatically fill in the "Subnet Mask" section with default numbers.
13. Hit the "Ok" button here
14. Hit the "Ok" button again

You should now be back to the "Local Area Connection" screen.

15. Right-click back on "Local Area Connection" and go to properties again.
16. Go back to the "TCP/IP" settings
17. This time, select "Obtain an IP address automatically"
tongue.gif 18. Hit "Ok"
19. Hit "Ok" again
20. You now have a new IP address

With a little practice, you can easily get this process down to 15 seconds.

P.S:
This only changes your dynamic IP address, not your ISP/IP address. If you plan on hacking a website with this trick be extremely careful, because if they try a little, they can trace it back

March 19, 2011

How To Block Websites Without Software

This summary is not available. Please click here to view the post.

March 13, 2011

Lock Folder in XP using DOS


The best way to hide a folder is using the cacls commands(locking)
it is very simple
for this u shud ve folder in NTFS drive. (say e:)
once it is done open run->cmdfor locking the folder
cacls e:\(name of the folder in drive f) /d everyone

for unlocking type
cacls e:\(name of the folder in drive f) /g everyone:f

once u hav locked a folder and if anyone tries opening it a message access is denied will be displayed. u dont hav to hide a folder after doing this.

March 8, 2011

Freak Your Friends by some VB scripts tricks

ALL OF THESE COMMANDS R 2 B TYPED IN NOTEPAD...

1) Convey your friend a little message and shut down his / her computer:
Type :

Code:
@ off
msg * I don't like you
shutdown -c "Error! You are too stupid!" -s
Save it as "Anything.BAT" in All Files and send it.

2) Toggle your friend's Caps Lock button simultaneously:
Type :


Code:
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 your friend's CD Drive. If he / she has more than one, it pops out all of them!
Type :

Code:
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 your friend by making this VBScript hit Enter simultaneously:
Type :


Code:
Set wshShell = wscript.CreateObject("WScript.Shell")
do
wscript.sleep 100
wshshell.sendkeys "~(enter)"
loop
Save it as "Anything.VBS" and send it.

5) Frustrate your friend by making this VBScript hit Backspace simultaneously:
Type :


Code:
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.

6) Hack your friend's keyboard and make him type "You are a fool" simultaneously:
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.

March 6, 2011

Aircel Wi-Fi

Free Trial Offer

All Aircel users can enjoy free wireless Internet at a blazing-fast speed and an enhanced user experience at all Aircel Wi-Fi Zones, before 31st Mar, Feb, 2011.

Here’s what you need to do:
  1. Go to your nearest Aircel Wi-Fi Zone and switch on the Wi-Fi on your laptop or mobile.

  2. On the welcome screen, just click on New User.

  3. Enter your details along your Aircel mobile number to acquire a User ID and Password via SMS.

  4. Then simply use these details to log in to your account.
Start discovering the possibilities on Aircel Wi-Fi.

Note:
Post the free trial offer, the Wi-Fi service will be charged as per the chosen plan.