Sunday, 13 October 2013

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.
It will teach you the basics to create your own unique defaces.


Preview:Click to Hide)
[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]


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]

==================================================================

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]

========================================================================

==================================================================
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">
==================================================================

Related Posts:

  • HOW INJECTION ATTACKS WORK HOW INJECTION ATTACKS WORKInjection attacks are based on a single problem that persists in many technologies: namely,no strict separation exists between program instructions and user data (also referred to asuser input). T… Read More
  • Set Up VirtualBox ★ How To Set Up VirtualBox - Beginner ★Here I will explain how to set up a virtual machine and in this case it's VirtualBox. There are many benefits to having a virtual box. It allows you to run another OS inside your curren… Read More
  • XSS XSS[Behind the mask] What is XSS? Cross-site scripting (XSS) is a type of computer security vulnerability typically found in Web applications that enables attackers to inject client-side script into Web pages viewed by oth… Read More
  • Syslogger [Free] What’s a keylogger ? Keylogger is a program which you will send to your victim and once he/she opens it.It will record all the keystrokes  (i.e what he/she types on keyboard) and then it will send those keystrokes to… Read More
  • ads free youtube Disable Ads on YouTube With This Simple Command There are a lot of ways to block ads, but with a simple command in the developer console, you can disable all ads on YouTube via an experiment. Google frequently … Read More

0 comments:

Post a Comment