If you want to deface the website, then you have to make your own deface script so that it looks satisfactory.
In this post I will share the process of making it using 2 ways, namely html basic engineering manual and auto with termux.
With your own customized script, you can do the following:
- Setting the display
- Add music
- Installing an image
- Write words/captions
- Provide animation, etc
All right, let’s go straight to the first method.
How to Make Your Own Deface Script with basic HTML techniques

First, prepare a text editor application for the editing process.
Because I use android, so I use quick editor apk download from playstore.
Then follow the following guide.
1. Copy the basic html code of the web page
A website is built with html code, as well as a deface script.
Here I have written the structure.
<html>
<head>
<title> </title>
</head>
<body>
</body>
</html>
The html will form a blank page. So you have to fill it in so that it becomes a cool deface script.
2. Edit the html code by adding text, images, videos, or animations
Open the quick editor application then paste / paste the html code above.
After that, use the following code to add elements.
- Title = the contents of the sentence in the code line
xx
Example:
You want to create a “Hacked by Me” page title.
Then enter the word Hacked by Me in
- Background = enter the code below
There are 2 background options, namely color or image.
For color use this:
<div style="bgcolor: black;">
Please replace black with other colors such as yellow, green, red, blue, white, etc.
For images use this code:
<div style="background-image: url('img_girl.jpg');">
Replace img_girl.jpg with the image address/link.
Example:
If you want to take a picture from Facebook, then upload the picture first.
Then display the full size of the image and copy the link.
Paste the link in the url(‘here‘)
- Large Text = code after
You can use large text to make greetings, notifications and the like.
For example, you want to make ‘welcome to xx’, ‘your site has been hacked’, or ‘Hacked by your name’.
Then use this code:
<center><h1 style="font-size:76px;color:yellow;font-weight:800">hacked by omcyber</h1>
Change 76px to set the font size, yellow for font color, and hacked by omcyber for text.
- Image = code after large text code
Images can include your group logo or other photos, it’s up to you.
Use this code to list it.
<br><img src="https://omcyber.com/cara-membuat-script-deface-sendiri/linkGambar"width="300"height="300">
Replace the Image link with your image link (https://xxx.jpg), and change 300 to match the length and width of the image.
- Small text = after the image code
You can use small text to make a sentence contact us, thank you or caption it’s up to you.
Besides that, you can also write down who you are or from what team.
Use this code to create it:
<br><font face="Courier new" size="6" color="red"> Thanks to Arief Riyanto </font>
description:
Courier new = font
size = size
color = color
Thanks to Arief Riyanto = replace with your own words
- Animation = code before
This animation is useful so that the text runs like running text.
Placement of the code must be last or right before

