Welcome To Hacker's Act.

Very Welcome . Not everything that can be counted counts, and not everything that counts can be counted. -Albert Einstein

What are Hacker's ?

Are hackers a threat? The degree of threat presented by any conduct, whether legal or illegal, depends on the actions and intent of the individual and the harm they cause. -Kevin Mitnick

YoungSters

Younger hackers are hard to classify. They're probably just as diverse as the old hackers are. We're all over the map. -Larry Wall

Hacker or Man ?

Man is the lowest-cost, 150-pound, nonlinear, all-purpose computer system which can be mass-produced by unskilled labor. -NASA in 1965

Thanks For Visiting-Come again.

All Hackers Are Born As Script Kiddies.. -ImI

Friday, October 26, 2012

Hack Facebook,Twitter etc ..

Using BackTrack 5 R3

Just Follow the Steps Below:-Open your backtrack 5’s terminal and type cd /pentest/exploits/set 
Backtrack5 1
Now Open social Engineering Tool kit (SET) ./set 
backtrack5 2
Just hit ENTER and SET will Open , Now just select 1st option (1 Social-Engineering Attacks) and hit enter after that 2nd number (just type 2 as shown in snapshot) 
backtrack5 3
Now Just select 4th Option “Tabnabbing Attack Method” and Hit ENTER 
backtrack5 4
Then select 2nd option “Site Cloner” and Hit ENTER 
backtrack5 5
Now here you need to add the URL of Facebook (if you want to hack gmail then just add the gmail’s URL) 
backtrtack5 6
Now just hit the enter. 
backtrack5 6
Open new terminal and just type ifconfig and hit ENTER 
backtrack5 9
Now just copy this IP address and open it in Browser. 
backtrack5 7
Now here I am just typing test email and password to see whether it works or not. 
backtrack5 8
Now just hit enter and switch back to our terminal and we found the Email and password ! 
backtrack5 10
This tutorial is just educational purpose only.

HTC Desire C Review


Specs and Featuresimage0000 580x6121 HTC Desire C Review


AnnouncedJune, 2012

ReleasedJuly, 2012

PriceRs 12,099

Hype2.5/5

AlternativesMicromax A90, Samsung Galaxy Ace, Nokia Lumia 610

ChipsetSnapdragon S1

Processor600MHz

Battery1230 mAh

Primary Camera5 MP Auto Focus

Dimensions107.2x60.6x11.95 mm

Main Display320x480 pixels HVGA LCD Touchscreen

In-Built Storage4GB

RAM512MB

Manufacturer

Type

OS

Price Category

We Like ! :

Build Quality, Design, Audio, Android ICS

What we Don't Like !:

Screen Resolution, Sluggish Processor, Camera
SOURCE:IGYAAN(Thanks)

Tuesday, October 9, 2012

Samsung Galaxy Note 2 Hands-On


GPRS Manual setting for all Networks (India)








BSNL gprs Settings:
Account Name – bsnlwap
Username – leave blank
Password – leave blank
Proxy – Enabled/yes
Homepage – http://wap.cellone.in
Proxy and Server address – 010.132.194.196
Proxy and Server Port – 8080
Acces Point Name – wapnorth.cellone.in
Data bearer – GPRS/ Packetdata
Authentication Type – Normal

Airtel gprs Settings
Account Name – Airtel_gprs
User Name – leave
Blank Password – leave
Blank Homepage – http://live.airtelworld.com
Proxy – Enabled/yes.
Proxy and Server Adress – 202.56.231.117
Proxy and Server Port – 8080
Data bearer – GPRS or Packet Data.
Access Point Name – airtelgprs.com
Authentication Type – Normal
Use preferred access point – No







Airtel live settings
Account Name – Airtel_live
Homepage – http://live.airtelworld.com
Username – leave Blank
Password – leave Blank
Proxy – Enabled/yes
Proxy and Server Adress – 100.001.200.099
Accespoint Name – airtelfun.com
Proxy and Server Port – 8080
Data bearer – GPRS/ Packet Data
Authentication Type – Normal







Vodafone Essar gprs Settings: 
Account Name – Vodafone Live
User Name – leave Blank
Password – leave
Blank Proxy – Enabled/yes
Access Point Name – portalnmms
Proxy – Enabled/yes.
Proxy and Server address – 010.010.001.100
Proxy and Server Port – 9401 or 8080
Homepage – http://live.vodafone.in
Authentication Type – Normal








Idea gprs Settings:
Account Name – idea_GPRS
Username – leave Blank
Password – leave Blank
Homepage – http://wap.ideafresh.com
Proxy and Server Port – 8080
Proxy and Server adress – 010.004.042.045
Databearer – GPRS / Packetdata
Acces Point Name – imis
Proxy – Enabled/yes
Authentication Type – Normal








Settings for SMARTWAP:
Account name : SMARTWAP
Access point name: SMARTWAP
Home page: http://wap.rworld.co.in/gsm/index.wml
Wapgateway proxy IP address: 97.253.29.199
Port: 8080

