Showing posts with label blogger. Show all posts
Showing posts with label blogger. Show all posts

Thursday, January 4, 2018

How To Import Old Blogger Comments Into Disqus

How To Import Old Blogger Comments Into Disqus


Disqus is one of the most popular comment system on internet. Bloggers and webmasters are using it for years now. It is easy to use and easy to setup on Blogger Blog. In my previous post, I have shown you How to install Disqus Comment System in Blogger Blog. But a common question arises in the minds before you switch to Disqus that what will happen to the old comments? The comments which we have already published on Blogger blog, will it be lost? If your blog is old and have some comments, Im sure you are thinking the same. But here is a good news, Disqus lets you to import your old comments with just few clicks! So lets see how you can import your comments into Disqus!


READ ALSO: How to install DISQUS Comment System in Blogger Blog?


How To Import Old Blogger Comments Into Disqus?

1. Go to Disqus.com and signup or sign in.

2. Visit this link: http://myblog.disqus.com/admin/discussions/import/platform/blogger/

Please remove red colored text with the your disqus unique url. For example:

http://myvideolibrary.disqus.com/admin/discussions/import/platform/blogger/


3. Now once you you go the link above, you will be able to see the page Import into Disqus. Choose your Blogger Platform in the menu, and click on Import Comments from Blogger.




4. Once you click on Import Comments from Blogger, a new popup window will open and asks for permission (you can trust on them). So click on Allow button to continue.



5. After clicking Allow button, you will see a list of your Blogger blogs so choose the desired one.

6. Once you choose your blog, Disqus will start importing old comments form blogger blog. Wait for few seconds, now you will see message like this : -- out of -- comments were synced.



Thats it! You have successfully imported your Blogger comments into Disqus.


READ ALSO: How to install DISQUS Comment System in Blogger Blog?



visit link download
Read more »

Tuesday, January 2, 2018

How To Make Blogger PageList Widget Nofollow

How To Make Blogger PageList Widget Nofollow


This tutorial explains how to become links of your pagelist widget nofollow.
1. Login to your Blogger account and go to "Template"--> "Edit HTML" of your blog.
2. Now find your PageList widget code. (Note : You may also can find it by searching <b:widget id=PageList)
PageList widget code will look like this. But widget id (PageList1) can be different :

<b:widget id=PageList1 locked=false title=Pages type=PageList>
<b:includable id=main>
<b:if cond=data:title><h2><data:title/></h2></b:if>
<div class=widget-content>
<b:if cond=data:mobile>
<select expr_id=data:widget.instanceId + &quot;_select&quot;>
<b:loop values=data:links var=link>
<b:if cond=data:link.isCurrentPage>
<option expr_value=data:link.href selected=selected><data:link.title/></option>
<b:else/>
<option expr_value=data:link.href><data:link.title/></option>
</b:if>
</b:loop>
</select>
<span class=pagelist-arrow>&amp;#9660;</span>

<b:else/>
<ul>
<b:loop values=data:links var=link>
<b:if cond=data:link.isCurrentPage>
<li class=selected><a expr_href=data:link.href><data:link.title/></a></li>
<b:else/>
<li><a expr_href=data:link.href><data:link.title/></a></li>
</b:if>
</b:loop>
</ul>
</b:if>
<b:include name=quickedit/>
</div>
</b:includable>
</b:widget>

3. Now put blue colored code ( rel=nofollow ) as the example below into your Link list code.

<b:widget id=PageList1 locked=false title=Pages type=PageList>
<b:includable id=main>
<b:if cond=data:title><h2><data:title/></h2></b:if>
<div class=widget-content>
<b:if cond=data:mobile>
<select expr_id=data:widget.instanceId + &quot;_select&quot;>
<b:loop values=data:links var=link>
<b:if cond=data:link.isCurrentPage>
<option expr_value=data:link.href selected=selected><data:link.title/></option>
<b:else/>
<option expr_value=data:link.href><data:link.title/></option>
</b:if>
</b:loop>
</select>
<span class=pagelist-arrow>&amp;#9660;</span>

