-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvictimservices.html
More file actions
363 lines (329 loc) · 13.3 KB
/
victimservices.html
File metadata and controls
363 lines (329 loc) · 13.3 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
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Emergency Response Security Group Victim Services</title>
<style>
body {
font-family: 'Courier New', Courier, monospace;
margin: 0;
padding: 0;
background: #000000;
color: white;
text-align: left;
font-size: 20px;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
header, main, footer {
padding: 10px;
text-align: left;
font-size: 20px;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
margin-inline: 10vw;
}
header a,
main a {
color: #ff00e1;
text-decoration: none;
font-weight: normal;
text-align: left;
}
footer a {
color: #00FFC6;
text-decoration: none;
transition: color .2s ease;
}
nav {
font-family: Courier New', Courier, monospace;
color: #9999ff;
background: #000000;
display: flex;
justify-content: center;
font-size: 20px;
flex-wrap: wrap;
}
nav a {
font-family: Courier New', Courier, monospace;
color: white;
padding: 14px 20px;
text-decoration: none;
display: block;
font-size: 20px;
animation: fadeIn 2s ease-in-out;
}
nav a:hover {
font-family: Courier New', Courier, monospace;
background: #df1313;
color: green;
padding: 14px 20px;
text-decoration: none;
display: block;
font-size: 20px;
animation: pulse 1s infinite;
}
nav a:link { color: #00FFC6; }
nav a:visited { color: #00FFC6; }
@keyframes fadeIn {
from { opacity: 0; }
to { opacity: 1; }
}
@keyframes pulse {
0% { transform: scale(1); }
50% { transform: scale(1.1); }
100% { transform: scale(1); }
}
.content {
animation: slideIn 1s ease-in-out;
}
@keyframes slideIn {
from { transform: translateY(100px); opacity: 0; }
to { transform: translateY(0); opacity: 1; }
}
#services {
margin: 20px auto;
}
.services {
text-align: center;
color: white;
font-size: 20px;
}
.scroll {
text-align: center;
padding: 1px;
font-size: 20px;
font-family: "Courier New", Times, serif;
flex-wrap: wrap;
}
.links a {
color: #fc03a5;
text-decoration: none;
font-size: 20px;
}
.links a:hover {
font-family: "Courier New", Times, serif;
background: #ffe6ff;
color: #b00274;
text-decoration: underline;
font-size: 20px;
}
.home {
font-family: "Courier New", Times, serif;
text-align: center;
color: white;
font-size: 20px;
}
.exploit {
font-family: "Courier New", Times, serif;
text-align: center;
color: white;
font-size: 20px;
}
.container {
display: flex;
flex-wrap: wrap;
gap: 20px;
}
.column {
flex: 1;
min-width: 200px;
}
.checkbox {
display: grid;
flex-direction: column;
grid-template-columns: 1fr 1fr 1fr ;
align-items: center;
gap: 10px;
max-width: 300px;
margin: auto;
}
.checkbox div {
margin: 5px 0;
}
table {
width: 100%;
border-collapse: collapse;
}
table, th, td {
border: 1px solid black;
}
th, td {
padding: 8px;
text-align: center;
}
.example {
background-color: blue;
color: #fc03a5;
}
@media (max-width: 600px) {
.checkbox {
grid-template-columns: 1fr;
}
nav a {
font-size: 14px;
}
body {
font-size: 14px;
}
}
/* Added by ERSG assistant */
main {
max-width: 960px;
margin: 0 auto;
padding: 2rem 1.5rem;
background: #000000; /* maintain black background */
color: #ffffff;
}
@media (max-width: 600px) {
main { padding: 1.5rem 1rem; }
}
</style>
</head>
<body>
<header>
<center>
<font size="2">
<pre>
.-. .-. .-. .-. .-. .-. .-. .-. .-. .-. .-. .-. .-. .-. .-. .-. .-.
offen\sive-s\ecurity♥\malware\researc\h♥foren\sics♥os\int♥inc\ident-r\esponse\♥threat\hunting\♥corpor\ate-esp\ionage-\investi\gation♥\
' `-' `-' `-' `-' `-' `-' `-' `-' `-' `-' `-' `-' `-' `-' `-' `-' `
</pre>
</center>
<section id="home">
<div class="home">
<p>
<span style="font-family: "Courier New", Times, serif;">
<font size="8">E</font><font size="8">mergency </font><font size="10">R</font><font size="8">esponse </font><font size="10">S</font><font size="8">ecurity</font><font size="10"> G</font><font size="8">roup </font>
</span>
</div>
</section>
</p>
<font color="#FF00E1">
<center><font size="5"><b>Cyber Security since 1337 </b></font></font></center>
<nav>
<a href="https://cyb.ersecurity.com/index.html#home">Home</a>
<a href="https://cyb.ersecurity.com/about.html">About</a>
<a href="https://www.cyberwarfare.com/the-illusion-of-expertise/">Blog</a>
<a href="https://cyb.ersecurity.com/victimservices.html">Victim Support</a>
<a href="https://cyb.ersecurity.com/partners.html">Referrals</a>
<a href="https://www.linkedin.com/in/internetarchaeology/">Contact</a>
</div>
</nav>
</div>
</section>
<center>
<font size="2">
<pre>
.-. .-. .-. .-. .-. .-. .-. .-. .-. .-. .-. .-. .-. .-. .-. .-. .-.
secur\ity-res\earch♥t\hreat-h\unting♥\reverse\engineer\♥inves\tigatio\ns♥scri\pting♥l\inux-uni\x♥host\ing♥reg\istrars\exploit\s♥vuln♥\
' `-' `-' `-' `-' `-' `-' `-' `-' `-' `-' `-' `-' `-' `-' `-' `-' `
</pre>
</font>
</center>
</header>
</head>
<body>
<main>
<span style="color: orange;"><h1>Victim Services</h1></span>
<p><em>Last updated: February 7th, 2026</em></p>
<hr>
<span style="color: #EE27F5;"><h2>Our Commitment</h2></span>
<p>
Emergency Response Security Group provides affordable digital forensics support to victims of crime stalking and technology enabled abuse who meet eligibility criteria. Our mission is to reduce barriers to justice by delivering professional evidence collection analysis and documentation that victims can present to law enforcement or legal counsel. Eventually, this service will be transitioned into a non‑profit initiative.
</p>
<p>
This program is currently offered as a low cost service and is planned for transition into a nonprofit initiative. All work is conducted with discretion professionalism and victim safety as the highest priorities.
</p>
<center><img src="images/justice.png"> </center><br>
<span style="color: #EE27F5;"><h2>Scope of Services</h2></span>
<p>
Our team specializes in identifying preserving and organizing digital evidence across a wide range of technical environments. Services are designed to support investigations not replace law enforcement activity.
</p>
<ul>
<li>Digital forensics analysis of computers, mobile devices, cloud accounts and online platforms.</li>
<li>Structured evidence collection and documentation.</li>
<li>Technical analysis to identify intrusion surveillance harassment or misuse.</li>
<li>Clear professional reporting suitable for law enforcement or attorneys.</li>
</ul>
<span style="color: #EE27F5;"><h2>Initial Consultation and Intake</h2></span>
<p>
The engagement begins with a confidential consultation to understand the incident history, digital environment and potential evidence sources. During this phase we identify relevant assets, and determine whether the case meets service criteria.
</p>
<p>
Following intake, we conduct an initial analysis to establish an evidence catalog. This structured overview allows investigators to quickly understand the technical scope of the case and reduces the burden on already constrained resources.
</p>
<ul>
<li>Identification and intake of digital assets.</li>
<li>Preliminary forensic review.</li>
<li>Evidence organization and timeline development.</li>
<li>Delivery of a concise findings report with recommendations.</li>
</ul>
<span style="color: #EE27F5;"><h2>Information for Service Providers and Partners</h2></span>
<p>
Emergency Response Security Group operates as a technical support, and documentation provider. We do not conduct unlawful activity to impersonate law enforcement, licsensed private investigators or legal counsel.
</p>
<ul>
<li>All evidence handling follows standard chain of custody practices appropriate for experienced forensic support</li>.
<li>Client confidentiality and victim safety protocols are strictly observed</li>.
<li>Services focus on digital artifacts and technical analysis rather than legal interpretation</li>.
<li>Engagements are case specific and subject to capacity and eligibility review.</li>.
</ul>
<p>
We welcome collaboration with victim advocates, attorneys and law enforcement professionals who require well organized technical documentation to support their work. Please reach out via Linkedin (for tracking purposes) should more information be required. Often times, this service is performed in conjunction with our partner <a href="https://www.linkedin.com/company/kracken-cybersecurity-group-llc/">Kracken Cyber Security Group</a>. If you are needing paid paralegal work only, we can refer our colleague <a href="https://kristentheparalegal.com"> Kristen the Paralegal</a>.
</p>
<h2>
</a>
</h2>
<h2>Formal Contact Information</h2>
<p>
Rhiannon Williams<br>
PO BOX 1108 #43-25<br>
Salem, Oregon 97308<br>
206-300-5767
</p>
Contact directly <a href="https://www.linkedin.com/in/internetarchaeology">
here </a> and <a href="mailto:business@ersecurity.com"> here </a>to request consideration for this discreet service.
<p>
We appreciate the trust placed in our organization and remain committed to supporting victims through professional technical expertise.
</p>
<center><p> _,.-'~'-.,__,.-'~'-.,__,.-'~'-.,__,.-'~'-.,__,.-'~'-.,_</p></center>
<hr>
<center><p> _,.-'~'-.,__,.-'~'-.,__,.-'~'-.,__,.-'~'-.,__,.-'~'-.,_</p></center>
<span style="color: orange;"><h1>Social Media Ambassador & Negotiations</h1></center></span>
<section id="services">
<center>
<img src="images/negotiations.png">
</b></center><br></center>
<br>
In today’s environment, customer service breakdowns can quickly escalate into account locks, bans, and stalled resolution paths. We consistently succeed where standard support channels fail by driving professional, well documented negotiations that move cases back into productive review.<br><br>
We have restored access to banned and restricted accounts, resolved complex account status disputes, and helped clients navigate sensitive financial hardship conversations with clarity and credibility. Our approach removes friction, reduces delay, and clears the path for constructive discussions that lead to fair outcomes and durable reinstatement decisions.<br>
<br>
Pricing is simple. $550 per incident. Pay nothing if not successful. If you have more than one issue, we can add them on per contract at an additional $150 charge. Performed in conjunction with our partner <a href="https://cybercic.com">Cybercic</a>.
<br><br>
I have a unique background in negotiations having worked in legal contexts, private investigation, OSINT, social engineering, and corporate security that enables me to negotiate ethically and legally on your behalf.
<br>
See more <a href="https://www.linkedin.com/posts/activity-7413802416715968512-r3mX">here</a> and <a href="https://www.linkedin.com/posts/activity-7413802331206553600-VNj_">here</a>.
<br><br>
Contact directly <a href="https://www.linkedin.com/in/internetarchaeology">
here </a> and <a href="mailto:business@ersecurity.com"> here </a>to request consideration for this discreet service. <br><br>
<center><p> _,.-'~'-.,__,.-'~'-.,__,.-'~'-.,__,.-'~'-.,__,.-'~'-.,_</p></center>
</main>
</body>
</main>
<footer>
<center>
<font color="white">=^..^= =^..^= Electric Consulting LLC =^..^= =^..^=</font>
<br>
© 2025 + beyond!</center>
<br>
<center>
* <a href="privacy.html">Privacy Policy</a> * <a href="terms.html">TOS</a> * <a href="careers.html">Careers</a> * <a href="pricing.html">Pricing</a> * <a href="victimservices.html">Victim Services</a> *
</center>
<br>
</footer>
</html>