-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsanitize.go
665 lines (610 loc) · 24.5 KB
/
sanitize.go
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
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
/*
Package sanitize (go-sanitize) implements a simple library of various sanitation methods for data transformation.
This package provides a collection of functions to sanitize and transform different types of data, such as strings, URLs, email addresses, and more. It is designed to help developers clean and format input data to ensure it meets specific criteria and is safe for further processing.
Features:
- Sanitize alpha and alphanumeric characters
- Sanitize Bitcoin and Bitcoin Cash addresses
- Custom regex-based sanitization
- Sanitize decimal numbers and scientific notation
- Sanitize domain names, email addresses, and IP addresses
- Remove HTML/XML tags and scripts
- Sanitize URIs and URLs
- Handle XSS attack strings
Usage:
To use this package, simply import it and call the desired sanitization function with the input data. Each function is documented with examples in the `sanitize_test.go` file.
Example:
package main
import (
"fmt"
"github.com/yourusername/go-sanitize"
)
func main() {
input := "<script>alert('test');</script>"
sanitized := sanitize.XSS(input)
fmt.Println(sanitized) // Output: >alert('test');</
}
If you have any suggestions or comments, please feel free to open an issue on this project's GitHub page.
*/
package sanitize
import (
"net"
"net/url"
"regexp"
"strings"
"unicode"
)
// Set all the regular expressions
var (
alphaNumericRegExp = regexp.MustCompile(`[^a-zA-Z0-9]`) // Alpha numeric
alphaNumericWithSpacesRegExp = regexp.MustCompile(`[^a-zA-Z0-9\s]`) // Alphanumeric (with spaces)
alphaRegExp = regexp.MustCompile(`[^a-zA-Z]`) // Alpha characters
alphaWithSpacesRegExp = regexp.MustCompile(`[^a-zA-Z\s]`) // Alpha characters (with spaces)
bitcoinCashAddrRegExp = regexp.MustCompile(`[^ac-hj-np-zAC-HJ-NP-Z02-9]`) // Bitcoin `cashaddr` address accepted characters
bitcoinRegExp = regexp.MustCompile(`[^a-km-zA-HJ-NP-Z1-9]`) // Bitcoin address accepted characters
decimalRegExp = regexp.MustCompile(`[^0-9.-]`) // Decimals (positive and negative)
domainRegExp = regexp.MustCompile(`[^a-zA-Z0-9-.]`) // Domain accepted characters
emailRegExp = regexp.MustCompile(`[^a-zA-Z0-9-_.@+]`) // Email address characters
formalNameRegExp = regexp.MustCompile(`[^a-zA-Z0-9-',.\s]`) // Characters recognized in surnames and proper names
htmlRegExp = regexp.MustCompile(`(?i)<[^>]*>`) // HTML/XML tags or any alligator open/close tags
ipAddressRegExp = regexp.MustCompile(`[^a-zA-Z0-9:.]`) // IPV4 and IPV6 characters only
numericRegExp = regexp.MustCompile(`[^0-9]`) // Numbers only
pathNameRegExp = regexp.MustCompile(`[^a-zA-Z0-9-_]`) // Path name (file name, seo)
punctuationRegExp = regexp.MustCompile(`[^a-zA-Z0-9-'"#&!?,.\s]+`) // Standard accepted punctuation characters
scientificNotationRegExp = regexp.MustCompile(`[^0-9.eE+-]`) // Scientific Notation (float) (positive and negative)
scriptRegExp = regexp.MustCompile(`(?i)<(script|iframe|embed|object)[^>]*>.*</(script|iframe|embed|object)>`) // Scripts and embeds
singleLineRegExp = regexp.MustCompile(`(\r)|(\n)|(\t)|(\v)|(\f)`) // Carriage returns, line feeds, tabs, for single line transition
timeRegExp = regexp.MustCompile(`[^0-9:]`) // Time allowed characters
uriRegExp = regexp.MustCompile(`[^a-zA-Z0-9-_/?&=#%]`) // URI allowed characters
urlRegExp = regexp.MustCompile(`[^a-zA-Z0-9-_/:.,?&@=#%]`) // URL allowed characters
wwwRegExp = regexp.MustCompile(`(?i)www.`) // For removing www
)
// emptySpace is an empty space for replacing
var emptySpace = []byte("")
// Alpha returns a string containing only alphabetic characters (a-z, A-Z).
// If the `spaces` parameter is set to true, spaces will be preserved in the output.
//
// Parameters:
// - original: The input string to be sanitized.
// - spaces: A boolean flag indicating whether spaces should be preserved.
//
// Returns:
// - A sanitized string containing only alphabetic characters and, optionally, spaces.
//
// Example:
//
// input := "Hello, World! 123"
// result := sanitize.Alpha(input, true)
// fmt.Println(result) // Output: "Hello World"
//
// View more examples in the `sanitize_test.go` file.
func Alpha(original string, spaces bool) string {
// Leave white spaces?
if spaces {
return string(alphaWithSpacesRegExp.ReplaceAll([]byte(original), emptySpace))
}
// No spaces
return string(alphaRegExp.ReplaceAll([]byte(original), emptySpace))
}
// AlphaNumeric returns a string containing only alphanumeric characters (a-z, A-Z, 0-9).
// If the `spaces` parameter is set to true, spaces will be preserved in the output.
//
// Parameters:
// - original: The input string to be sanitized.
// - spaces: A boolean flag indicating whether spaces should be preserved.
//
// Returns:
// - A sanitized string containing only alphanumeric characters and, optionally, spaces.
//
// Example:
//
// input := "Hello, World! 123"
// result := sanitize.AlphaNumeric(input, true)
// fmt.Println(result) // Output: "Hello World 123"
//
// View more examples in the `sanitize_test.go` file.
func AlphaNumeric(original string, spaces bool) string {
// Leave white spaces?
if spaces {
return string(alphaNumericWithSpacesRegExp.ReplaceAll([]byte(original), emptySpace))
}
// No spaces
return string(alphaNumericRegExp.ReplaceAll([]byte(original), emptySpace))
}
// BitcoinAddress returns a sanitized string containing only valid characters for a Bitcoin address.
// This function removes any characters that are not part of the accepted Bitcoin address format.
//
// Parameters:
// - original: The input string to be sanitized.
//
// Returns:
// - A sanitized string containing only valid Bitcoin address characters.
//
// Example:
//
// input := "1A1zP1eP5QGefi2DMPTfTL5SLmv7DivfNa!@#"
// result := sanitize.BitcoinAddress(input)
// fmt.Println(result) // Output: "1A1zP1eP5QGefi2DMPTfTL5SLmv7DivfNa"
//
// View more examples in the `sanitize_test.go` file.
func BitcoinAddress(original string) string {
return string(bitcoinRegExp.ReplaceAll([]byte(original), emptySpace))
}
// BitcoinCashAddress returns a sanitized string containing only valid characters for a Bitcoin Cash address (cashaddr format).
// This function removes any characters that are not part of the accepted Bitcoin Cash address format.
//
// Parameters:
// - original: The input string to be sanitized.
//
// Returns:
// - A sanitized string containing only valid Bitcoin Cash address characters.
//
// Example:
//
// input := "bitcoincash:qpm2qsznhks23z7629mms6s4cwef74vcwvy22gdx6a!@#"
// result := sanitize.BitcoinCashAddress(input)
// fmt.Println(result) // Output: "bitcoincash:qpm2qsznhks23z7629mms6s4cwef74vcwvy22gdx6a"
//
// View more examples in the `sanitize_test.go` file.
func BitcoinCashAddress(original string) string {
return string(bitcoinCashAddrRegExp.ReplaceAll([]byte(original), emptySpace))
}
// Custom uses a custom regex string and returns the sanitized result.
// This function allows for flexible sanitization based on user-defined regular expressions.
//
// Parameters:
// - original: The input string to be sanitized.
// - regExp: A string representing the custom regular expression to be used for sanitization.
//
// Returns:
// - A sanitized string based on the provided regular expression.
//
// Example:
//
// input := "Hello, World! 123"
// customRegExp := `[^a-zA-Z\s]`
// result := sanitize.Custom(input, customRegExp)
// fmt.Println(result) // Output: "Hello World"
//
// View more examples in the `sanitize_test.go` file.
func Custom(original string, regExp string) string {
// Return the processed string or panic if regex fails
return string(regexp.MustCompile(regExp).ReplaceAll([]byte(original), emptySpace))
}
// Decimal returns a sanitized string containing only decimal/float values, including positive and negative numbers.
// This function removes any characters that are not part of the accepted decimal format.
//
// Parameters:
// - original: The input string to be sanitized.
//
// Returns:
// - A sanitized string containing only decimal/float values.
//
// Example:
//
// input := "The price is -123.45 USD"
// result := sanitize.Decimal(input)
// fmt.Println(result) // Output: "-123.45"
//
// View more examples in the `sanitize_test.go` file.
func Decimal(original string) string {
return string(decimalRegExp.ReplaceAll([]byte(original), emptySpace))
}
// Domain returns a properly formatted hostname or domain name.
// This function can preserve the case of the original input or convert it to lowercase,
// and optionally remove the "www" subdomain.
//
// Parameters:
// - original: The input string to be sanitized.
// - preserveCase: A boolean flag indicating whether to preserve the case of the original input.
// - removeWww: A boolean flag indicating whether to remove the "www" subdomain.
//
// Returns:
// - A sanitized string containing a valid hostname or domain name.
// - An error if the URL parsing fails.
//
// Example:
//
// input := "www.Example.com"
// result, err := sanitize.Domain(input, false, true)
// if err != nil {
// log.Fatal(err)
// }
// fmt.Println(result) // Output: "example.com"
//
// View more examples in the `sanitize_test.go` file.
func Domain(original string, preserveCase bool, removeWww bool) (string, error) {
// Try to see if we have a host
if len(original) == 0 {
return original, nil
}
// Missing http?
if !strings.Contains(original, "http") {
original = "http://" + strings.TrimSpace(original)
}
// Try to parse the url
u, err := url.Parse(original)
if err != nil {
return original, err
}
// Remove leading www.
if removeWww {
u.Host = wwwRegExp.ReplaceAllString(u.Host, "")
}
// Keeps the exact case of the original input string
if preserveCase {
return string(domainRegExp.ReplaceAll([]byte(u.Host), emptySpace)), nil
}
// Generally all domains should be uniform and lowercase
return string(domainRegExp.ReplaceAll([]byte(strings.ToLower(u.Host)), emptySpace)), nil
}
// Email returns a sanitized email address string. Email addresses are forced
// to lowercase and removes any mail-to prefixes.
//
// Parameters:
// - original: The input string to be sanitized.
// - preserveCase: A boolean flag indicating whether to preserve the case of the original input.
//
// Returns:
// - A sanitized string containing a valid email address.
//
// Example:
//
// input := "MailTo:[email protected]"
// result := sanitize.Email(input, false)
// fmt.Println(result) // Output: "[email protected]"
//
// View more examples in the `sanitize_test.go` file.
func Email(original string, preserveCase bool) string {
// Leave the email address in its original case
if preserveCase {
return string(emailRegExp.ReplaceAll(
[]byte(strings.ReplaceAll(original, "mailto:", "")), emptySpace),
)
}
// Standard is forced to lowercase
return string(emailRegExp.ReplaceAll(
[]byte(strings.ToLower(strings.ReplaceAll(original, "mailto:", ""))), emptySpace),
)
}
// FirstToUpper overwrites the first letter as an uppercase letter
// and preserves the rest of the string.
//
// This function is useful for formatting strings where the first character
// needs to be capitalized, such as names or titles.
//
// Parameters:
// - original: The input string to be formatted.
//
// Returns:
// - A string with the first letter converted to uppercase.
//
// Example:
//
// input := "hello world"
// result := sanitize.FirstToUpper(input)
// fmt.Println(result) // Output: "Hello world"
//
// View more examples in the `sanitize_test.go` file.
func FirstToUpper(original string) string {
// Handle empty and 1 character strings
if len(original) < 2 {
return strings.ToUpper(original)
}
runes := []rune(original)
runes[0] = unicode.ToUpper(runes[0])
return string(runes)
}
// FormalName returns a sanitized string containing only characters recognized in formal names or surnames.
// This function removes any characters that are not part of the accepted formal name format.
//
// Parameters:
// - original: The input string to be sanitized.
//
// Returns:
// - A sanitized string containing only valid formal name characters.
//
// Example:
//
// input := "John D'oe, Jr."
// result := sanitize.FormalName(input)
// fmt.Println(result) // Output: "John Doe Jr"
//
// View more examples in the `sanitize_test.go` file.
func FormalName(original string) string {
return string(formalNameRegExp.ReplaceAll([]byte(original), emptySpace))
}
// HTML returns a string without any HTML tags.
// This function removes all HTML tags from the input string, leaving only the text content.
//
// Parameters:
// - original: The input string containing HTML tags to be sanitized.
//
// Returns:
// - A sanitized string with all HTML tags removed.
//
// Example:
//
// input := "<div>Hello <b>World</b>!</div>"
// result := sanitize.HTML(input)
// fmt.Println(result) // Output: "Hello World!"
//
// View more examples in the `sanitize_test.go` file.
func HTML(original string) string {
return string(htmlRegExp.ReplaceAll([]byte(original), emptySpace))
}
// IPAddress returns a sanitized IP address string for both IPv4 and IPv6 formats.
// This function removes any invalid characters from the input string and attempts to parse it as an IP address.
// If the input string does not contain a valid IP address, an empty string is returned.
//
// Parameters:
// - original: The input string to be sanitized.
//
// Returns:
// - A sanitized string containing a valid IP address, or an empty string if the input is not a valid IP address.
//
// Example:
//
// input := "192.168.1.1!@#"
// result := sanitize.IPAddress(input)
// fmt.Println(result) // Output: "192.168.1.1"
//
// View more examples in the `sanitize_test.go` file.
func IPAddress(original string) string {
// Parse the IP - Remove any invalid characters first
ipAddress := net.ParseIP(
string(ipAddressRegExp.ReplaceAll([]byte(original), emptySpace)),
)
if ipAddress == nil {
return ""
}
return ipAddress.String()
}
// Numeric returns a string containing only numeric characters (0-9).
// This function removes any characters that are not digits from the input string.
//
// Parameters:
// - original: The input string to be sanitized.
//
// Returns:
// - A sanitized string containing only numeric characters.
//
// Example:
//
// input := "Phone: 123-456-7890"
// result := sanitize.Numeric(input)
// fmt.Println(result) // Output: "1234567890"
//
// View more examples in the `sanitize_test.go` file.
func Numeric(original string) string {
return string(numericRegExp.ReplaceAll([]byte(original), emptySpace))
}
// PathName returns a formatted path-compliant name.
// This function removes any characters that are not valid in file or directory names,
// ensuring the resulting string is safe to use as a path component.
//
// Parameters:
// - original: The input string to be sanitized.
//
// Returns:
// - A sanitized string containing only valid path name characters.
//
// Example:
//
// input := "file:name/with*invalid|chars"
// result := sanitize.PathName(input)
// fmt.Println(result) // Output: "filenamewithinvalidchars"
//
// View more examples in the `sanitize_test.go` file.
func PathName(original string) string {
return string(pathNameRegExp.ReplaceAll([]byte(original), emptySpace))
}
// Punctuation returns a string with basic punctuation preserved.
// This function removes any characters that are not standard punctuation or alphanumeric characters,
// ensuring the resulting string contains only valid punctuation and alphanumeric characters.
//
// Parameters:
// - original: The input string to be sanitized.
//
// Returns:
// - A sanitized string containing only valid punctuation and alphanumeric characters.
//
// Example:
//
// input := "Hello, World! How's it going? (Good, I hope.)"
// result := sanitize.Punctuation(input)
// fmt.Println(result) // Output: "Hello, World! How's it going? (Good, I hope.)"
//
// View more examples in the `sanitize_test.go` file.
func Punctuation(original string) string {
return string(punctuationRegExp.ReplaceAll([]byte(original), emptySpace))
}
// ScientificNotation returns a sanitized string containing only valid characters for scientific notation.
// This function removes any characters that are not part of the accepted scientific notation format,
// including digits (0-9), decimal points, and the characters 'e', 'E', '+', and '-'.
//
// Parameters:
// - original: The input string to be sanitized.
//
// Returns:
// - A sanitized string containing only valid scientific notation characters.
//
// Example:
//
// input := "The value is 1.23e+10 and 4.56E-7."
// result := sanitize.ScientificNotation(input)
// fmt.Println(result) // Output: "1.23e+104.56E-7"
//
// View more examples in the `sanitize_test.go` file.
func ScientificNotation(original string) string {
return string(scientificNotationRegExp.ReplaceAll([]byte(original), emptySpace))
}
// Scripts removes all script, iframe, embed, and object tags from the input string.
// This function is designed to sanitize input by removing potentially harmful tags
// that can be used for cross-site scripting (XSS) attacks or other malicious purposes.
//
// Parameters:
// - original: The input string containing HTML or script tags to be sanitized.
//
// Returns:
// - A sanitized string with all script, iframe, embed, and object tags removed.
//
// Example:
//
// input := "<script>alert('test');</script><iframe src='example.com'></iframe>"
// result := sanitize.Scripts(input)
// fmt.Println(result) // Output: "alert('test');"
//
// View more examples in the `sanitize_test.go` file.
func Scripts(original string) string {
return string(scriptRegExp.ReplaceAll([]byte(original), emptySpace))
}
// SingleLine returns a single line string by removing all carriage returns, line feeds, tabs, vertical tabs, and form feeds.
// This function is useful for sanitizing input that should be represented as a single line of text, ensuring that
// any multi-line or formatted input is condensed into a single line.
//
// Parameters:
// - original: The input string to be sanitized.
//
// Returns:
// - A sanitized string with all line breaks and whitespace characters replaced by a single space.
//
// Example:
//
// input := "This is a\nmulti-line\tstring."
// result := sanitize.SingleLine(input)
// fmt.Println(result) // Output: "This is a multi-line string."
//
// View more examples in the `sanitize_test.go` file.
func SingleLine(original string) string {
return singleLineRegExp.ReplaceAllString(original, " ")
}
// Time returns just the time part of the string.
// This function removes any characters that are not valid in a time format (HH:MM or HH:MM:SS),
// ensuring the resulting string contains only valid time characters.
//
// Parameters:
// - original: The input string to be sanitized.
//
// Returns:
// - A sanitized string containing only valid time characters.
//
// Example:
//
// input := "t00:00d -EST"
// result := sanitize.Time(input)
// fmt.Println(result) // Output: "00:00"
//
// View more examples in the `sanitize_test.go` file.
func Time(original string) string {
return string(timeRegExp.ReplaceAll([]byte(original), emptySpace))
}
// URI returns a sanitized string containing only valid URI characters.
// This function removes any characters that are not part of the accepted URI format,
// including alphanumeric characters, dashes, underscores, slashes, question marks, ampersands, equals signs, hashes, and percent signs.
//
// Parameters:
// - original: The input string to be sanitized.
//
// Returns:
// - A sanitized string containing only valid URI characters.
//
// Example:
//
// input := "Test?=what! &this=that"
// result := sanitize.URI(input)
// fmt.Println(result) // Output: "Test?=what&this=that"
//
// View more examples in the `sanitize_test.go` file.
func URI(original string) string {
return string(uriRegExp.ReplaceAll([]byte(original), emptySpace))
}
// URL returns a formatted URL-friendly string.
// This function removes any characters that are not part of the accepted URL format,
// including alphanumeric characters, dashes, underscores, slashes, colons, periods, question marks, ampersands, at signs, equals signs, hashes, and percent signs.
//
// Parameters:
// - original: The input string to be sanitized.
//
// Returns:
// - A sanitized string containing only valid URL characters.
//
// Example:
//
// input := "https://Example.com/This/Works?^No&this"
// result := sanitize.URL(input)
// fmt.Println(result) // Output: "https://Example.com/This/Works?No&this"
//
// View more examples in the `sanitize_test.go` file.
func URL(original string) string {
return string(urlRegExp.ReplaceAll([]byte(original), emptySpace))
}
// XML returns a string without any XML tags.
// This function removes all XML tags from the input string, leaving only the text content.
// It is an alias for the HTML function, which performs the same operation.
//
// Parameters:
// - original: The input string containing XML tags to be sanitized.
//
// Returns:
// - A sanitized string with all XML tags removed.
//
// Example:
//
// input := `<?xml version="1.0" encoding="UTF-8"?><note>Something</note>`
// result := sanitize.XML(input)
// fmt.Println(result) // Output: "Something"
//
// View more examples in the `sanitize_test.go` file.
func XML(original string) string {
return HTML(original)
}
// XSS removes known XSS attack strings or script strings.
// This function sanitizes the input string by removing common XSS attack vectors,
// such as script tags, eval functions, and JavaScript protocol handlers.
//
// Parameters:
// - original: The input string to be sanitized.
//
// Returns:
// - A sanitized string with known XSS attack vectors removed.
//
// Example:
//
// input := "<script>alert('test');</script>"
// result := sanitize.XSS(input)
// fmt.Println(result) // Output: ">alert('test');</"
//
// View more examples in the `sanitize_test.go` file.
func XSS(original string) string {
original = strings.ReplaceAll(original, "<script", "")
original = strings.ReplaceAll(original, "script>", "")
original = strings.ReplaceAll(original, "eval(", "")
original = strings.ReplaceAll(original, "eval(", "")
original = strings.ReplaceAll(original, "javascript:", "")
original = strings.ReplaceAll(original, "javascript:", "")
original = strings.ReplaceAll(original, "fromCharCode", "")
original = strings.ReplaceAll(original, ">", "")
original = strings.ReplaceAll(original, "<", "")
original = strings.ReplaceAll(original, "<", "")
original = strings.ReplaceAll(original, "&rt;", "")
// Some inline event handlers
original = strings.ReplaceAll(original, "onclick=", "")
original = strings.ReplaceAll(original, "onerror=", "")
original = strings.ReplaceAll(original, "onload=", "")
original = strings.ReplaceAll(original, "onmouseover=", "")
original = strings.ReplaceAll(original, "onfocus=", "")
original = strings.ReplaceAll(original, "onblur=", "")
original = strings.ReplaceAll(original, "ondblclick=", "")
original = strings.ReplaceAll(original, "onkeydown=", "")
original = strings.ReplaceAll(original, "onkeyup=", "")
original = strings.ReplaceAll(original, "onkeypress=", "")
// Potential CSS/Style-based attacks
original = strings.ReplaceAll(original, "expression(", "")
// Potentially malicious protocols
original = strings.ReplaceAll(original, "data:", "")
// Potential references to dangerous objects/functions
original = strings.ReplaceAll(original, "document.cookie", "")
original = strings.ReplaceAll(original, "document.write", "")
original = strings.ReplaceAll(original, "window.location", "")
return original
}