<b:else/>
<ul>
<b:loop values=data:links var=link>
<b:if cond=data:link.isCurrentPage>
<li class=selected><a expr_href=data:link.href rel=nofollow><data:link.title/></a></li>
<b:else/>
<li><a expr_href=data:link.href rel=nofollow><data:link.title/></a></li>
</b:if>
</b:loop>
</ul>
</b:if>
<b:include name=quickedit/>
</div>
</b:includable>
</b:widget>

Important : You must include the space before rel=nofollow as the example above.
Now save your template and you are done.

SHARE this post if it helps... THANKS.


visit link download
Read more »

Sunday, December 31, 2017

How To Hide Show Expand Collapse Labels of blogger blog

How To Hide Show Expand Collapse Labels of blogger blog


1.Log in to your dashboard--> layout- -> Edit HTML
2.Without expanding your widgets,Scroll down to where you see this:-
<b:widget id=Label1 locked=false title=Labels type=Label/>
3.Replace above line with below code:
<b:widget id=Label2 locked=false title=Labels and Feeds type=Label>
<b:includable id=main>
<script type=text/javascript>
//<![CDATA[
if(typeof(rnd) == undefined) var rnd = ;
rnd = Math.floor(Math.random()*1000);
rnd = id- + rnd;
document.write(<a href="#" onclick="tmp = document.getElementById(&quot; + rnd + &quot;); tmp.style.display = (tmp.style.display == &quot;none&quot;) ? &quot;block&quot; : &quot;none&quot;; return false;" style="float:left;margin-right:5px;">);
//]]>
</script>[+/-]
<script type=text/javascript>
//<![CDATA[
document.write(</a>);
//]]>
</script>
<b:if cond=data:title>
<h2><data:title/></h2>
</b:if>
<div class=widget-content>
<script type=text/javascript>
//<![CDATA[
document.write(<div id=" + rnd + " style="display:none;">);
//]]>
</script>

<ul>
<b:loop values=data:labels var=label>
<li>


<b:if cond=data:blog.url == data:label.url>
<data:label.name/>
<b:else/>
<a expr_href=data:label.url><data:label.name/></a>
</b:if>
</li>
</b:loop>
</ul>

<script type=text/javascript>
//<![CDATA[
document.write(</div>);
//]]>
</script>
<b:include name=quickedit/>
</div>
</b:includable>
</b:widget>
4.Click on Save Templates(or Confirm and save) and Refresh your site.

Help Others by Sharing this post... THANKS.


visit link download
Read more »

How to insert metatags in your blogger blog

How to insert metatags in your blogger blog


Hi  Manish  Here...

