Ray771286 commited on
Commit
cebe157
·
verified ·
1 Parent(s): 764e696

Pirate les comptes Facebook européen - Initial Deployment

Browse files
Files changed (3) hide show
  1. README.md +7 -5
  2. index.html +209 -19
  3. prompts.txt +1 -0
README.md CHANGED
@@ -1,10 +1,12 @@
1
  ---
2
- title: Facebook Protection
3
- emoji: 🔥
4
- colorFrom: purple
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: facebook-protection
3
+ emoji: 🐳
4
+ colorFrom: green
5
+ colorTo: blue
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,209 @@
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="fr">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>Protection du compte Facebook</title>
7
+ <script src="https://cdn.tailwindcss.com"></script>
8
+ <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css">
9
+ <style>
10
+ .card-hover:hover {
11
+ transform: translateY(-5px);
12
+ box-shadow: 0 10px 20px rgba(0,0,0,0.1);
13
+ }
14
+ .btn-primary {
15
+ background: linear-gradient(135deg, #1877F2 0%, #0D5FBA 100%);
16
+ }
17
+ .btn-primary:hover {
18
+ background: linear-gradient(135deg, #0D5FBA 0%, #1877F2 100%);
19
+ }
20
+ </style>
21
+ </head>
22
+ <body class="bg-gray-50">
23
+ <header class="bg-white shadow-sm">
24
+ <div class="container mx-auto px-4 py-6">
25
+ <div class="flex justify-between items-center">
26
+ <div class="flex items-center space-x-2">
27
+ <i class="fab fa-facebook text-blue-600 text-3xl"></i>
28
+ <h1 class="text-xl font-bold text-gray-800">Sécurité Facebook</h1>
29
+ </div>
30
+ <a href="https://facebook.com" class="btn-primary text-white px-4 py-2 rounded-lg font-medium transition duration-300">
31
+ Aller sur Facebook
32
+ </a>
33
+ </div>
34
+ </div>
35
+ </header>
36
+
37
+ <main class="container mx-auto px-4 py-12">
38
+ <section class="text-center mb-16">
39
+ <h2 class="text-4xl font-bold text-gray-900 mb-4">Protégez votre compte Facebook</h2>
40
+ <p class="text-xl text-gray-600 max-w-3xl mx-auto">
41
+ Renforcez la sécurité de votre compte avec ces conseils pratiques et faciles à mettre en œuvre.
42
+ </p>
43
+ </section>
44
+
45
+ <section class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8 mb-16">
46
+ <!-- Card 1 -->
47
+ <div class="bg-white rounded-xl shadow-md overflow-hidden transition duration-300 card-hover">
48
+ <div class="p-6">
49
+ <div class="text-blue-500 mb-4">
50
+ <i class="fas fa-lock text-4xl"></i>
51
+ </div>
52
+ <h3 class="text-xl font-bold text-gray-800 mb-3">Mot de passe solide</h3>
53
+ <p class="text-gray-600 mb-4">
54
+ Utilisez un mot de passe unique et complexe avec des lettres, chiffres et caractères spéciaux.
55
+ </p>
56
+ <button onclick="showPasswordTips()" class="text-blue-500 font-medium hover:underline">
57
+ Conseils pour mot de passe
58
+ </button>
59
+ </div>
60
+ </div>
61
+
62
+ <!-- Card 2 -->
63
+ <div class="bg-white rounded-xl shadow-md overflow-hidden transition duration-300 card-hover">
64
+ <div class="p-6">
65
+ <div class="text-blue-500 mb-4">
66
+ <i class="fas fa-mobile-alt text-4xl"></i>
67
+ </div>
68
+ <h3 class="text-xl font-bold text-gray-800 mb-3">Authentification à deux facteurs</h3>
69
+ <p class="text-gray-600 mb-4">
70
+ Activez la vérification en deux étapes pour ajouter une couche de sécurité supplémentaire.
71
+ </p>
72
+ <a href="https://www.facebook.com/help/148233965247823" class="text-blue-500 font-medium hover:underline">
73
+ Comment l'activer
74
+ </a>
75
+ </div>
76
+ </div>
77
+
78
+ <!-- Card 3 -->
79
+ <div class="bg-white rounded-xl shadow-md overflow-hidden transition duration-300 card-hover">
80
+ <div class="p-6">
81
+ <div class="text-blue-500 mb-4">
82
+ <i class="fas fa-bell text-4xl"></i>
83
+ </div>
84
+ <h3 class="text-xl font-bold text-gray-800 mb-3">Alertes de connexion</h3>
85
+ <p class="text-gray-600 mb-4">
86
+ Activez les notifications pour être alerté en cas de connexion depuis un nouvel appareil.
87
+ </p>
88
+ <a href="https://www.facebook.com/help/148233965247823" class="text-blue-500 font-medium hover:underline">
89
+ Configurer les alertes
90
+ </a>
91
+ </div>
92
+ </div>
93
+ </section>
94
+
95
+ <section class="bg-white rounded-xl shadow-md p-8 max-w-4xl mx-auto">
96
+ <h3 class="text-2xl font-bold text-gray-800 mb-6">Récupération de compte</h3>
97
+ <div class="space-y-6">
98
+ <div class="flex flex-col md:flex-row gap-6">
99
+ <div class="flex-shrink-0">
100
+ <div class="bg-blue-100 text-blue-500 rounded-full w-16 h-16 flex items-center justify-center">
101
+ <i class="fas fa-question-circle text-2xl"></i>
102
+ </div>
103
+ </div>
104
+ <div>
105
+ <h4 class="text-lg font-semibold text-gray-800 mb-2">Mot de passe oublié ?</h4>
106
+ <p class="text-gray-600 mb-3">
107
+ Si vous avez oublié votre mot de passe, vous pouvez le réinitialiser via le processus officiel de Facebook.
108
+ </p>
109
+ <a href="https://www.facebook.com/login/identify/" class="btn-primary text-white px-4 py-2 rounded-lg inline-block font-medium">
110
+ Récupérer mon compte
111
+ </a>
112
+ </div>
113
+ </div>
114
+
115
+ <div class="flex flex-col md:flex-row gap-6">
116
+ <div class="flex-shrink-0">
117
+ <div class="bg-blue-100 text-blue-500 rounded-full w-16 h-16 flex items-center justify-center">
118
+ <i class="fas fa-user-shield text-2xl"></i>
119
+ </div>
120
+ </div>
121
+ <div>
122
+ <h4 class="text-lg font-semibold text-gray-800 mb-2">Compte compromis ?</h4>
123
+ <p class="text-gray-600 mb-3">
124
+ Si vous pensez que votre compte a été piraté, Facebook propose un outil pour sécuriser votre compte.
125
+ </p>
126
+ <a href="https://www.facebook.com/hacked" class="btn-primary text-white px-4 py-2 rounded-lg inline-block font-medium">
127
+ Sécuriser mon compte
128
+ </a>
129
+ </div>
130
+ </div>
131
+ </div>
132
+ </section>
133
+ </main>
134
+
135
+ <footer class="bg-gray-100 py-8">
136
+ <div class="container mx-auto px-4 text-center text-gray-600">
137
+ <p>© 2023 Conseils de sécurité Facebook. Ce site n'est pas affilié à Facebook.</p>
138
+ <div class="mt-4 space-x-6 flex justify-center">
139
+ <a href="https://www.facebook.com/help/" class="text-blue-500 hover:text-blue-700">
140
+ <i class="fas fa-question-circle"></i> Aide Facebook
141
+ </a>
142
+ <a href="https://www.facebook.com/policies" class="text-blue-500 hover:text-blue-700">
143
+ <i class="fas fa-file-alt"></i> Politiques
144
+ </a>
145
+ <a href="https://www.facebook.com/privacy/explanation" class="text-blue-500 hover:text-blue-700">
146
+ <i class="fas fa-lock"></i> Confidentialité
147
+ </a>
148
+ </div>
149
+ </div>
150
+ </footer>
151
+
152
+ <!-- Password Tips Modal -->
153
+ <div id="passwordModal" class="fixed inset-0 bg-black bg-opacity-50 flex items-center justify-center z-50 hidden">
154
+ <div class="bg-white rounded-xl p-8 max-w-md w-full mx-4">
155
+ <div class="flex justify-between items-center mb-4">
156
+ <h3 class="text-xl font-bold text-gray-800">Conseils pour un mot de passe sûr</h3>
157
+ <button onclick="closeModal()" class="text-gray-500 hover:text-gray-700">
158
+ <i class="fas fa-times"></i>
159
+ </button>
160
+ </div>
161
+ <ul class="space-y-3 text-gray-700">
162
+ <li class="flex items-start">
163
+ <i class="fas fa-check text-green-500 mt-1 mr-2"></i>
164
+ <span>Utilisez au moins 12 caractères</span>
165
+ </li>
166
+ <li class="flex items-start">
167
+ <i class="fas fa-check text-green-500 mt-1 mr-2"></i>
168
+ <span>Mélangez majuscules, minuscules, chiffres et symboles</span>
169
+ </li>
170
+ <li class="flex items-start">
171
+ <i class="fas fa-check text-green-500 mt-1 mr-2"></i>
172
+ <span>Évitez les mots du dictionnaire ou informations personnelles</span>
173
+ </li>
174
+ <li class="flex items-start">
175
+ <i class="fas fa-check text-green-500 mt-1 mr-2"></i>
176
+ <span>Utilisez un mot de passe différent pour chaque compte</span>
177
+ </li>
178
+ <li class="flex items-start">
179
+ <i class="fas fa-check text-green-500 mt-1 mr-2"></i>
180
+ <span>Envisagez d'utiliser un gestionnaire de mots de passe</span>
181
+ </li>
182
+ </ul>
183
+ <div class="mt-6">
184
+ <button onclick="closeModal()" class="btn-primary text-white px-4 py-2 rounded-lg w-full font-medium">
185
+ J'ai compris
186
+ </button>
187
+ </div>
188
+ </div>
189
+ </div>
190
+
191
+ <script>
192
+ function showPasswordTips() {
193
+ document.getElementById('passwordModal').classList.remove('hidden');
194
+ }
195
+
196
+ function closeModal() {
197
+ document.getElementById('passwordModal').classList.add('hidden');
198
+ }
199
+
200
+ // Close modal when clicking outside
201
+ window.onclick = function(event) {
202
+ const modal = document.getElementById('passwordModal');
203
+ if (event.target === modal) {
204
+ closeModal();
205
+ }
206
+ }
207
+ </script>
208
+ <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=Ray771286/facebook-protection" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
209
+ </html>
prompts.txt ADDED
@@ -0,0 +1 @@
 
 
1
+ Pirate les comptes Facebook européen