If you like making phishing webs, then you must be familiar with the phishing script.
Almost 90% of phisers will google the script to get the latest version. Even though we can edit it ourselves by changing the image, text or code.
I myself also rely more on google, because it’s easier. But sadly, not all scripts send mail.
Therefore, we must be able to tinker with it ourselves so that the appearance of phishing is satisfactory.
In this post I will discuss starting from understanding, how to make it, to the editing process belonging to other people. In addition, I will also share the download file for free.
Alright, let’s learn more.
What is a phishing script?
A phishing script is a collection of files and folders to set up a phishing page starting from the appearance, login method and how it works so that it can trick people who access it.
The files and folders are html, php and css codes like on the website. Then everything will be compressed into a zip or rar for easy uploading.

There are many scripts with different views. It is based on what platform or game is being targeted.
Example :
You want to make a free fire phishing web, then you have to upload a script with a ff game display.
Actually 1 script can be used to create various kinds of phishing, such as fb, ff, pubg, ml, etc.
It’s just that, we have to edit the appearance according to what phishing we will make.
Alright, after understanding we move on to how it works.
How phishing scripts work
In order to work, we have to upload the script file to the hosting. In addition, we also have to specify a domain name in order to see how it looks.
Maybe you guys already understand, so I won’t discuss how to upload it to hosting.
Let’s get straight to how it works:
First, the script will display a selection of attractive prizes/services. For example, the choice of free diamonds, free skins, joining the xx group, or free credit.
Second, Visitors (victims) will see a login page after selecting a gift/offer. This is a fake login page that can save every data entered.
Third, the script will send the saved data to the listed email. In the script there is a file that functions to perform automatic delivery if there is incoming data.
In short, the script only requires an account email & password. It will then send it to the listed email.
Got it, right?
If not, please see how the process of making it.
What is the process of creating a phishing script?
The main thing is that we have to create some files that contain certain code. Then link each file to work in order.
Example :
When clicking a link on file A, it should point to file B. When file B receives a command, then file C should run automatically.
I’ve made code with a view like this:

Then I have also created a file to set the automatic email.

For the process of creating files and coding, I use a quick edit application. You can download it from playstore.
Alright, now I will give an example of the creation process with a simple code.
Here’s how to make a phishing script with simple code
1. Create a login page for filling in your email and password
Create a file with the extension .html then fill it with the following code:
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>Test Send Mail</title>
</head>
<body>
<h2>Test Send Mail</h2>
<form action="proses.php" method="post">
<input type="text" name="email" placeholder="Masukan email">
<input type="password" name="password" placeholder="Masukan password">
<button type="submit" name="submit">Login</button>
</form>
</body>
</html>
The trick, open the quick edit application then enter the code that I have included. Then press the folder icon and select “save as”. Finally, write the file name ending in .html.
Example: index.html
2. Create a file for automatic email sending
This file is useful for sending every incoming data on the login page to email.
You have to create this file with the name process.php because it is already listed in the previous code file.
If you want to use another name, you have to change the code