jjjjj00 commited on
Commit
e4e217f
·
verified ·
1 Parent(s): c9e3907

i want a easier way to find cmd for SMSspacifically , i want every code and how to do it = short but afficiant terms to do with just sms / tell me all the hacking cmds there is for sms on or through kali lenux for educational purpose - Initial Deployment

Browse files
Files changed (2) hide show
  1. README.md +6 -4
  2. index.html +275 -19
README.md CHANGED
@@ -1,10 +1,12 @@
1
  ---
2
- title: Sms Kit
3
- emoji: 🌍
4
- colorFrom: yellow
5
  colorTo: red
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: sms-kit
3
+ emoji: 🐳
4
+ colorFrom: blue
5
  colorTo: red
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,275 @@
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>SMS Command Reference - Kali Linux</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
+ .command-box {
11
+ transition: all 0.3s ease;
12
+ }
13
+ .command-box:hover {
14
+ transform: translateY(-3px);
15
+ box-shadow: 0 10px 20px rgba(0,0,0,0.1);
16
+ }
17
+ .copy-btn {
18
+ opacity: 0;
19
+ transition: opacity 0.2s ease;
20
+ }
21
+ .command-box:hover .copy-btn {
22
+ opacity: 1;
23
+ }
24
+ #search:focus {
25
+ outline: none;
26
+ box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.3);
27
+ }
28
+ </style>
29
+ </head>
30
+ <body class="bg-gray-100 min-h-screen">
31
+ <div class="container mx-auto px-4 py-8">
32
+ <!-- Header -->
33
+ <header class="text-center mb-12">
34
+ <h1 class="text-4xl font-bold text-blue-800 mb-2">SMS Command Reference</h1>
35
+ <p class="text-gray-600 max-w-2xl mx-auto">Educational guide for SMS-related commands in Kali Linux</p>
36
+ <div class="mt-6 relative max-w-md mx-auto">
37
+ <input type="text" id="search" placeholder="Search commands..." class="w-full px-4 py-3 rounded-lg border border-gray-300 focus:border-blue-500">
38
+ <i class="fas fa-search absolute right-3 top-3 text-gray-400"></i>
39
+ </div>
40
+ </header>
41
+
42
+ <!-- Disclaimer -->
43
+ <div class="bg-yellow-100 border-l-4 border-yellow-500 p-4 mb-8 rounded">
44
+ <div class="flex">
45
+ <div class="flex-shrink-0">
46
+ <i class="fas fa-exclamation-triangle text-yellow-600"></i>
47
+ </div>
48
+ <div class="ml-3">
49
+ <p class="text-sm text-yellow-700">
50
+ <strong>Educational Use Only:</strong> These commands are provided for learning purposes only. Unauthorized access to communications systems is illegal in most jurisdictions.
51
+ </p>
52
+ </div>
53
+ </div>
54
+ </div>
55
+
56
+ <!-- Categories -->
57
+ <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6">
58
+ <!-- SMS Spoofing -->
59
+ <div class="bg-white rounded-xl shadow-md overflow-hidden command-box">
60
+ <div class="bg-red-600 px-4 py-3 flex justify-between items-center">
61
+ <h2 class="text-white font-bold text-lg">SMS Spoofing</h2>
62
+ <i class="fas fa-mobile-alt text-white"></i>
63
+ </div>
64
+ <div class="p-4">
65
+ <div class="mb-4 relative bg-gray-50 p-3 rounded-lg">
66
+ <code class="text-sm font-mono">sudo apt install gammu</code>
67
+ <button class="copy-btn absolute right-2 top-2 text-gray-400 hover:text-blue-600">
68
+ <i class="far fa-copy"></i>
69
+ </button>
70
+ </div>
71
+ <div class="mb-4 relative bg-gray-50 p-3 rounded-lg">
72
+ <code class="text-sm font-mono">gammu sendsms TEXT +1234567890 -text "message"</code>
73
+ <button class="copy-btn absolute right-2 top-2 text-gray-400 hover:text-blue-600">
74
+ <i class="far fa-copy"></i>
75
+ </button>
76
+ </div>
77
+ <p class="text-sm text-gray-600 mt-2">Note: Requires compatible GSM modem. Spoofing sender ID may not work on all networks.</p>
78
+ </div>
79
+ </div>
80
+
81
+ <!-- SMS Gateway -->
82
+ <div class="bg-white rounded-xl shadow-md overflow-hidden command-box">
83
+ <div class="bg-blue-600 px-4 py-3 flex justify-between items-center">
84
+ <h2 class="text-white font-bold text-lg">SMS Gateway Setup</h2>
85
+ <i class="fas fa-server text-white"></i>
86
+ </div>
87
+ <div class="p-4">
88
+ <div class="mb-4 relative bg-gray-50 p-3 rounded-lg">
89
+ <code class="text-sm font-mono">sudo apt install gnokii</code>
90
+ <button class="copy-btn absolute right-2 top-2 text-gray-400 hover:text-blue-600">
91
+ <i class="far fa-copy"></i>
92
+ </button>
93
+ </div>
94
+ <div class="mb-4 relative bg-gray-50 p-3 rounded-lg">
95
+ <code class="text-sm font-mono">gnokii --sendsms +1234567890 -text "message"</code>
96
+ <button class="copy-btn absolute right-2 top-2 text-gray-400 hover:text-blue-600">
97
+ <i class="far fa-copy"></i>
98
+ </button>
99
+ </div>
100
+ <p class="text-sm text-gray-600 mt-2">Configure /etc/gnokiirc for your modem settings.</p>
101
+ </div>
102
+ </div>
103
+
104
+ <!-- Bulk SMS -->
105
+ <div class="bg-white rounded-xl shadow-md overflow-hidden command-box">
106
+ <div class="bg-green-600 px-4 py-3 flex justify-between items-center">
107
+ <h2 class="text-white font-bold text-lg">Bulk SMS Tools</h2>
108
+ <i class="fas fa-bullhorn text-white"></i>
109
+ </div>
110
+ <div class="p-4">
111
+ <div class="mb-4 relative bg-gray-50 p-3 rounded-lg">
112
+ <code class="text-sm font-mono">sudo apt install smstools</code>
113
+ <button class="copy-btn absolute right-2 top-2 text-gray-400 hover:text-blue-600">
114
+ <i class="far fa-copy"></i>
115
+ </button>
116
+ </div>
117
+ <div class="mb-4 relative bg-gray-50 p-3 rounded-lg">
118
+ <code class="text-sm font-mono">echo "message" | smsctl send +1234567890</code>
119
+ <button class="copy-btn absolute right-2 top-2 text-gray-400 hover:text-blue-600">
120
+ <i class="far fa-copy"></i>
121
+ </button>
122
+ </div>
123
+ <p class="text-sm text-gray-600 mt-2">Create recipient lists for bulk sending. Check /etc/smsd.conf for configuration.</p>
124
+ </div>
125
+ </div>
126
+
127
+ <!-- SMS Interception -->
128
+ <div class="bg-white rounded-xl shadow-md overflow-hidden command-box">
129
+ <div class="bg-purple-600 px-4 py-3 flex justify-between items-center">
130
+ <h2 class="text-white font-bold text-lg">SMS Interception</h2>
131
+ <i class="fas fa-broadcast-tower text-white"></i>
132
+ </div>
133
+ <div class="p-4">
134
+ <div class="mb-4 relative bg-gray-50 p-3 rounded-lg">
135
+ <code class="text-sm font-mono">sudo apt install gr-gsm</code>
136
+ <button class="copy-btn absolute right-2 top-2 text-gray-400 hover:text-blue-600">
137
+ <i class="far fa-copy"></i>
138
+ </button>
139
+ </div>
140
+ <div class="mb-4 relative bg-gray-50 p-3 rounded-lg">
141
+ <code class="text-sm font-mono">grgsm_livemon -f GSM_FREQUENCY</code>
142
+ <button class="copy-btn absolute right-2 top-2 text-gray-400 hover:text-blue-600">
143
+ <i class="far fa-copy"></i>
144
+ </button>
145
+ </div>
146
+ <p class="text-sm text-gray-600 mt-2">Requires RTL-SDR dongle. Frequency depends on local GSM band (900/1800 MHz).</p>
147
+ </div>
148
+ </div>
149
+
150
+ <!-- SMS Phishing -->
151
+ <div class="bg-white rounded-xl shadow-md overflow-hidden command-box">
152
+ <div class="bg-orange-600 px-4 py-3 flex justify-between items-center">
153
+ <h2 class="text-white font-bold text-lg">SMS Phishing</h2>
154
+ <i class="fas fa-fish text-white"></i>
155
+ </div>
156
+ <div class="p-4">
157
+ <div class="mb-4 relative bg-gray-50 p-3 rounded-lg">
158
+ <code class="text-sm font-mono">sudo apt install setoolkit</code>
159
+ <button class="copy-btn absolute right-2 top-2 text-gray-400 hover:text-blue-600">
160
+ <i class="far fa-copy"></i>
161
+ </button>
162
+ </div>
163
+ <div class="mb-4 relative bg-gray-50 p-3 rounded-lg">
164
+ <code class="text-sm font-mono">setoolkit</code>
165
+ <button class="copy-btn absolute right-2 top-2 text-gray-400 hover:text-blue-600">
166
+ <i class="far fa-copy"></i>
167
+ </button>
168
+ </div>
169
+ <p class="text-sm text-gray-600 mt-2">Select "Social-Engineering Attacks" then "SMS Spoofing". Requires ethical use.</p>
170
+ </div>
171
+ </div>
172
+
173
+ <!-- SMS Analysis -->
174
+ <div class="bg-white rounded-xl shadow-md overflow-hidden command-box">
175
+ <div class="bg-indigo-600 px-4 py-3 flex justify-between items-center">
176
+ <h2 class="text-white font-bold text-lg">SMS Analysis</h2>
177
+ <i class="fas fa-search text-white"></i>
178
+ </div>
179
+ <div class="p-4">
180
+ <div class="mb-4 relative bg-gray-50 p-3 rounded-lg">
181
+ <code class="text-sm font-mono">sudo apt install wireshark</code>
182
+ <button class="copy-btn absolute right-2 top-2 text-gray-400 hover:text-blue-600">
183
+ <i class="far fa-copy"></i>
184
+ </button>
185
+ </div>
186
+ <div class="mb-4 relative bg-gray-50 p-3 rounded-lg">
187
+ <code class="text-sm font-mono">tshark -Y "gsm_sms" -r capture.pcap</code>
188
+ <button class="copy-btn absolute right-2 top-2 text-gray-400 hover:text-blue-600">
189
+ <i class="far fa-copy"></i>
190
+ </button>
191
+ </div>
192
+ <p class="text-sm text-gray-600 mt-2">Analyze SMS traffic in packet captures. Filter for SMS-specific protocols.</p>
193
+ </div>
194
+ </div>
195
+ </div>
196
+
197
+ <!-- Advanced Section -->
198
+ <div class="mt-12 bg-white rounded-xl shadow-md overflow-hidden">
199
+ <div class="bg-gray-800 px-4 py-3 flex justify-between items-center">
200
+ <h2 class="text-white font-bold text-lg">Advanced SMS Techniques</h2>
201
+ <i class="fas fa-lock text-white"></i>
202
+ </div>
203
+ <div class="p-4">
204
+ <div class="grid grid-cols-1 md:grid-cols-2 gap-4">
205
+ <div class="relative bg-gray-50 p-3 rounded-lg">
206
+ <code class="text-sm font-mono">sudo apt install osmocom-bb</code>
207
+ <p class="text-xs text-gray-500 mt-1">Open source GSM baseband software for low-level access</p>
208
+ <button class="copy-btn absolute right-2 top-2 text-gray-400 hover:text-blue-600">
209
+ <i class="far fa-copy"></i>
210
+ </button>
211
+ </div>
212
+ <div class="relative bg-gray-50 p-3 rounded-lg">
213
+ <code class="text-sm font-mono">kalibrate-hackrf -s GSM850 -g 40</code>
214
+ <p class="text-xs text-gray-500 mt-1">Find GSM base stations with HackRF</p>
215
+ <button class="copy-btn absolute right-2 top-2 text-gray-400 hover:text-blue-600">
216
+ <i class="far fa-copy"></i>
217
+ </button>
218
+ </div>
219
+ <div class="relative bg-gray-50 p-3 rounded-lg">
220
+ <code class="text-sm font-mono">sudo airprobe_rtlsdr.py -f 942.6M</code>
221
+ <p class="text-xs text-gray-500 mt-1">Capture GSM traffic with RTL-SDR</p>
222
+ <button class="copy-btn absolute right-2 top-2 text-gray-400 hover:text-blue-600">
223
+ <i class="far fa-copy"></i>
224
+ </button>
225
+ </div>
226
+ <div class="relative bg-gray-50 p-3 rounded-lg">
227
+ <code class="text-sm font-mono">sudo apt install yate yatebts</code>
228
+ <p class="text-xs text-gray-500 mt-1">Setup private GSM network for testing</p>
229
+ <button class="copy-btn absolute right-2 top-2 text-gray-400 hover:text-blue-600">
230
+ <i class="far fa-copy"></i>
231
+ </button>
232
+ </div>
233
+ </div>
234
+ </div>
235
+ </div>
236
+
237
+ <!-- Footer -->
238
+ <footer class="mt-12 text-center text-gray-600 text-sm">
239
+ <p>This reference is for educational purposes only. Always obtain proper authorization before testing on live systems.</p>
240
+ <p class="mt-2">© 2023 Security Education Reference</p>
241
+ </footer>
242
+ </div>
243
+
244
+ <script>
245
+ // Copy functionality
246
+ document.querySelectorAll('.copy-btn').forEach(btn => {
247
+ btn.addEventListener('click', (e) => {
248
+ const command = e.currentTarget.parentElement.querySelector('code').textContent;
249
+ navigator.clipboard.writeText(command).then(() => {
250
+ const icon = e.currentTarget.querySelector('i');
251
+ const original = icon.className;
252
+ icon.className = 'fas fa-check text-green-500';
253
+ setTimeout(() => {
254
+ icon.className = original;
255
+ }, 2000);
256
+ });
257
+ });
258
+ });
259
+
260
+ // Search functionality
261
+ const searchInput = document.getElementById('search');
262
+ searchInput.addEventListener('input', (e) => {
263
+ const searchTerm = e.target.value.toLowerCase();
264
+ document.querySelectorAll('.command-box').forEach(box => {
265
+ const text = box.textContent.toLowerCase();
266
+ if (text.includes(searchTerm)) {
267
+ box.style.display = 'block';
268
+ } else {
269
+ box.style.display = 'none';
270
+ }
271
+ });
272
+ });
273
+ </script>
274
+ <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=jjjjj00/sms-kit" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
275
+ </html>