Skip to content

Commit d63b47c

Browse files
Initial File
1 parent 77317de commit d63b47c

11 files changed

+2567
-0
lines changed

CCGenerators.html

Lines changed: 100 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,100 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
6+
<title>Hacker CC Generator</title>
7+
<link rel="icon" type="image/x-icon" href="https://img.icons8.com/?size=100&id=122592&format=png&color=000000">
8+
<style>
9+
body {
10+
background-color: black;
11+
color: #00ff00;
12+
font-family: 'Courier New', monospace;
13+
text-align: center;
14+
padding: 20px;
15+
display: flex;
16+
flex-direction: column;
17+
min-height: 100vh;
18+
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;
19+
}
20+
.container {
21+
border: 2px solid #00ff00;
22+
padding: 20px;
23+
display: inline-block;
24+
margin: auto;
25+
box-shadow: 0 0 10px #00ff00;
26+
}
27+
button {
28+
background-color: black;
29+
color: #00ff00;
30+
border: 1px solid #00ff00;
31+
padding: 10px;
32+
cursor: pointer;
33+
font-size: 16px;
34+
transition: 0.3s;
35+
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;
36+
37+
}
38+
button:hover {
39+
background-color: #00ff00;
40+
color: black;
41+
box-shadow: 0 0 10px #00ff00;
42+
}
43+
.output {
44+
margin-top: 20px;
45+
font-size: 18px;
46+
border-top: 1px solid #00ff00;
47+
padding-top: 10px;
48+
}
49+
.footer {
50+
margin-top: auto;
51+
padding: 10px;
52+
border-top: 2px solid #00ff00;
53+
text-align: center;
54+
}
55+
.developer-text {
56+
font-size: 14px;
57+
}
58+
.github-link {
59+
color: #00ff00;
60+
text-decoration: none;
61+
}
62+
.github-link:hover {
63+
text-decoration: underline;
64+
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;
65+
}
66+
</style>
67+
</head>
68+
<body>
69+
<div class="container">
70+
<h1>Hacker Credit Card Generator</h1>
71+
<button onclick="generateCC()">Generate CC</button>
72+
<div class="output" id="output"></div>
73+
</div>
74+
75+
<footer class="footer">
76+
<p class="developer-text">Developed by <a href="https://github.com/ExploitInject" class="github-link" target="_blank">ExploitInject</a></p>
77+
</footer>
78+
79+
<script>
80+
function generateCC() {
81+
const prefixes = ["4539", "4556", "4916", "4485", "4716", "6011", "3796"];
82+
let ccNumber = prefixes[Math.floor(Math.random() * prefixes.length)];
83+
84+
while (ccNumber.length < 16) {
85+
ccNumber += Math.floor(Math.random() * 10);
86+
}
87+
88+
const expiryMonth = String(Math.floor(Math.random() * 12) + 1).padStart(2, '0');
89+
const expiryYear = String(new Date().getFullYear() + Math.floor(Math.random() * 5) + 1).slice(2);
90+
const cvv = String(Math.floor(100 + Math.random() * 900));
91+
92+
document.getElementById("output").innerHTML = `
93+
<p>Card Number: <strong>${ccNumber}</strong></p>
94+
<p>Expiry Date: <strong>${expiryMonth}/${expiryYear}</strong></p>
95+
<p>CVV: <strong>${cvv}</strong></p>
96+
`;
97+
}
98+
</script>
99+
</body>
100+
</html>

ShortcutKeyOfComputers.html

