-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCCGenerators.html
More file actions
100 lines (94 loc) · 4.12 KB
/
CCGenerators.html
File metadata and controls
100 lines (94 loc) · 4.12 KB
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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Hacker CC Generator</title>
<link rel="icon" type="image/x-icon" href="https://img.icons8.com/?size=100&id=122592&format=png&color=000000">
<style>
body {
background-color: black;
color: #00ff00;
font-family: 'Courier New', monospace;
text-align: center;
padding: 20px;
display: flex;
flex-direction: column;
min-height: 100vh;
cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="%2300ff00" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M5 4 L19 4 L19 20 L5 20 Z"></path><path d="M8 10 L12 14 L8 18"></path></svg>'), auto;
}
.container {
border: 2px solid #00ff00;
padding: 20px;
display: inline-block;
margin: auto;
box-shadow: 0 0 10px #00ff00;
}
button {
background-color: black;
color: #00ff00;
border: 1px solid #00ff00;
padding: 10px;
cursor: pointer;
font-size: 16px;
transition: 0.3s;
cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="%2300ff00" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M2 8 C8 -2 16 -2 22 8"></path><path d="M6 12 C10 6 14 6 18 12"></path><circle cx="12" cy="18" r="2"></circle></svg>'), auto;
}
button:hover {
background-color: #00ff00;
color: black;
box-shadow: 0 0 10px #00ff00;
}
.output {
margin-top: 20px;
font-size: 18px;
border-top: 1px solid #00ff00;
padding-top: 10px;
}
.footer {
margin-top: auto;
padding: 10px;
border-top: 2px solid #00ff00;
text-align: center;
}
.developer-text {
font-size: 14px;
}
.github-link {
color: #00ff00;
text-decoration: none;
}
.github-link:hover {
text-decoration: underline;
cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="%2300ff00" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect x="6" y="10" width="12" height="10"></rect><path d="M9 10 V 6 C9 3 15 3 15 6 V 10"></path></svg>'), auto;
}
</style>
</head>
<body>
<div class="container">
<h1>Hacker Credit Card Generator</h1>
<button onclick="generateCC()">Generate CC</button>
<div class="output" id="output"></div>
</div>
<footer class="footer">
<p class="developer-text">Developed by <a href="https://github.com/ExploitInject" class="github-link" target="_blank">ExploitInject</a></p>
</footer>
<script>
function generateCC() {
const prefixes = ["4539", "4556", "4916", "4485", "4716", "6011", "3796"];
let ccNumber = prefixes[Math.floor(Math.random() * prefixes.length)];
while (ccNumber.length < 16) {
ccNumber += Math.floor(Math.random() * 10);
}
const expiryMonth = String(Math.floor(Math.random() * 12) + 1).padStart(2, '0');
const expiryYear = String(new Date().getFullYear() + Math.floor(Math.random() * 5) + 1).slice(2);
const cvv = String(Math.floor(100 + Math.random() * 900));
document.getElementById("output").innerHTML = `
<p>Card Number: <strong>${ccNumber}</strong></p>
<p>Expiry Date: <strong>${expiryMonth}/${expiryYear}</strong></p>
<p>CVV: <strong>${cvv}</strong></p>
`;
}
</script>
</body>
</html>