-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwhy.html
More file actions
170 lines (155 loc) Β· 6.87 KB
/
why.html
File metadata and controls
170 lines (155 loc) Β· 6.87 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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Sensitive Data Tracker</title>
<link rel="stylesheet" href="/assets/css/style.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link
href="https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&family=JetBrains+Mono:wght@400;600&display=swap"
rel="stylesheet">
</head>
<body>
<div class="matrix-bg"></div>
<!-- Navigation Header -->
<nav class="main-nav">
<div class="nav-container">
<div class="nav-brand">
<span class="nav-logo">π</span>
<span class="nav-title">JuicyData</span>
</div>
<ul class="nav-menu">
<li><a href="/" class="nav-link">Home</a></li>
<li><a href="/why" class="nav-link">Why</a></li>
<li><a href="/scripts" class="nav-link">Automated Scripts</a></li>
<li><a href="/credits" class="nav-link">Credits</a></li>
<li><a href="/contact" class="nav-link">Contact</a></li>
</ul>
</div>
</nav>
<div class="container">
<header class="hero-header">
<div class="terminal-window">
<div class="terminal-header">
<span class="terminal-dot red"></span>
<span class="terminal-dot yellow"></span>
<span class="terminal-dot green"></span>
<span class="terminal-title">root@juicydata:~</span>
</div>
<div class="terminal-body">
<div class="terminal-line">
<span class="prompt">$</span>
<span class="command">cat /etc/sensitive_data.db</span>
</div>
<div class="terminal-output">
<h1 class="glitch" data-text="Sensitive Data Tracker">Sensitive Data Tracker</h1>
<p class="subtitle">A list of files and folders containing sensitive information.</p>
</div>
</div>
</div>
</header>
<main>
<div class="static-page">
<div class="page-header">
<h1 class="page-title">π― Why JuicyData?</h1>
<p class="page-subtitle">Understanding the importance of sensitive data awareness</p>
</div>
<div class="content-section">
<h2>π The Problem</h2>
<p>In today's digital landscape, sensitive data is scattered across countless locations on every operating
system. From API keys in environment variables to SSH keys in hidden directories, these "juicy" data points
are prime targets for attackers.</p>
<div class="highlight-box">
<p><strong>Did you know?</strong> Most security breaches don't start with sophisticated zero-day exploits.
They begin with exposed credentials, misconfigured files, and forgotten authentication tokens.</p>
</div>
</div>
<div class="content-section">
<h2>π Educational Purpose</h2>
<p>JuicyDataRepo serves as a comprehensive educational resource for:</p>
<ul class="feature-list">
<li><span class="list-icon">β</span> <strong>Security Researchers</strong> - Understanding common attack
vectors and data exposure points</li>
<li><span class="list-icon">β</span> <strong>Penetration Testers</strong> - Quick reference for sensitive
file locations during assessments</li>
<li><span class="list-icon">β</span> <strong>System Administrators</strong> - Identifying and securing
sensitive data on their systems</li>
<li><span class="list-icon">β</span> <strong>Developers</strong> - Learning where NOT to store sensitive
information</li>
<li><span class="list-icon">β</span> <strong>Students</strong> - Understanding real-world security
implications</li>
</ul>
</div>
<div class="content-section">
<h2>π‘οΈ What Makes This Different?</h2>
<div class="features-grid">
<div class="feature-card">
<div class="feature-icon">π</div>
<h3>Comprehensive Database</h3>
<p>Curated collection of 23+ sensitive data locations across Windows, Linux, and macOS</p>
</div>
<div class="feature-card">
<div class="feature-icon">π―</div>
<h3>Risk Classification</h3>
<p>Each entry is classified by abuse level (Low, Medium, High, Critical) to prioritize security efforts
</p>
</div>
<div class="feature-card">
<div class="feature-icon">π</div>
<h3>MITRE ATT&CK Mapping</h3>
<p>Linked to real-world attack techniques and threat actor references</p>
</div>
<div class="feature-card">
<div class="feature-icon">β‘</div>
<h3>Quick Access</h3>
<p>Instant search, filtering by OS and risk level, and hashtag-based tag filtering</p>
</div>
</div>
</div>
<div class="content-section">
<h2>β οΈ Responsible Use</h2>
<div class="warning-box">
<p><strong>Important:</strong> This repository is strictly for educational and defensive security purposes.
Always obtain proper authorization before testing or accessing systems you don't own.</p>
<ul>
<li>Use this knowledge to <strong>protect</strong> systems, not compromise them</li>
<li>Respect privacy and legal boundaries</li>
<li>Report vulnerabilities responsibly</li>
<li>Help build a more secure digital ecosystem</li>
</ul>
</div>
</div>
<div class="content-section">
<h2>π Get Started</h2>
<p>Ready to explore? Head back to the <a href="/" class="inline-link">Home page</a> to
browse the database, or check out our <a href="/scripts"
class="inline-link">Automated Scripts</a> for quick enumeration tools.</p>
</div>
</div>
</main>
<footer>
<div class="footer-content">
<p class="footer-warning">β οΈ Educational purposes only β’ 2025 JuicyDataRepo</p>
</div>
</footer>
</div>
<script src="/assets/js/main.js"></script>
<script>
// Update stats dynamically
document.addEventListener('DOMContentLoaded', () => {
const rows = document.querySelectorAll('.entry-row');
let critical = 0, high = 0;
rows.forEach(row => {
const level = row.getAttribute('data-abuse');
if (level === 'critical') critical++;
if (level === 'high') high++;
});
document.getElementById('criticalCount').textContent = critical;
document.getElementById('highCount').textContent = high;
document.getElementById('totalEntries').textContent = rows.length;
});
</script>
</body>
</html>