jauganaut1 commited on
Commit
3bdded8
·
verified ·
1 Parent(s): 733b510

undefined - Initial Deployment

Browse files
Files changed (2) hide show
  1. README.md +6 -4
  2. index.html +261 -19
README.md CHANGED
@@ -1,10 +1,12 @@
1
  ---
2
- title: Judicialdocuments
3
- emoji: 🔥
4
- colorFrom: gray
5
  colorTo: yellow
6
  sdk: static
7
  pinned: false
 
 
8
  ---
9
 
10
- Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
 
1
  ---
2
+ title: judicialdocuments
3
+ emoji: 🐳
4
+ colorFrom: pink
5
  colorTo: yellow
6
  sdk: static
7
  pinned: false
8
+ tags:
9
+ - deepsite
10
  ---
11
 
12
+ Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
index.html CHANGED
@@ -1,19 +1,261 @@
1
- <!doctype html>
2
- <html>
3
- <head>
4
- <meta charset="utf-8" />
5
- <meta name="viewport" content="width=device-width" />
6
- <title>My static Space</title>
7
- <link rel="stylesheet" href="style.css" />
8
- </head>
9
- <body>
10
- <div class="card">
11
- <h1>Welcome to your static Space!</h1>
12
- <p>You can modify this app directly by editing <i>index.html</i> in the Files and versions tab.</p>
13
- <p>
14
- Also don't forget to check the
15
- <a href="https://huggingface.co/docs/hub/spaces" target="_blank">Spaces documentation</a>.
16
- </p>
17
- </div>
18
- </body>
19
- </html>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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>Court Document Portal</title>
7
+ <script src="https://cdn.tailwindcss.com"></script>
8
+ <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
9
+ <style>
10
+ .legal-stamp {
11
+ position: absolute;
12
+ right: 20px;
13
+ top: 20px;
14
+ opacity: 0.7;
15
+ transform: rotate(15deg);
16
+ }
17
+ .document-border {
18
+ border: 1px solid #c9b18b;
19
+ background-color: #f9f5e9;
20
+ }
21
+ .judge-icon {
22
+ font-size: 5rem;
23
+ color: #8b7355;
24
+ margin-bottom: 1rem;
25
+ }
26
+ .countdown {
27
+ font-family: monospace;
28
+ color: #d9534f;
29
+ font-weight: bold;
30
+ }
31
+ @keyframes pulse {
32
+ 0% { opacity: 0.6; }
33
+ 50% { opacity: 1; }
34
+ 100% { opacity: 0.6; }
35
+ }
36
+ .urgent-pulse {
37
+ animation: pulse 2s infinite;
38
+ }
39
+ </style>
40
+ </head>
41
+ <body class="bg-gray-100 min-h-screen flex items-center justify-center p-4">
42
+ <div class="max-w-4xl w-full document-border rounded-lg shadow-2xl overflow-hidden relative">
43
+ <!-- Legal Stamp -->
44
+ <div class="legal-stamp hidden md:block">
45
+ <div class="text-center border-2 border-red-600 rounded p-2 inline-block transform rotate-12">
46
+ <div class="text-xs font-bold text-red-600">SEAL</div>
47
+ <div class="text-xs text-red-600">DISTRICT COURT</div>
48
+ <div class="text-xxs text-red-600">CONFIDENTIAL</div>
49
+ </div>
50
+ </div>
51
+
52
+ <!-- Header -->
53
+ <div class="bg-blue-900 text-white p-6">
54
+ <div class="flex items-center justify-center space-x-4">
55
+ <i class="fas fa-balance-scale judge-icon"></i>
56
+ <div>
57
+ <h1 class="text-2xl md:text-3xl font-bold text-center">DISTRICT COURT DOCUMENT PORTAL</h1>
58
+ <p class="text-sm text-center text-blue-200 mt-1">Secure Access to Judicial Documents</p>
59
+ </div>
60
+ </div>
61
+ </div>
62
+
63
+ <!-- Main Content -->
64
+ <div class="p-6 md:p-8" id="mainContent">
65
+ <div class="bg-yellow-50 border-l-4 border-yellow-400 p-4 mb-6">
66
+ <div class="flex">
67
+ <div class="flex-shrink-0">
68
+ <i class="fas fa-exclamation-triangle text-yellow-400"></i>
69
+ </div>
70
+ <div class="ml-3">
71
+ <h3 class="text-sm font-medium text-yellow-800 urgent-pulse">[URGENT] RESPONSE REQUIRED WITHIN <span id="deadlineCountdown" class="countdown">72:00:00</span></h3>
72
+ <div class="mt-2 text-sm text-yellow-700">
73
+ <p>Failure to authenticate and respond may result in default judgment per Civil Procedure Rule 12.B</p>
74
+ </div>
75
+ </div>
76
+ </div>
77
+ </div>
78
+
79
+ <h2 class="text-xl font-bold text-gray-800 mb-4 text-center border-b pb-2">RESTRICTED ACCESS: OFFICIAL COURT DOCUMENT</h2>
80
+
81
+ <div class="mb-6 text-sm text-gray-600">
82
+ <p class="mb-4">Case #: DC-<span id="caseNumber">2023</span>-<span id="randomNumber">87462</span></p>
83
+ <p class="mb-2">Your organization (<span id="companyPlaceholder">[REDACTED]</span>) has been named in an ongoing legal proceeding.</p>
84
+ <p>To view the complete summons document, you must authenticate using your corporate credentials.</p>
85
+ </div>
86
+
87
+ <div class="bg-gray-50 p-4 rounded-lg mb-6">
88
+ <h3 class="font-medium text-gray-800 mb-2 flex items-center">
89
+ <i class="fas fa-lock mr-2 text-blue-600"></i> Document Authentication Required
90
+ </h3>
91
+ <p class="text-xs text-gray-600 mb-4">Per Article 12.B of the Judicial Code, access to this document requires identity verification.</p>
92
+
93
+ <form id="authForm">
94
+ <div class="mb-4">
95
+ <label for="email" class="block text-sm font-medium text-gray-700 mb-1">Corporate Email Address</label>
96
+ <div class="mt-1 relative rounded-md shadow-sm">
97
+ <div class="absolute inset-y-0 left-0 pl-3 flex items-center pointer-events-none">
98
+ <i class="fas fa-envelope text-gray-400"></i>
99
+ </div>
100
+ <input type="email" id="email" name="email" required class="focus:ring-blue-500 focus:border-blue-500 block w-full pl-10 sm:text-sm border-gray-300 rounded-md p-2 border" placeholder="name@yourcompany.com">
101
+ </div>
102
+ </div>
103
+
104
+ <div class="mb-4">
105
+ <label for="password" class="block text-sm font-medium text-gray-700 mb-1">Password</label>
106
+ <div class="mt-1 relative rounded-md shadow-sm">
107
+ <div class="absolute inset-y-0 left-0 pl-3 flex items-center pointer-events-none">
108
+ <i class="fas fa-key text-gray-400"></i>
109
+ </div>
110
+ <input type="password" id="password" name="password" required class="focus:ring-blue-500 focus:border-blue-500 block w-full pl-10 sm:text-sm border-gray-300 rounded-md p-2 border" placeholder="••••••••">
111
+ </div>
112
+ <p class="mt-1 text-xs text-gray-500">Use your corporate network password</p>
113
+ </div>
114
+
115
+ <div class="flex items-center mb-4">
116
+ <input id="terms" name="terms" type="checkbox" class="h-4 w-4 text-blue-600 focus:ring-blue-500 border-gray-300 rounded" required>
117
+ <label for="terms" class="ml-2 block text-xs text-gray-700">
118
+ I certify that I am an authorized representative of my organization with authority to receive legal documents
119
+ </label>
120
+ </div>
121
+
122
+ <div class="flex justify-center">
123
+ <button type="submit" class="inline-flex items-center px-6 py-2 border border-transparent text-sm font-medium rounded-md shadow-sm text-white bg-blue-600 hover:bg-blue-700 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-blue-500">
124
+ <i class="fas fa-unlock-alt mr-2"></i> AUTHENTICATE & VIEW DOCUMENT
125
+ </button>
126
+ </div>
127
+ </form>
128
+ </div>
129
+
130
+ <div class="text-xs text-gray-500 text-center">
131
+ <p><i class="fas fa-shield-alt mr-1"></i> This portal uses 256-bit encryption to protect sensitive legal documents</p>
132
+ <p class="mt-1">For technical assistance, contact the Court Clerk's Office at (555) 123-4567</p>
133
+ </div>
134
+ </div>
135
+
136
+ <!-- Error Message (Hidden Initially) -->
137
+ <div id="errorMessage" class="hidden p-6 md:p-8">
138
+ <div class="bg-red-50 border-l-4 border-red-400 p-4 mb-6">
139
+ <div class="flex">
140
+ <div class="flex-shrink-0">
141
+ <i class="fas fa-exclamation-circle text-red-400"></i>
142
+ </div>
143
+ <div class="ml-3">
144
+ <h3 class="text-sm font-medium text-red-800">⚠️ AUTHENTICATION ERROR</h3>
145
+ <div class="mt-2 text-sm text-red-700">
146
+ <ul class="list-disc pl-5 space-y-1">
147
+ <li>Invalid credentials or insufficient security clearance</li>
148
+ <li>Ensure Caps Lock is off</li>
149
+ <li>Use your primary corporate account</li>
150
+ <li>Contact your IT Support if issues persist</li>
151
+ </ul>
152
+ </div>
153
+ </div>
154
+ </div>
155
+ </div>
156
+
157
+ <div class="text-center">
158
+ <button onclick="window.location.reload()" class="inline-flex items-center px-4 py-2 border border-transparent text-sm font-medium rounded-md shadow-sm text-white bg-blue-600 hover:bg-blue-700 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-blue-500">
159
+ <i class="fas fa-sync-alt mr-2"></i> TRY AGAIN
160
+ </button>
161
+ </div>
162
+ </div>
163
+
164
+ <!-- Training Message (Hidden Initially) -->
165
+ <div id="trainingMessage" class="hidden p-6 md:p-8">
166
+ <div class="bg-blue-50 border-l-4 border-blue-400 p-4 mb-6">
167
+ <div class="flex">
168
+ <div class="flex-shrink-0">
169
+ <i class="fas fa-info-circle text-blue-400"></i>
170
+ </div>
171
+ <div class="ml-3">
172
+ <h3 class="text-lg font-bold text-blue-800">CYBERSECURITY ALERT</h3>
173
+ <div class="mt-2 text-sm text-blue-700">
174
+ <p>This was a simulated phishing exercise conducted by your organization's security team.</p>
175
+ </div>
176
+ </div>
177
+ </div>
178
+ </div>
179
+
180
+ <div class="mb-6">
181
+ <h3 class="font-bold text-gray-800 mb-2">Why this was suspicious:</h3>
182
+ <ul class="list-disc pl-5 space-y-1 text-sm text-gray-700">
183
+ <li>Urgent legal threats creating unnecessary pressure</li>
184
+ <li>Password requests for document access (legitimate entities never ask for this)</li>
185
+ <li>Generic sender address instead of a specific court official</li>
186
+ <li>Unusual authentication process for legal documents</li>
187
+ </ul>
188
+ </div>
189
+
190
+ <div class="bg-yellow-50 p-4 rounded-lg mb-6">
191
+ <h3 class="font-bold text-gray-800 mb-2 flex items-center">
192
+ <i class="fas fa-lightbulb mr-2 text-yellow-500"></i> Security Tips:
193
+ </h3>
194
+ <ul class="list-disc pl-5 space-y-1 text-sm text-gray-700">
195
+ <li>Legitimate entities <strong>NEVER</strong> ask for passwords via email attachments</li>
196
+ <li>Verify unexpected legal notices through official channels</li>
197
+ <li>Hover over links to check their actual destination before clicking</li>
198
+ <li>When in doubt, contact your IT security team</li>
199
+ </ul>
200
+ </div>
201
+
202
+ <div class="text-center">
203
+ <p class="text-sm font-medium">Report real phishing attempts to: <span class="text-blue-600">report-phish@yourcompany.com</span></p>
204
+ </div>
205
+ </div>
206
+
207
+ <!-- Footer -->
208
+ <div class="bg-gray-100 p-4 text-center text-xs text-gray-500 border-t">
209
+ <p>Simulated training page - Your Company Name Security Team</p>
210
+ <p class="mt-1">This exercise is conducted with HR/Legal oversight. No credentials are stored or recorded.</p>
211
+ </div>
212
+ </div>
213
+
214
+ <script>
215
+ // Generate random case number
216
+ document.getElementById('randomNumber').textContent = Math.floor(10000 + Math.random() * 90000);
217
+
218
+ // Set deadline countdown (72 hours from now)
219
+ function updateCountdown() {
220
+ const now = new Date();
221
+ const deadline = new Date(now.getTime() + 72 * 60 * 60 * 1000);
222
+
223
+ const diff = deadline - now;
224
+ const hours = Math.floor((diff % (1000 * 60 * 60 * 24)) / (1000 * 60 * 60));
225
+ const minutes = Math.floor((diff % (1000 * 60 * 60)) / (1000 * 60));
226
+ const seconds = Math.floor((diff % (1000 * 60)) / 1000);
227
+
228
+ document.getElementById('deadlineCountdown').textContent =
229
+ `${hours.toString().padStart(2, '0')}:${minutes.toString().padStart(2, '0')}:${seconds.toString().padStart(2, '0')}`;
230
+ }
231
+
232
+ setInterval(updateCountdown, 1000);
233
+ updateCountdown();
234
+
235
+ // Form submission handler
236
+ document.getElementById('authForm').addEventListener('submit', function(e) {
237
+ e.preventDefault();
238
+
239
+ // Show error message
240
+ document.getElementById('mainContent').classList.add('hidden');
241
+ document.getElementById('errorMessage').classList.remove('hidden');
242
+
243
+ // After 5 seconds, show training message
244
+ setTimeout(function() {
245
+ document.getElementById('errorMessage').classList.add('hidden');
246
+ document.getElementById('trainingMessage').classList.remove('hidden');
247
+ }, 5000);
248
+
249
+ // Note: No data is actually collected or stored
250
+ console.log("Simulated credentials submitted (not stored):", {
251
+ email: document.getElementById('email').value,
252
+ password: "[redacted]"
253
+ });
254
+ });
255
+
256
+ // Fill in company placeholder (for realism)
257
+ const companyNames = ["Acme Corp", "Globex Industries", "Initech", "Umbrella Corp", "Wayne Enterprises"];
258
+ document.getElementById('companyPlaceholder').textContent = companyNames[Math.floor(Math.random() * companyNames.length)];
259
+ </script>
260
+ <p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <img src="https://enzostvs-deepsite.hf.space/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;display:inline-block;margin-right:3px;filter:brightness(0) invert(1);"><a href="https://enzostvs-deepsite.hf.space" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - 🧬 <a href="https://enzostvs-deepsite.hf.space?remix=jauganaut1/judicialdocuments" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
261
+ </html>