Blogger Theme Design (Chapter 1)

This tutorial teaches you how to design a blogger template from scratch. Go to 'Theme' and 'Edit HTML' in Blogger. Now add the basic HTML code.  <html>      <head>          <title>Title</title>      </head>      <body>          <p>Hello...

How to add third party ads in Blogger

This post describes how to add ads in Blogger from Amazon Affiliate Program. I started blog writing in August 2017. Then I applied for Google Adsense after creating 5 posts in my blog. But that application is rejected due to insufficient content. Again I applied for Adsense after some days. But again application is rejected. Then I searched for an alternative for Adsense...

Don't track your own page views in Blogger

This post gives the technique to avoid counting of your own page views in Blogger. First login to your blog and then go to https://[yourblog].blogspot.in/b/statsCookieManage. Then tick the check box 'Don't track my views for this blog'. Then go to Status -> Overview to check your page views. But unfortunately blogger still tracking my pageviews. This issue...

Introduction to Java

Java is a high level programming language. Features of Java Object Oriented Java is an Object Oriented Programming(OOPs) language. The main concepts of OOPs are Object Class Inheritance Polymorphism Abstraction Encapsulation PLatform Independent Java is a platform independent programming language. Java code can be run on different platforms like Windows,...

How to add menu in Blogger

Go to Layout and click on Add a Gadget button Then click Add Pages button Then click 'Add external link' button Then give Page title and URL Then click 'Save' button Then the menu will display in your blog ...

The HTTP Protocol

Hypertext transfer protocol (HTTP) is the core communications protocol used by all of today’s web applications. HTTP uses a message based model in which a client sends a request message and the server returns a response message. HTTP is a connectionless protocol. HTTP does not keep a connection between client and server. HTTP client sent a request to the server and disconnects from server and wait for the response. Then server processes the request...

Introduction to Recon-ng

Recon-ng is a tool used by security testers for reconnaissance. This tutorial will give a brief introduction of commands used in Recon-ng. Starting recon-ng Open command prompt and go to recon-ng installed directory by using the command cd recon-ng Then start recon-ng using command ./recon-ng This will open a screen like below Enter help to see the commands in...

How to install ZAP (Zed Attack Proxy) in ubuntu

1. Download ZAP from below link.     https://github.com/zaproxy/zaproxy/wiki/Downloads     Download linux package from this link. 2. Extract the downloaded file.  I extracted this file inside Home -> securitytesting. 3. Open ZAP using command prompt.  Open command prompt by using ctrl + alt + T. Go to Home -> securitytesting...

How to intercept android app using zap proxy

This tutorial explains how to intercept android application using ZAP. First connect your android device and your system in a common Wi-Fi network. Then follow the below steps. 1. Generate SSL certificate from zap proxy First we need generate an SSL certificate from ZAP. Go to  Tools -> Options -> Dynamic SSL Certificates ->Generate Then save this certificate...