Saturday 26 May 2012

How to do multiple login in yahoo messenger


Many of u guys have more than 1 account on Yahoo, may be 1 official and other for friends and u wanted to be online on both of them simultaneously and get updated from both. And u have Yahoo messenger through which we can login to only 1 account.
Now there is no limitation my friends , u can login multiple number of ids simultaneously with my HACK..

Follow these steps :

1. Go to Start --> Run . Type regedit, then enter .
2.Navigate to "HKEY_CURRENT_USER\Software\Yahoo\pager" key.
3.On the right page , create a new Dword value by right-clicking and choose new Dword value.
4.Rename it as Plural.
5.Double click and assign a decimal value of 1.

Now close registry and restart yahoo messenger and try Multiple Login

Voila!! we can login with any number of ids :))
(U can see my screenshot attached)


Thursday 24 May 2012

Secret Android Codes

1. *#*#4636#*#*
This shows the following information about your phone and battery:
 
Phone information
Battery information
Battery history
Usage statistics


2. *#*#7780#*#*

This performs a factory data reset, and will remove the following:

Google account settings stored in your phone
System and application data and settings
Downloaded applications
It will NOT remove:

Current system software and bundled applications
SD card files e.g. photos, music files, etc.
PS: This one asks for a confirmation, so if you do get a chance to change your mind.



3. *2767*3855# (Hard Reset)

Don’t try this one unless you’re sure. This code is used for factory format, and will remove all files and settings including the internal memory storage. It will also reinstall the firmware.

PS: Once you give this code, there is no way to cancel the operation unless you remove the battery from the phone, and even then, you run the risk of bricking your phone.



4. *#*#34971539#*#*

This code is used to get information about the camera. It shows following 4 menus:

Update camera firmware in image (Don’t try this option)
Update camera firmware in SD card
Get camera firmware version
Get firmware update count
WARNING: Never use the first option otherwise your phone camera may stop working, and there is really no reason to update the camera firmware anyway


5. *#*#7594#*#*

This code will change the “End Call / Power” button action on your phone. By default, if you long press the button, it shows a screen asking you to select any option from Silent mode, Airplane mode and Power off.

You can change this action using this code. You can enable direct power off on this button so you don’t need to waste your time in selecting the option.
6. WLAN, GPS and Bluetooth Test Codes:

*#*#232339#*#* OR *#*#526#*#* OR *#*#528#*#* – WLAN test (Use “Menu” button to start various tests)



7. *#*#232338#*#* – Shows WiFi MAC address

8. *#*#1472365#*#* – GPS test

9. *#*#232331#*#* – Bluetooth test

10. Codes to get Firmware version information:

*#*#4986*2650468#*#* – PDA, Phone, H/W, RFCallDate

*#*#1234#*#* – PDA and Phone
   

Tuesday 22 May 2012

Unleashing the power of Android

Hi friends ,Toady I want to aware you all with the power of Samsung galaxy pop S5570 an Android phone.
The phone itself doesn't support a good processor. However if u haven't overclocked it then only u can say so.
The phone comes with a 600 MHz ARMv6 processor and Adreno 200 as GPU.
The phone has the ability to overclock upto 806 Mhz, all u need is to root it first.

Requirements:
1. Root access
2. No Frills Cpu Control (application from google market)

Now some of u guys are thinking what is rooting?
Basically rooting is a process of granting root priveledges to the OS and to make u understand more efficiently, the android OS is a kind of mini Linux OS which works on Linux kernel and Linux commands.
As we all know many of the commands needs SuperUser to run. Thats why to get the maximum utilisation from ur android one needs to be Superuser.

Disadvantages of rooting is that the warranty gets void. But seeing through hackers perspective we can unroot it also or can change its firmware to default.So no need to think of warranty. :)

So guys u have overclocked a 600 Mhz processor to 806 Mhz processor, directly a gain of 33% in performance.And dont worry i had done the same.See the screenshot attached.
Now u are smiling at ur friend who have bought a costlier phone than u but now the configuration is same as yours.

Comments are always welcome :)

Tuesday 15 May 2012

How to Crack passwords using OPHcrack...


1. Visit Ophcrack website.

2. Click on Download Live CD link. Choose according to your target system
     Ophcrack Version Choice - Windows 7/Vista or Windows XP

3. When the Live CD iso file is downloaded ,Burn it onto a blank CD.

4. Restart With the Ophcrack LiveCD Disc In Your CD/DVD Drive.

5. Change the Boot Options from BIOS settings by pressing DEL key or F2 in some computers. And choose to boot from CD/DVD drive.

6. Wait for Live CD to load and an OPHcrack menu will appear later on.

7. The next screen is the Ophcrack LiveCD software itself. Ophcrack will attempt to recover the passwords for all of the user accounts that it can find on your computer. This password cracking process is completely automated.

8. After Ophcrack recovers your password, write it down, remove the Ophcrack LiveCD disc from your optical drive and restart your computer. You don't need to exit the Ophcrack software - it won't harm your computer to power it off or restart it while it's running.

9. Logon to Windows With the Ophcrack LiveCD Recovered Password.

10. Yippieee you got the full access of that computer. :) :)

Friday 11 May 2012

Using IP Tables in Linux to Secure Yourself

Getting Invisible in LAN 



# iptables -A INPUT -p icmp -j DROP


Restricting by MAC address


# iptables -A INPUT -m mac --mac-source XX:XX:XX:XX:XX:XX -j DROP

This will drop all the packets coming from a source to your linux machine.

Routing packets from external sources to specific ports on specific internal machines


# iptables -t nat -A PREROUTING -i WLAN_INTERFACE -p tcp –-dport PORTNUMBERS -j DNAT -–to-destination DESTINATION_IP

When you need to route packets from external sources to specific ports on specific internal machines, this is what you want to do. This rule takes advantage of network address translation to route packets properly.

Rule to block furtive port scanning


# iptables -N port-scan
# iptables -A port-scan -p tcp --tcp-flags SYN,ACK,FIN,RST RST -m limit --limit 1/s -j RETURN
# iptables -A port-scan -j DROP

Note: No Scanner can scan u in a LAN if u had applied these rules. NOT EVEN NMAP can scan u.

Thanks Guys..Stay Protected..

Dont Forget to increase my likes and comments :)