Monday 22 February 2016

Unknown

wifi hacker v3

 

How to Hack WiFi Password (WEP/WPA/WPA2)

An internet connection has become a basic necessity in our modern lives. Wireless hot-spots (commonly known as Wi-Fi) can be found everywhere! If you have a PC with a wireless network card, then you must have seen many networks around you. Sadly most of these networks are secured with a network security key. Have you ever wanted to use one of these networks? You must have desperately wanted to check your mail when you shifted to your new house. The hardest time in your life is when your internet connection is down. Hacking those Wi-Fi passwords is your answer to temporary internet access.

Now to hack a Wifi Password you must first know what type of encryption it uses for its passwords there are many different types such as: WEP (easiest to crack/hack), WPA and WPA2.

Luckily for you we developed a program that automates all the hacking procces, and the only thing you need to do is click buttons & wait.

How it works?

To make you fully understand the method how this program performs you would most likely need near few months very first to understand the fundamentals of programming. Right after that you would again require few years probably (depends on how fast learner you are) to completely understand the approach how it functions. But in short, it scans for available wireless networks in your range, it contacts them, after the contact is established, it receives packets, after the packets are received, it decrypts the packets, meaning it gets the password with tool built within our application. Some wireless networks can be hacked in few moments, some can take few minutes, or hardly ever hours. This depends on how victim's password is made. Many which are difficult to hack are created of letters (uppercase + lowercase), numbers and special characters. Naturally, many of them are made just of letters, and can be hacked extremely quick.

What Security Type's / Encryptions does the software hack?


The software can hack the following encryptions / security type's:
- WEP
- WPA
- WPA2
Read More

Saturday 20 February 2016

Unknown

How to Authenticate your User with Twitter



Authentication With Twitter

Beginning August 16th, Twitter will no longer support the basic authentication protocol for its platform. That means the only way to authenticate users will be through a Twitter application. In this tutorial, I'll show you how to use Twitter as your one-click authentication system. As we have Done Authentication With Facebook
Step 1:First Create Your Twitter Application
Head to dev.twitter.com/apps/ and log in using your Twitter ID and password. This can be any account; your application will be able to read any other user’s timeline without their knowledge or permission (I realize that doesn’t make much sense given Twitter’s new policies, but I didn’t make the rules!)
Click the Create a new application button and enter the name and description of your application. The website should be a page where you can download your code but, since you’re still writing it, enter your home page URL and change it later. Leave the callback URL blank.
Complete the CAPTCHA and click Create.

Step 2: Create an Access Token

Click the Create my access token button at the bottom of the Details tab on your application’s page. You’ll now see various strings against:
  1. OAuth: Consumer key
  2. OAuth: Consumer secret
  3. Token: Access token
  4. Token: Access token secret
Keep the page open — you’ll need these shortly.

Step 3: Download the OAuth Library

Download Abraham Williams’ PHP Twitter OAuth library from github.com/abraham/twitteroauth.
The project contains a number of files, but the only ones you actually require are OAuth.php and twitteroauth.php in the twitteroauth folder. Copy both to a suitable folder in your application.

Step 4: Modify Your Timeline Fetching Code

Your PHP should now use code such as this to fetch a user’s timeline:
require('twitteroauth.php'); // path to twitteroauth library

$consumerkey = '11111111';
$consumersecret = '22222222';
$accesstoken = '33333333';
$accesstokensecret = '44444444';

$twitter = new TwitterOAuth($consumerkey, $consumersecret, $accesstoken, $accesstokensecret);

$tweets = $twitter->get('https://api.twitter.com/1.1/statuses/user_timeline.json?screen_name=craigbuckler&count=10');
print_r($tweets);
The variables $consumerkey, $consumersecret, $accesstoken and $accesstokensecret must be set to the Twitter codes generated in step 2 above
The $twitter->get method must then be passed an appropriate REST URL. The example shows mine so you should enter your own Twitter ID for the screen_name parameter (unless you specifically want to display my tweets moaning about Twitter?)
Run the code and, with luck, a stream of tweets should appear … in exactly the same way they did before the Twitter police insisted on restricting access to public messages. You’ll now need to format them according to the display requirements. Shesshh.
Note that TwitterOAuth’s get() method runs PHP’s json_decode command and returns an object. If you’d prefer an associative array, change line 144 of twitteroauth.php to:
return json_decode($response, true);
Hopefully, that should provide a few months grace until Twitter force us to migrate to API 2.0 and jump through more flaming hoops. Best of luck.



Read More
Unknown

facebook authentication on your website

 

How to Authenticate Your Website Using Facebook ?


Welcome I am here to Show how to integrate facebook login on your website. This is important because user’s can easliy create account through facebook instead of filling up the registration form, so it makes registration and login faster.
Website can also be authenticate through Twitter and google but we will focuses on facebook api’s. There are many more tutorial’s available online on this topic, but i personally had a tough time figuring out the correct method to use. So i am writing down here the best method which i found out.
Facebook Login and Authentication
Facebook provides an authentication api which you can use as an alternate for the traditional login system or also to import facebook user profile information to your website. Basically how this works is you create a facebook app, ask user to grant permission to your app to access his profile information, after he has granted access you can create account on your website using his profile information.
This is the workflow which gets followed when integrating facebook login on your site (helpful for a beginner)
  • Create a facebook app for your domain
  • Add a login button on your website
  • There conditions are possible when user clicks on the login button.