Lines changed: 258 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,258 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
4+
<head>
5+
<meta charset="UTF-8">
6+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
7+
<title>Shortcut Keys Guide</title>
8+
<style>
9+
/* Google Font */
10+
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');
11+
12+
* {
13+
margin: 0;
14+
padding: 0;
15+
box-sizing: border-box;
16+
font-family: 'Poppins', sans-serif;
17+
}
18+
19+
body {
20+
background: linear-gradient(135deg, #1f4037, #99f2c8);
21+
color: white;
22+
text-align: center;
23+
padding: 20px;
24+
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="%23ff0000" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="12" cy="12" r="10"></circle><circle cx="9" cy="10" r="1"></circle><circle cx="15" cy="10" r="1"></circle><path d="M8 16L12 14L16 16"></path></svg>'), auto;
25+
}
26+
27+
header {
28+
background: rgba(0, 0, 0, 0.3);
29+
padding: 20px;
30+
border-radius: 10px;
31+
}
32+
33+
h1 {
34+
font-size: 2rem;
35+
}
36+
37+
input {
38+
width: 80%;
39+
padding: 10px;
40+
margin-top: 10px;
41+
border-radius: 5px;
42+
border: none;
43+
font-size: 1rem;
44+
outline: none;
45+
}
46+
47+
main {
48+
margin-top: 20px;
49+
}
50+
51+
section {
52+
background: rgba(255, 255, 255, 0.2);
53+
padding: 15px;
54+
margin: 15px auto;
55+
width: 80%;
56+
border-radius: 10px;
57+
transition: 0.3s ease-in-out;
58+
}
59+
60+
section:hover {
61+
transform: scale(1.02);
62+
}
63+
64+
h2 {
65+
font-size: 1.5rem;
66+
margin-bottom: 10px;
67+
}
68+
69+
ul {
70+
list-style: none;
71+
}
72+
73+
li {
74+
font-size: 1.1rem;
75+
padding: 8px 0;
76+
}
77+
78+
footer {
79+
margin-top: 30px;
80+
font-size: 1rem;
81+
padding: 10px;
82+
background: rgba(0, 0, 0, 0.3);
83+
border-radius: 5px;
84+
}
85+
</style>
86+
<script>
87+
document.getElementById("search").addEventListener("keyup", function() {
88+
let searchQuery = this.value.toLowerCase();
89+
let sections = document.querySelectorAll("section");
90+
91+
sections.forEach(section => {
92+
let found = false;
93+
let items = section.querySelectorAll("li");
94+
95+
items.forEach(item => {
96+
if (item.innerText.toLowerCase().includes(searchQuery)) {
97+
item.style.display = "block";
98+
found = true;
99+
} else {
100+
item.style.display = "none";
101+
}
102+
});
103+
104+
section.style.display = found ? "block" : "none";
105+
});
106+
});
107+
108+
</script>
109+
</head>
110+
111+
<body>
112+
113+
<header>
114+
<h1>💻 Ultimate Shortcut Keys Guide ⌨️</h1>
115+
<input type="text" id="search" placeholder="🔍 Search for a shortcut...">
116+
</header>
117+
118+
<main id="shortcuts">
119+
120+
<section>
121+
<h2>🖥 General Shortcuts</h2>
122+
<ul>
123+
<li><b>CTRL + A</b> → Select All</li>
124+
<li><b>CTRL + C</b> → Copy</li>
125+
<li><b>CTRL + X</b> → Cut</li>
126+
<li><b>CTRL + V</b> → Paste</li>
127+
<li><b>CTRL + Z</b> → Undo</li>
128+
<li><b>CTRL + Y</b> → Redo</li>
129+
<li><b>CTRL + B</b> → Bold</li>
130+
<li><b>CTRL + U</b> → Underline</li>
131+
<li><b>CTRL + I</b> → Italic</li>
132+
<li><b>CTRL + P</b> → Print</li>
133+
<li><b>CTRL + S</b> → Save</li>
134+
<li><b>CTRL + O</b> → Open File</li>
135+
<li><b>CTRL + N</b> → New Document</li>
136+
<li><b>CTRL + F</b> → Find</li>
137+
<li><b>CTRL + H</b> → Replace</li>
138+
<li><b>CTRL + SHIFT + S</b> → Save As</li>
139+
<li><b>CTRL + D</b> → Bookmark</li>
140+
<li><b>CTRL + SHIFT + V</b> → Paste Without Formatting</li>
141+
</ul>
142+
</section>
143+
144+
<section>
145+
<h2>📂 File Explorer Shortcuts</h2>
146+
<ul>
147+
<li><b>CTRL + SHIFT + N</b> → Create New Folder</li>
148+
<li><b>ALT + ENTER</b> → View Properties</li>
149+
<li><b>SHIFT + DELETE</b> → Permanently Delete</li>
150+
<li><b>ALT + D</b> → Select Address Bar</li>
151+
<li><b>WINKEY + E</b> → Open File Explorer</li>
152+
<li><b>WINKEY + D</b> → Show Desktop</li>
153+
<li><b>ALT + LEFT</b> → Back</li>
154+
<li><b>ALT + RIGHT</b> → Forward</li>
155+
<li><b>ALT + UP</b> → Up One Level</li>
156+
<li><b>CTRL + N</b> → Open New Explorer Window</li>
157+
<li><b>F2</b> → Rename File</li>
158+
<li><b>F5</b> → Refresh Window</li>
159+
</ul>
160+
</section>
161+
162+
<section>
163+
<h2>🖥 Windows Shortcuts</h2>
164+
<ul>
165+
<li><b>WINKEY + L</b> → Lock Computer</li>
166+
<li><b>WINKEY + R</b> → Open Run Dialog</li>
167+
<li><b>WINKEY + TAB</b> → Task View</li>
168+
<li><b>WINKEY + P</b> → Project Screen</li>
169+
<li><b>WINKEY + I</b> → Open Settings</li>
170+
<li><b>WINKEY + S</b> → Search</li>
171+
<li><b>WINKEY + V</b> → Clipboard History</li>
172+
<li><b>WINKEY + "+" or "-"</b> → Magnifier</li>
173+
<li><b>WINKEY + ,</b> → Peek at Desktop</li>
174+
<li><b>WINKEY + Ctrl + D</b> → Create Virtual Desktop</li>
175+
<li><b>WINKEY + Ctrl + F4</b> → Close Virtual Desktop</li>
176+
</ul>
177+
</section>
178+
179+
<section>
180+
<h2>🌐 Browser Shortcuts</h2>
181+
<ul>
182+
<li><b>CTRL + T</b> → New Tab</li>
183+
<li><b>CTRL + W</b> → Close Tab</li>
184+
<li><b>CTRL + SHIFT + T</b> → Reopen Closed Tab</li>
185+
<li><b>CTRL + L</b> → Focus Address Bar</li>
186+
<li><b>CTRL + R</b> → Refresh</li>
187+
<li><b>CTRL + SHIFT + DELETE</b> → Clear Browsing Data</li>
188+
<li><b>CTRL + 1 to 9</b> → Switch Tabs</li>
189+
<li><b>CTRL + F5</b> → Hard Refresh</li>
190+
<li><b>CTRL + N</b> → Open New Browser Window</li>
191+
<li><b>CTRL + SHIFT + P</b> → Open Incognito Mode</li>
192+
</ul>
193+
</section>
194+
195+
<section>
196+
<h2>💻 Programming Shortcuts</h2>
197+
<ul>
198+
<li><b>CTRL + /</b> → Comment Code (VS Code, Sublime, etc.)</li>
199+
<li><b>CTRL + D</b> → Duplicate Line</li>
200+
<li><b>CTRL + SHIFT + K</b> → Delete Line</li>
201+
<li><b>ALT + UP/DOWN</b> → Move Line Up/Down</li>
202+
<li><b>CTRL + SHIFT + L</b> → Select All Occurrences</li>
203+
<li><b>CTRL + ENTER</b> → Insert Line Below</li>
204+
<li><b>CTRL + SHIFT + ENTER</b> → Insert Line Above</li>
205+
<li><b>CTRL + SHIFT + ALT + Up/Down</b> → Multi-Cursor Editing</li>
206+
<li><b>CTRL + SHIFT + M</b> → Show Errors/Warnings (VS Code)</li>
207+
</ul>
208+
</section>
209+
210+
<section>
211+
<h2>💻 VS & VS Code Shortcuts</h2>
212+
<ul>
213+
<li><b>CTRL + P</b> → Quick Open</li>
214+
<li><b>CTRL + SHIFT + P</b> → Open Command Palette</li>
215+
<li><b>CTRL + B</b> → Toggle Sidebar</li>
216+
<li><b>CTRL + /</b> → Comment/Uncomment Line</li>
217+
<li><b>CTRL + D</b> → Duplicate Line</li>
218+
<li><b>ALT + ↑ / ↓</b> → Move Line Up/Down</li>
219+
<li><b>CTRL + SHIFT + K</b> → Delete Line</li>
220+
<li><b>CTRL + ENTER</b> → Insert Line Below</li>
221+
<li><b>CTRL + SHIFT + ENTER</b> → Insert Line Above</li>
222+
<li><b>CTRL + SHIFT + M</b> → Show Errors & Warnings</li>
223+
<li><b>CTRL + SHIFT + O</b> → Go to Symbol</li>
224+
<li><b>CTRL + TAB</b> → Switch Between Tabs</li>
225+
<li><b>CTRL + SHIFT + F</b> → Search in Files</li>
226+
<li><b>CTRL + SHIFT + H</b> → Replace in Files</li>
227+
<li><b>CTRL + `</b> → Toggle Terminal</li>
228+
<li><b>CTRL + K + C</b> → Add Block Comment</li>
229+
<li><b>CTRL + K + U</b> → Remove Block Comment</li>
230+
<li><b>F12</b> → Go to Definition</li>
231+
<li><b>ALT + Click</b> → Multi-Cursor</li>
232+
<li><b>CTRL + K + S</b> → Open Keyboard Shortcuts</li>
233+
</ul>
234+
</section>
235+
236+
<section>
237+
<h2>🔠 MS Word & Docs Shortcuts</h2>
238+
<ul>
239+
<li><b>CTRL + K</b> → Insert Hyperlink</li>
240+
<li><b>CTRL + SHIFT + C</b> → Copy Formatting</li>
241+
<li><b>CTRL + SHIFT + V</b> → Paste Formatting</li>
242+
<li><b>CTRL + SHIFT + 8</b> → Show Paragraph Marks</li>
243+
<li><b>CTRL + 1</b> → Single Spacing</li>
244+
<li><b>CTRL + 2</b> → Double Spacing</li>
245+
<li><b>CTRL + 5</b> → 1.5 Line Spacing</li>
246+
</ul>
247+
</section>
248+
249+
</main>
250+
251+
<footer>
252+
<p>🚀 Designed with ❤️ by <b><a href="https://github.com/ExploitInject" target="_blank"
253+
style="text-decoration: none; color: inherit;">ExploitInject</a></b></p>
254+
</footer>
255+
256+
</body>
257+
258+
</html>

0 commit comments

Comments
 (0)