Settings for SMATRNET:
Account name: SMARTNET
Access point name: SMARTNET
Home page: http://www.google.co.in
Wapgateway proxy IP address: 97.253.29.199
Port: 8080

Settings for MMS:
Account name: RTLMMS
Access point name:MMS
Homepage: http://10.114.0.5/mms/
Wapgateway IP: 10.114.0.13
Port: 9401

Note: All these settings may can vary according to the area. But working in most of the cases.If you are unable to reach the area where to edit settings COMMENT BELOW with your MOBILE MANUFACTURE.

Change Facebook Login Background

 If you are also get bored with the Old facebook login page like me and want to get rid off it then keep reading. By using a simple extension you can put any image as background of facebook login page

This trick works only on Google chrome. Sorry to other browser users but I promise to bring this trick for Firefox users sooner.
Just follow the simple steps to configure your page:
  • Download the FB refresh extension from Chrome web store. click here.
  • select Add to Chrome. It'll automatically get attach with your chrome.
  • Now reopen your browser and go to www.facebook.com. You'll see the default image as background.

Don't you like this default image..?? Yeah you can replace it with an Image of your choice. Keep reading folks...
  • go to an image hosting site. I would suggest you to use Picasa or Flickr
  • There upload your image and copy its URL
  • In you chrome browser click on settings > Tools > Extensions then onFB refresh select option you'll see something like this.

  • Now enter your URL in the box which you copied on step 5 and click save.
Finally you are DONE. Just reopen the browser to see the changes. Enjoy your new Facebook login page.
You can buy me a drink if you like this post. :P

8 Common Mistakes in Programming.

Here is a List of some common programming mistakes which are mainly faced by the beginners.

1. Undeclared Variables: Before compiling the program or even writing the program we should carefully monitor that the variables we're using are already declared or not. The Compiler didn't understand the variables itself. we have to declare them before compiling.

2. Uninitialized Variables: The Advance languages like JAVA, Python handles the uninitialized variables. However we may get the errors with the Languages like C/C++

3. Setting the Variable to an uninitialized value: Users often start using the variables without initialization which may spread the garbage values to other sections of the program too.

4. Using a Single equal sign to check equality:

int c=10;
if(c=10)
 cout <<"Hello";
Always remember while writing any statement for comparison use '==' instead of '=' because '=' is use to assign the values instead of comparison.

5. Undeclared Functions:
void main()
{
hello();
}
void hello()
{
//
//
}
Always remember to put either a prototype for the function or the entire definition of the function above the first time you use the function.

6. Extra Semicolon:
void main()
{
if(1);
 cout <<"Hello";
}
Remember, the semicolon ';' never goes after the if, for, while, do while or functions statements else the program will function improperly.

7. Over Stepping the boundaries of array definitions or variables is also a major error done by the user which results into the incorrect results.

8. Misuse the && or || operators. Study the De Morgans Law instead.

Happy Coding :)

Use google to find serial key precisely.

Hi folks. This is a little trick that I frequently use to find cd keys with Google.

If you‘re looking for a serial number for any software say PowerISO then
  • go to www.google.com  (You all know very well about this guy.)
  • Type PowerISO 94FBR and it'll bring it up, this works great in Google
Explanation:
 94FBR is part of a Office 2000 Pro cd key that is widely distributed as it bypasses the activation requirements of Office 2K Pro. By searching for the product name and 94fbr, you guarantee two things:
  • The pages that are returned are pages dealing specifically with the product you're wanting a serial for.
  • Because 94FBR is part of a serial number, and only part of a serial number, you guarantee that any page being returned is a serial number list page.
Have Fun with this trick.
After getting this Trick I must say that the Internet is full of useful and helping peoples.

Hacking windows password-SAM file hacking with ophCrack

 I'll cover the detailed features of ophcrack in future article soon.

Basic: Windows uses NTLM hashes to encrypt the password file which gets stored in SAM file. We simply need to target this file to retrieve the password

Tools Required:
  • Ophcrack Live CD. Download from here
  • Time and Patience
Lets get started....

Insert the Ophcrack Live CD and Boot your PC. Make sure the Boot from CD is the first option in the Boot menu at BIOS.
You'll get the Startup menu.
here choose Ophcrack Graphic mode - automatic
After few old loading shots, it'll redirect to the Linux Desktop. There Click onmenu > Run
In the pop up box type > ophcrack click ok
Now you can see the ophcrack application windows. Here, click on Load >Encrypted SAM
After that we need to give the path to SAM directory which is by default/mnt/hda1/WINDOWS/System32 click choose
Here we can see the saved hashed now with the username and userid.
Now click on Crack button and wait for the password. Its quick and easy
That's it. It'll show the password now Have fun with the cracked password.

Note: Ophcrack is a live Linux CD, it may not work on all the versions of Windows 7 however its working fine with Windows XP/Vista.

Keep Cracking. Keep Rocking :)