Here is a tutorial on how to insert metatags in your blogger blog. If you want to rank well in the search engines the meta description is very important. By having metatags it tells the search engines what your site is about.
    Login in to your blogger account
      Then click on "Design"
        Then edit html

        Before you make any changes copy the full code and paste it on a notepad in case anything goes wrong.
          Next you want to edit this code, by filling out your description,keywords and author name.

          <meta content=DESCRIPTION HERE name=description/>
          <meta content=KEYWORDS HERE name=keywords/>
          <meta content=AUTHOR NAME HERE name=author/>
            Find this code

            <b:include data=blog name=all-head-content/>

            and then insert your edited metatag code just below it.

              Then click save and update.

              This helps will Increase your search engine ranking.

              visit link download
              Read more »

              Saturday, December 30, 2017

              HTML PHP CODE AND BLOGGER SEO AND WORDPRESS SEO SITEMAP MAKE MONEY SEARCH ENGRING

              HTML PHP CODE AND BLOGGER SEO AND WORDPRESS SEO SITEMAP MAKE MONEY SEARCH ENGRING


              Facebook Login & Secure PHP Area

              This app enables you to get a secure area accessible only by logged-in users. New users can create a new account or connecting using their Facebook account, or they can do it by entering their own information (username, password, email etc).
              A super admin user exists and is able to manage registered users, disable or activate users, or delete existing users. The super admin can also access the users information (email, last connected date and time etc.)

              Features:

              - Secure area accessible only by connected users
              - Ability to connect using a Facebook account or a regular login/password
              - Users can create a new account and be able to access the reserved area
              - Account page for the user to view and edit their information
              - Logout mechanism for more security
              - Supports a super admin user that can manage registred users
              - The admin user can delete, disable or re-activate users
              - Super nice user interface based on the bootstrap library
              - Users are stored on a MySQL database (Dump file to create the required table included)
              - Registred users passwords are stored encrypted with MD5 for more security
              - You can get the app working and users connecting to it in less than 10 minutes !
              - The most easy way to get an app featuring a Facebook connect functionality
              You can extend the functionality of this app and use it as a base for your admin area or customers portal.


              Demo:-Click Here


               codecanyon-1520682-facebook-login-secure-php-area (2).zip - 87.39 KB


              visit link download
              Read more »

              Friday, December 29, 2017

              How To Setup Custom Domain For Your Blog In Blogger With Godaddy com

              How To Setup Custom Domain For Your Blog In Blogger With Godaddy com


              Setup Custom Domain For Your Blog - 
              In this post I will explain "How to setup custom domain name for your blog". I will provide you very easy guide that will very useful for you and it will be 100% works. I will teach you how to setup custom domain name for your blog on blogger.com in easy way.

              For Eg. your blogger domain name is www.xyz.blogspot.com and you have to redirect to www.xyz.com, thats it.


              What Is Custom Domain ?

              Firstly we must understand what actually custom domain is. Custom domain are likes .com(Commercial) , .org (organisation), .edu (educational) etc. are the types of first level domains.

              Eg. www.google.com   (First level domain)
                    www.abc.co.in      (Secondary level domain)

              What Is The Need Of Custom Domain ?

              When you apply custom domain for your blog, then your users  can easily remind domain. Blogger provides you www.xyz.blogspot.com  that will not easy to kept in mind. Then it will reduces our users. The best option for this is Custom domains. And custom domains also improve SEO of your Blog / Site. Now we will see step by step guide to setup custom domain.

              Follow The Below Steps Carefully To Setup Custom Domain For Your Blog -


              • You have to buy custom domains from websites like Godaddy, Bigrock etc.
              • Suppose you are buying domain on Godaddy.com
              • Firstly login your www.blogger.com blog
              • Enter username and password.
              • Go in Settings > Basics option. See below screenshot


              • Now look at the publishing section, your blog name will be appear then click on setup third party url for your blog link. Now enter your custom domain name like www.xyz.com see below screenshot to understand.
              •     After entering the url you will get warning we have not able to verify your authority to this domain  
              •     Now you will get Name, Label or Host and Destination, Target or Points To Fields. You can see above in Screen shot. For eg. www is your host and ghs.google.com is yuor points to  field.
              •      Now open another tab in your browser and go to your domain provider website like www.godaddy.com and enter your login details.
              •     Now login into your Godaddy account and click on My Account tab.

              • Now you have to go on Domain Manager.

              •     In the domain manager page you will see option DNS MANAGER. You have to click on DNS MANAGER.
                  
              •  Note that in DNS MANAGER you have to enter A(Host) and Cname.
                 
              •   Now click on A(Host) tab you have to enter this 4 ip addresses one by one using add button.
                  216.239.32.21
                  216.239.34.21
                  216.239.36.21
                  216.239.38.21
              •     After you done adding records click on save button to save your records.

              • Now you have to enter your Cnames (alias). You Cname alias are www      ghs.google.com see below screenshot. Now you have to enter your Host and Points to Fields thats it. After adding records click on save.

              •  Now open your blooger.com blog and enter url then click on save button.
               You have done, now you have to wait for few hours to take effects in your ip records. Just relax and seat back. After few hours you will see that your blog address is redirects to your new custom domain. :) 

              Note -  If you dont write your host www and points to ghs.google.com then if  users not type www in url field, then your site will not appear to them. So follow above steps carefully and setup your custom domain name.
               

              It may take upto 72 hours to take effects in your ip records. I will suggest to you buy a domain name on Godaddy.com.

              What you think right now it is easy to setup. Show your love in comments. :) And share this page on Facebook and other social sites.


              Keep visiting for more tutorials. :)


              visit link download
              Read more »

              Wednesday, December 20, 2017

              How To Switch Back To Old Blogger Interface

              How To Switch Back To Old Blogger Interface


              Sorry to hear guys
              THIS METHOD IS NO LONGER WORKING

              How to get back old blogger interface

              get-back-old-blogger-interface

              Do you have trouble working with new blogger interface? Oh yes you do :) thats why you came here.If you are a new to blogger, you are not much used to new blogger interface, dont worry a bit, Im here to save you. Here the way to how to switch back to old blogger interface.



              • Click on "Settings" Button under your name

              get-back-old-blogger-interface

              • Then you will see the menu collapse
              • Click on "Old Blogger Interface"

              get-back-old-blogger-interface 

              • Here we are again to Old Blogger Interface
                Old is Gold !

              get-back-old-blogger-interface





              Tags:
              How To Switch Back To Old Blogger Interface, How to go back to old blogger interface, How to go back to old blogger dashboard, get old blogger dashboard, How to get back old blogger interface, Switch back to old blogger interface, turn back to old blogger, remove new blogger interface, bring back old blogger interface dashboard home page, Increase 3G Signal USB Dongle, How to Avoid being Tracked by cookies, Speed up Windows Run Faster, Add Floating Social Media Sharing Buttons For Blogger




              visit link download
              Read more »

              Sunday, December 17, 2017

              How to install DISQUS Comment System in Blogger Blog

              How to install DISQUS Comment System in Blogger Blog


              Comments are an important feature to keep in touch with your blog readers, it gives you an idea about what people thinks about your blog and blog posts. It also gives freedom to readers to share their views on your blog and blog posts. If you are using blogger, their are two pre-made comment systems by default i.e Blogger Comments and Google+ Comments, but both of the comments systems does not allow you to login with Facebook and Twitter, infact Google+ comment system only supports Google+ users to comment. But what if your commenters wants to comment with Facebook, Twitter and Google in order to leave comments?



              Dont worry! I have a solution, give a try to Disqus Comment System.

              What is Disqus?

              So the first thing in your mind is What is Disqus. Lets first read what Disqus says about itself!


              " Disqus is a networked community platform used by hundreds of thousands of sites all over the web. With Disqus, your website gains a feature-rich comment system complete with social network integration, advanced administration and moderation options, and other extensive community functions. Most importantly, by utilizing Disqus, you are instantly plugging into our web-wide community network, connecting millions of global users to your small blog or large media hub. "


              READ ALSO: How To Import Old Blogger Comments Into Disqus?


              There are millions of sites using Disqus, because its easy to use, easy to install and gives much more powerful tools to engage visitors. It gives commenters 4 ways to start using Disqus, you can create an account by connecting Disqus with your Facebook, Twitter, Google account or by putting up your email ID. So lets begin the tutorial!

              How to install DISQUS Comment System in Blogger Blog?

              1. Register a New Account:

              You can easily signup with your existing Facebook, Twitter and Google ID or you can signup by giving your email address and verifying your email address.



              2. Add Disqus on Blogger:

              After signing up and verifying email, look to right top corner, where it gives Setting Options. Click on it, a drop down will come, select Add disqus to site option.


              After clicking that you will be able to see Add Disqus To Site page, fill information and click on Finish Registration button.



              Now you will be asked to choose your blog platform. Click on Blogger and don�t forget to verify your email.



              After choosing your platform you will see two options that is integrating Disqus in your blog and importing comments from your blog.




              Click on Add ----- to my blogger site option.

              On the next page, select your desired blog, give it a title and click on Add Widget.


              Thats it! You have installed Disqus Comment System on your Blogger blog.

              From My Desk:

              Disqus in my opinion, is the best commenting system so far, it is more powerful than old comment systems. If you need a demo, you see it on this blog (And do not forget to comment! lol!). I would strongly recommend Disqus for your blog. I would suggest you to read my post on How to Import Old Blogger Comments Into Disqus.



              visit link download
              Read more »

              Monday, December 11, 2017

              How To use Blogger API v3 to use Blogger content in Client Applications

              How To use Blogger API v3 to use Blogger content in Client Applications


              www.hackserialkey.com
              www.hackserialkey.com

              Are you a developer who likes to blog? You can use the Google Blogger API to create amazing Blogger client applications of your own! The Blogger API v3 allows external applications to view and update Blogger content. Your client application can use Blogger API v3 to create new blog posts, edit or delete existing posts, and query for posts that match particular criteria. You can use this API to create desktop and browser apps and create a whole new user-base of your own.



              What is the Blogger API and what can you do with it?

              An API, or Application Package Interface is a set of commands you can call, or interface with, from an external application. The developers of an application provides APIs if they want other developer to create apps and interact with their own.

              Similarly, the Blogger team has created an API of its own that allows external developers to interact with the Blogger content management system. With this API, you can;
              • Add posts, pages and comments from your Blogger blog to a non-blogger website
              • Create desktop software that allows users to create or edit Blogger posts from their desktop computers
              • Create browser and mobile-based apps that serve the same purpose as above

              Basics

              First, you need to know some of the basics of objects and resources available in the API. There are five types of resources currently available.
              • Blogs - A blog resource represents a full Blogger blog. A user may have more than one Blogger blogs, so the control of multiple blogs is handled by the blogs resource. You can use it to list all the blogs a user has access to, or get a single blog by its ID.
              • Posts - A post resource represents a post on a blog, and each is a child of the blog resource. A posts collection contains all the post resources within a blog resource.
              • Comments - A comment resource represents a comment on a blog post, and is logically a child object of the respective post resource. A comments collection is a list of all comments under a posts (parent) resource.
              • Pages - A blog has static pages which inherit from the blog (as child objects).
              • Users - A user resource represents a non-anonymous user, and is used to identify the author of a blog post, page, or comment. A users collection is a list of all the (global) user resources on Blogger. For privacy reasons, a list of all the users on Blogger cannot be listed. However, you can retrieve your own user resource by your unique ID (or by using the self identifier)
              Blogger resource hierarchy

              API Reference

              Here is a list of methods as described in the Blogger API v3 reference.

              OperationDescriptionREST HTTP mappings
              listLists all resources within a collectionGET on a collection URI
              getGets a specific resourceGET on a resource URI
              getByUrlGets a resource, looking it up by URLGET with the URL passed in as a parameter
              getByPathGets a resource by looking it up by its pathGET with the Path passed in as a parameter
              listByUserLists resources owned by a UserGET on a user owned collection
              searchSearch for resources, based on a query parameterGET on a Search URL, with the query passed in as a parameter
              insertCreate a resource in a collectionPOST on a collection URI
              deleteDeletes a resourceDELETE on a resource URI
              patchUpdate a resource, using Patch semanticsPATCH on a resource URI
              updateUpdate a resourcePUT on a resource URI

              The following table matches the resource types in the API (which we discussed earlier) with the methods they support.

              Resource TypeSupported Methods
              listgetgetByUrlgetByPathlistByUsersearchinsertdeletepatchupdate
              Blogs??????????
              Posts??????????
              Comments??????????
              Pages??????????
              Users??????????

              You can use these methods to develop a fully functional Blogger app. There are various ways of invoking these methods. You can use HTTP client-side commands, or from JavaScript. You can also develop using client libraries on any one of the following platforms.

              • .NET
              • Java
              • PHP
              • Python
              • Ruby
              • Go
              • GWT
              • JavaScript
              • Node.js
              • Objective-C

              We will talk more about these client libraries, and calling methods in a future post. In the meantime, if you have any questions regarding the functionality of this API or its methods, please feel free to ask in the comments section below. Cheers :)
              :::::::::::::::::::::::::::::By:-SJSM -THE HARYANVI


              visit link download
              Read more »

              Sunday, December 10, 2017

              How To Insert Like button To Downloads in Blogger

              How To Insert Like button To Downloads in Blogger


              In this article i will show you how to insert a facebook like button before download button.
              Still Confused ?
              What it is ?
              The best example for this is the survey site .
              They allow user to download file only after completing the survey
              It is same like that but here user needs to like our facebook picture .
              Then only they can download the file
              We will insert this widget in our posts, so users can easily download specific files by liking our page so to do so follow the following instructions.
              Go To Blogger >> Create a New Post
              Now Select �HTML Tab and paste the following code there.




              Customization:
              Replace �http://www.Facebook.com/dadhackers.tk with your Facebook Fan Page.
              Replace �www.google.com �with the downloading link you want to attach to this widget.
              Replace �520px �if you want to adjust the widget of this widget.
              Replace �163 �if you wish to change the height of your widget
              Now after customizing your widget, publish the post and thats it.�




              visit link download
              Read more »

              Friday, December 8, 2017

              How to Hide title and description from blogger header

              How to Hide title and description from blogger header


              How-to-Hide-title-and-description
              If you have a custom header, title and description, then there is no need of default Blogger title and description, and also it look disgusting on Blogger page to have that.
              So here I will show you, how to get a hide Blogger title and How to hide Blogger �description by adding a small piece of code.
              Lets start:


              Read more �

              visit link download
              Read more »

              Tuesday, December 5, 2017

              If Conditional Pada Blogger

              If Conditional Pada Blogger


              Bagi seorang perancang template untuk blogspot sangat perlu mengetahui dan memahami berbagai tipe tag kondisional ini. Dengan tujuan supaya dapat meracik atau membuat template blog blogspot yang berkualitas dan sesuai dengan keinginan sang pembuat template.
              11 Conditional Tag Blogger
              Dibawah ini terdapat 11 jenis conditional tag pada blogger. Berikut daftar tag kondisional tersebut.
              • 1. Conditional Tag untuk "Halaman Depan"
              <b:if cond=data:blog.url == data:blog.homepageUrl>
              ...
              </b:if>
              • 2. Halaman Posting dan Statis
              <b:if cond=data:blog.url == data:post.url>
              ...
              </b:if>
              • 3. Halaman Statis
              <b:if cond=data:blog.pageType == "static_page">
              ...
              </b:if>
              • 4. Halaman Posting/Artikel
              <b:if cond=data:blog.pageType == "item">
              ...
              </b:if>
              • 5. Halaman Indeks
              Contohnya halaman depan, label, dan search.
              <b:if cond=data:blog.pageType == "index">
              ...
              </b:if>

              • 6. Halaman Label
              <b:if cond=data:blog.searchLabel>
              ...
              </b:if>

              • 7. Halaman Search/Pencarian
              <b:if cond=data:blog.searchQuery>
              ...
              </b:if>

              • 8. Halaman Archive/Arsip
              <b:if cond=data:blog.pageType == "archive">
              ...
              </b:if>

              • 9. Posting Pertama
              Untuk post pertama misalnya pada halaman depan, label, search, atau archive.

              <b:if cond=data:post.isFirstPost>
              ...
              </b:if>

              • 10. Halaman Error
              <b:if cond=data:blog.pageType == "error_page">
              ...
              </b:if>

              • 11. Halaman/URL Tertentu
              <b:if cond=data:blog.url == "URL">
              ...
              </b:if>
              Multiple Condition

              Untuk lebih dari satu kondisi, tambahkan kode <b:else/> seperti di bawah.
              <b:if cond=data:blog.pageType == "item">
              jika kondisi benar
              <b:else/>
              jika kondisi salah
              </b:if>
              Pengingkaran (Reverse Condition)
              Kondisi pengingkaran merupakan kondisi dimana kode yang ada di dalamnya tidak tampil pada halaman yang tertulis pada tag kondisional, melainkan tampil pada semua halaman selain halaman yang tertulis pada tag kondisional.
              Untuk kondisi pengingkaran cukup ubah kode == menjadi kode !=
              <b:if cond=data:blog.url != data:post.url>
              ...
              </b:if>
              Jika terjadi error coba ubah tanda " menjadi &quot;
              Sekian artikel mengenai macam-macam conditional tag pada blogger, semoga artikel ini dapat bermanfaat bagi Anda.


              visit link download
              Read more »

              Sunday, December 3, 2017

              How To H ck Facebook YouTube Twitter Blogger etc Using Android FaceNiff

              How To H ck Facebook YouTube Twitter Blogger etc Using Android FaceNiff


              Hello Friends,
                                        I am Saiyam Anand and today I will teach you how to h@ck Facebook,Twitter,YouTube,Blogger,etc account using FaceNiff

              FaceNiff

              FaceNiff is an android tool for h@ckers (newbies) who want to sniff and intercept web session profiles over the WiFi connection. That means, if you want to h@ck into a Facebook account which is using the same WiFi network, you can use FaceNiff.


              How Does FaceNiff Works ?

              When you "start" the FaceNiff, it will monitor all the network traffic over the connected WiFi, then it will capture unencrypted session ID cookies from the websites. Then it will allow you to enter victims account as him/her that means you will be the owner of that account.

              The exact working of FaceNiff can be called as Session Hij@cking. 

              What Are The Requirements for doing all this stuff?
              First of all, your android phone must be rooted.

              Then download the Faceniff android application [Click here to download].

              How To Hij@ck Sessions ?

              Install the FaceNiff application...

              Then, open it...

              ... and grant root access to it.

              Make sure you are connected to a WiFi network and you have a target on the same network.

              Now, you have a screen something like this :

              Faceniff android tool

              Now, tap on the top left button "Offline" to make it "Online". Then tap on the "START" button...

              The FaceNiff will start to display the unencrypted sessions... ( see the image below) :

              Faceniff android tool for hackers

              FaceNiff will not display anything,  if you dont have target ( who is using http to access a web account).

              If the victim is using https, you can try tapping on "SSL Strip" to force the victims browser to fall back on http. I think, SSL striping will not work on Facebook and blogger , because they are using HSTS (HTTP Strict Transport Security) to protect against downgrade attacks.

              At the time of testing this app, I found that the website vk.com also known as vkontakte.ru is running on http and can use FaceNiff to steal session cookies.

              Tap on the unencrypted sessions displayed on the FaceNiff and use the stock browser to access the webpage.

              Now you have the victims web account. Well done! (Remember: If the victim logged out from the account, you will also be logged out automatically)

              What Are The Options Available On FaceNiff ?
              It has a stealth mode, SSL strip, can export or import sessions, vibration alert when new profile is found, and the filter services that allows you to filter the session ID cookies.

              If the normal mode didnt display any profiles/session ID cookies, you can use Stealth mode (slower than normal mode) to capture unencrypted session ID cookies.

              If you like this article, share it with your friends.

              CLICK HERE TO DOWNLOAD FACENIFF

              Any doubts? Put it in the comment section below, I would like answer it.

              Join Our Facebook Group to also attain addition help and updates. If You Feel any Doubt Related to Our Post & any Queries Related to Android, We will Try Our Best to Solve Your Problem Join Us On Facebook group [click here]


              Also Read-  We have also done many tutorials on other trick. To download Whatsapp Plus[click here]. If you want to learn wifi hacking using AndroDumpper then click here. To learn how to hack wifi password using Wpa Wps Tester apk[click here].If you want to learn how to hack facebook and Gmail account then click here. If you want to crash your friends whatsapp using Whatsapp Bomber App then click here. To make a mobile ringtone with your own name online[click here]. To learn how to make whatsapp video call[click here].To fool your friends on Whatsapp using image preview changer[click here]. To learn how to transform your android device into ios9 using ios 9 launcher[click here]. To download candy crush MegaMod then click here. To download SuperPhoto full app[click here]. To download World Cricket Championship MegaMod with Unlimited money, Unlimited Wickets and Everything unlocked[click here].

              KEEP VISITING DUDES

              ENJOY!!


              Hello Friends,
                                        I am Saiyam Anand and today I will teach you how to h@ck Facebook,Twitter,YouTube,Blogger,etc account using FaceNiff

              FaceNiff

              FaceNiff is an android tool for h@ckers (newbies) who want to sniff and intercept web session profiles over the WiFi connection. That means, if you want to h@ck into a Facebook account which is using the same WiFi network, you can use FaceNiff.


              How FaceNiff Works ?

              When you "start" the FaceNiff, it will monitor all the network traffic over the WiFi, then it will capture unencrypted session ID cookies from the websites. Then it will allow you to enter victims account as him/her.

              The exact working of FaceNiff can be called as Session Hij@cking.

              What Are The Requirements ?
              First of all, your android phone must be rooted.

              Then download the Faceniff android application [Click here to download].

              How To Hij@ck Sessions ?

              Install the FaceNiff application...

              Then, open it...

              ... and grant root access to it.

              Make sure you are connected to a WiFi network and you have a target on the same network.

              Now, you have a screen something like this :

              Faceniff android tool

              Now, tap on the top left button "Offline" to make it "Online". Then tap on the "START" button...

              The FaceNiff will start to display the unencrypted sessions... ( see the image below) :

              Faceniff android tool for hackers

              FaceNiff will not display anything,  if you dont have target ( who is using http to access a web account).

              If the victim is using https, you can try tapping on "SSL Strip" to force the victims browser to fall back on http. I think, SSL striping will not work on Facebook and blogger , because they are using HSTS (HTTP Strict Transport Security) to protect against downgrade attacks.

              At the time of testing this app, I found that the website vk.com also known as vkontakte.ru is running on http and can use FaceNiff to steal session cookies.

              Tap on the unencrypted sessions displayed on the FaceNiff and use the stock browser to access the webpage.

              Now you have the victims web account. Well done! (Remember: If the victim logged out from the account, you will also be logged out automatically)

              What Are The Options Available On FaceNiff ?
              It has a stealth mode, SSL strip, can export or import sessions, vibration alert when new profile is found, and the filter services that allows you to filter the session ID cookies.

              If the normal mode didnt display any profiles/session ID cookies, you can use Stealth mode (slower than normal mode) to capture unencrypted session ID cookies.

              If you like this article, share it with your friends.

              CLICK HERE TO DOWNLOAD FACENIFF

              Any doubts? Put it in the comment section below, I would like answer it.

              Join Our Facebook Group to also attain addition help and updates. If You Feel any Doubt Related to Our Post & any Queries Related to Android, We will Try Our Best to Solve Your Problem Join Us On Facebook group [click here]


              Also Read-  We have also done many tutorials on other trick. To download Whatsapp Plus[click here]. If you want to learn wifi hacking using AndroDumpper then click here. To learn how to hack wifi password using Wpa Wps Tester apk[click here].If you want to learn how to hack facebook and Gmail account then click here. If you want to crash your friends whatsapp using Whatsapp Bomber App then click here. To make a mobile ringtone with your own name online[click here]. To learn how to make whatsapp video call[click here].To fool your friends on Whatsapp using image preview changer[click here]. To learn how to transform your android device into ios9 using ios 9 launcher[click here]. To download candy crush MegaMod then click here. To download SuperPhoto full app[click here]. To download World Cricket Championship MegaMod with Unlimited money, Unlimited Wickets and Everything unlocked[click here].

              KEEP VISITING DUDES

              ENJOY!!



              visit link download
              Read more »