1 1. User is Not Logged In: Facebook dialog pop’s up and asks user to login.



2. User is Logged In, but has not authorized the app: Facebook pop’s up a dialog asking user to give permission to your app.
  • 3. User is Logged In and has already authorized the app
    In this case, facebook will directly redirect to a page specified by us.
  • On the page where facebook redirects, we retrieve user information like name, email, facebook id etc and create his account on our website.
The entire code is divided in two part
1. javascript
2. Php
The bellow code is of java
<div id="fb-root"></div>
<script type="text/javascript">
//<![CDATA[
window.fbAsyncInit = function() {
   FB.init({
     appId      : 'XXXXXXXXXXXXXX', // App ID
     channelURL : '', // Channel File, not required so leave empty
     status     : true, // check login status
     cookie     : true, // enable cookies to allow the server to access the session
     oauth      : true, // enable OAuth 2.0
     xfbml      : false  // parse XFBML
   });
};
// logs the user in the application and facebook
function login(){
FB.getLoginStatus(function(r){
     if(r.status === 'connected'){
            window.location.href = 'fbconnect.php';
     }else{
        FB.login(function(response) {
                if(response.authResponse) {
              //if (response.perms)
                    window.location.href = 'fbconnect.php';
            } else {
              // user is not logged in
            }
     },{scope:'email'}); // which data to access from user profile
 }
});
}
// Load the SDK Asynchronously
(function() {
   var e = document.createElement('script'); e.async = true;
   e.src = document.location.protocol + '//connect.facebook.net/en_US/all.js';               
   document.getElementById('fb-root').appendChild(e);
}());
//]]>
</script>

