Friday 12 April 2013

How to make Tour OWN deface Page


How To Make your Own Deface Page
Make your own Deface Page!
Today i will teach you guys the basics of making your very own deface pages. No need to leech other peoples work like skids after this tutorial!
It will teach you the basics to create your own unique defaces.

Preview:

[Image: capturemnm.png]

Step #1
The first step is to create the file structure that we are going to use. Now remember, this is proper HTML coding and should always be used, keeps it neat and proffesional.
This should be done in a text editor, like notepad or notepad++


[Image: capturepzz.png]

Breakdown:
Code:
<HTML> </HTML> - Are the HTML tags that specify that its a valid html document.

Code:
<HEAD> </HEAD> - Specify the head of the document, where you do all the styling and declaring of div's,link's,etc

Code:
<TITLE> HACKED! </TITLE> - Specifies the title of the html page.

Code:
<BODY> </BODY> - the body tags hold the majority of the deface page code.

Step #2:

Create a header and some text under the header. This has to be done in the "<body>" tags! nowhere else.

[Image: capturegw.png]

Breakdown:
Code:
<CENTER> </CENTER> - Aligns all content between the tags directly in the middle.

Code:
<H1> </H1> - Is the Biggest Header tag, there are many other types like h1,h2,h3

Code:
<PRE> </PRE> - These tags work in a way that places the content inbetween them exactly where they are.

As you can see, all the content that we want displayed on the deface page is within the <body> tags! This is very important!

Step #3:

The final step. Here is where we are going to style the the deface page to give it a unique feel and appearance.

[Image: capturexwp.png]

Breakdown:

Code:
<style type="text/css">

h1 {
            color: #ddd;
            font-size: 60pt;   
     }
</style>

This is CSS (Cascading Style Sheets) it basically styles whatever is declared, which in this case is the content within the <h1> tags.
two changes have been made, we changed the color to #ddd and the font-size to 60pt.

If you want to add images/pictures to a deface page, this can be done easily with the <img> tags.
Code:
<img src="http://www.linktoimage.com/" alt="Picture">

And if you want to add a youtube video to your deface page, thats easy aswell!
Code:
<embedded src="http://www.youtube.com/v/VIDEOIDHERE&autoplay=1&replay=1" width="1px" height="1px">

Thank you for reading this tutorial and feel free to post if you require any help!


Note: This tutorial is only for Educational Purposes, I did not take any responsibility of any misuse, you will be solely responsible for any misuse that you do. Hacking email accounts is criminal activity and is punishable under cyber crime and you may get upto 40 years of imprisonment, if got caught in doing so.

No comments:

Post a Comment