2. The next code is of Php
require_once 'src/facebook.php'; //include the facebook php sdk
$facebook = new Facebook(array(
        'appId'  => 'XXXXXXXXXXXXXX',    //app id
        'secret' => 'XXXXXXXXXXXXXXXXXXXXXXXXXXXXX', // app secret
));
$user = $facebook->getUser();
if ($user) { // check if current user is authenticated
    try {
        // Proceed knowing you have a logged in user who's authenticated.
        $user_profile = $facebook->api('/me');  //get current user's profile information using open graph
            }
         catch(Exception $e){}


The varaible $user_profile will contain the profile information of the user like firstname, lastname, email, facebook id etc. You can use this information to create his account on your website.
The content of the $user_profile depends on the permission which we have asked in the app. There permission are set in ‘scope’ parameter in our javascript code. A full list of all facebook permissions are given here
 

1. User is Not Logged In: Facebook dialog pop’s up and asks user to login. - See more at: http://excellencemagentoblog.com/blog/2012/03/22/facebook-login-integration-website/#sthash.ynqkWJBh.dpuf

 

facebook-login-online
In this tutorial we will see how to integrate facebook login on your website. This is useful because user’s can easliy create account through facebook instead of filling up the registration form, so it makes registration and login faster.
This tutorial is not related to magento, but rather just focuses on facebook api’s. There are many tutorial’s available online on this topic, but i personally had a tough time figuring out the correct method to use. So i am writing down here the best method which i found out.
Facebook Login and Authentication
Facebook provides an authentication api which you can use as an alternate for the traditional login system or also to import facebook user profile information to your website. Basically how this works is you create a facebook app, ask user to grant permission to your app to access his profile information, after he has granted access you can create account on your website using his profile information.
This is the workflow which gets followed when integrating facebook login on your site (helpful for a beginner)
  • Create a facebook app for your domain
  • Place a login button on your website
  • When user clicks on the login button there conditions are possible.
- See more at: http://excellencemagentoblog.com/blog/2012/03/22/facebook-login-integration-website/#sthash.ynqkWJBh.dpuf

 

 

facebook-login-online
In this tutorial we will see how to integrate facebook login on your website. This is useful because user’s can easliy create account through facebook instead of filling up the registration form, so it makes registration and login faster.
This tutorial is not related to magento, but rather just focuses on facebook api’s. There are many tutorial’s available online on this topic, but i personally had a tough time figuring out the correct method to use. So i am writing down here the best method which i found out.
Facebook Login and Authentication
Facebook provides an authentication api which you can use as an alternate for the traditional login system or also to import facebook user profile information to your website. Basically how this works is you create a facebook app, ask user to grant permission to your app to access his profile information, after he has granted access you can create account on your website using his profile information.
This is the workflow which gets followed when integrating facebook login on your site (helpful for a beginner)
  • Create a facebook app for your domain
  • Place a login button on your website
  • When user clicks on the login button there conditions are possible.
- See more at: http://excellencemagentoblog.com/blog/2012/03/22/facebook-login-integration-website/#sthash.ynqkWJBh.dpuf
facebook-login-online
In this tutorial we will see how to integrate facebook login on your website. This is useful because user’s can easliy create account through facebook instead of filling up the registration form, so it makes registration and login faster.
This tutorial is not related to magento, but rather just focuses on facebook api’s. There are many tutorial’s available online on this topic, but i personally had a tough time figuring out the correct method to use. So i am writing down here the best method which i found out.
Facebook Login and Authentication
Facebook provides an authentication api which you can use as an alternate for the traditional login system or also to import facebook user profile information to your website. Basically how this works is you create a facebook app, ask user to grant permission to your app to access his profile information, after he has granted access you can create account on your website using his profile information.
This is the workflow which gets followed when integrating facebook login on your site (helpful for a beginner)
  • Create a facebook app for your domain
  • Place a login button on your website
  • When user clicks on the login button there conditions are possible.
- See more at: http://excellencemagentoblog.com/blog/2012/03/22/facebook-login-integration-website/#sthash.ynqkWJBh.dpuf
facebook-login-online
In this tutorial we will see how to integrate facebook login on your website. This is useful because user’s can easliy create account through facebook instead of filling up the registration form, so it makes registration and login faster.
This tutorial is not related to magento, but rather just focuses on facebook api’s. There are many tutorial’s available online on this topic, but i personally had a tough time figuring out the correct method to use. So i am writing down here the best method which i found out.
Facebook Login and Authentication
Facebook provides an authentication api which you can use as an alternate for the traditional login system or also to import facebook user profile information to your website. Basically how this works is you create a facebook app, ask user to grant permission to your app to access his profile information, after he has granted access you can create account on your website using his profile information.
This is the workflow which gets followed when integrating facebook login on your site (helpful for a beginner)
  • Create a facebook app for your domain
  • Place a login button on your website
  • When user clicks on the login button there conditions are possible.
- See more at: http://excellencemagentoblog.com/blog/2012/03/22/facebook-login-integration-website/#sthash.ynqkWJBh.dpuf
facebook-login-online
In this tutorial we will see how to integrate facebook login on your website. This is useful because user’s can easliy create account through facebook instead of filling up the registration form, so it makes registration and login faster.
This tutorial is not related to magento, but rather just focuses on facebook api’s. There are many tutorial’s available online on this topic, but i personally had a tough time figuring out the correct method to use. So i am writing down here the best method which i found out.
Facebook Login and Authentication
Facebook provides an authentication api which you can use as an alternate for the traditional login system or also to import facebook user profile information to your website. Basically how this works is you create a facebook app, ask user to grant permission to your app to access his profile information, after he has granted access you can create account on your website using his profile information.
This is the workflow which gets followed when integrating facebook login on your site (helpful for a beginner)
  • Create a facebook app for your domain
  • Place a login button on your website
  • When user clicks on the login button there conditions are possible.
- See more at: http://excellencemagentoblog.com/blog/2012/03/22/facebook-login-integration-website/#sthash.ynqkWJBh.dpuf
facebook-login-online
In this tutorial we will see how to integrate facebook login on your website. This is useful because user’s can easliy create account through facebook instead of filling up the registration form, so it makes registration and login faster.
This tutorial is not related to magento, but rather just focuses on facebook api’s. There are many tutorial’s available online on this topic, but i personally had a tough time figuring out the correct method to use. So i am writing down here the best method which i found out.
Facebook Login and Authentication
Facebook provides an authentication api which you can use as an alternate for the traditional login system or also to import facebook user profile information to your website. Basically how this works is you create a facebook app, ask user to grant permission to your app to access his profile information, after he has granted access you can create account on your website using his profile information.
This is the workflow which gets followed when integrating facebook login on your site (helpful for a beginner)
  • Create a facebook app for your domain
  • Place a login button on your website
  • When user clicks on the login button there conditions are possible.
- See more at: http://excellencemagentoblog.com/blog/2012/03/22/facebook-login-integration-website/#sthash.ynqkWJBh.dpuf
facebook-login-online
In this tutorial we will see how to integrate facebook login on your website. This is useful because user’s can easliy create account through facebook instead of filling up the registration form, so it makes registration and login faster.
This tutorial is not related to magento, but rather just focuses on facebook api’s. There are many tutorial’s available online on this topic, but i personally had a tough time figuring out the correct method to use. So i am writing down here the best method which i found out.
Facebook Login and Authentication
Facebook provides an authentication api which you can use as an alternate for the traditional login system or also to import facebook user profile information to your website. Basically how this works is you create a facebook app, ask user to grant permission to your app to access his profile information, after he has granted access you can create account on your website using his profile information.
This is the workflow which gets followed when integrating facebook login on your site (helpful for a beginner)
  • Create a facebook app for your domain
  • Place a login button on your website
  • When user clicks on the login button there conditions are possible.
- See more at: http://excellencemagentoblog.com/blog/2012/03/22/facebook-login-integration-website/#sthash.ynqkWJBh.dpuf
Read More