├── .gitignore ├── INSTALL.md ├── LICENSE ├── README.md ├── SecureServe ├── bans.json ├── config.lua ├── fxmanifest.lua ├── secureserve.key ├── src │ ├── client │ │ ├── blacklists │ │ │ ├── blacklisted_commands.lua │ │ │ ├── blacklisted_sprites.lua │ │ │ └── blacklisted_weapons.lua │ │ ├── core │ │ │ ├── blue_screen.lua │ │ │ ├── cache.lua │ │ │ ├── client_logger.lua │ │ │ ├── config_loader.lua │ │ │ ├── entity_monitor.lua │ │ │ └── perms.lua │ │ ├── init.lua │ │ ├── main.lua │ │ └── protections │ │ │ ├── anti_afk_injection.lua │ │ │ ├── anti_ai.lua │ │ │ ├── anti_aim_assist.lua │ │ │ ├── anti_bigger_hitbox.lua │ │ │ ├── anti_entity_security.lua │ │ │ ├── anti_explosion_bullet.lua │ │ │ ├── anti_freecam.lua │ │ │ ├── anti_give_weapon.lua │ │ │ ├── anti_god_mode.lua │ │ │ ├── anti_infinite_stamina.lua │ │ │ ├── anti_invisible.lua │ │ │ ├── anti_load_resource_file.lua │ │ │ ├── anti_magic_bullet.lua │ │ │ ├── anti_no_ragdoll.lua │ │ │ ├── anti_no_recoil.lua │ │ │ ├── anti_no_reload.lua │ │ │ ├── anti_noclip.lua │ │ │ ├── anti_ocr.lua │ │ │ ├── anti_player_blips.lua │ │ │ ├── anti_resource_stop.lua │ │ │ ├── anti_spectate.lua │ │ │ ├── anti_speed_hack.lua │ │ │ ├── anti_state_bag_overflow.lua │ │ │ ├── anti_super_jump.lua │ │ │ ├── anti_teleport.lua │ │ │ ├── anti_visions.lua │ │ │ ├── anti_weapon_damage_modifier.lua │ │ │ ├── anti_weapon_pickup.lua │ │ │ └── protection_manager.lua │ ├── main.lua │ ├── module │ │ ├── module.js │ │ └── module.lua │ ├── panel │ │ └── ingame │ │ │ ├── client.lua │ │ │ ├── html │ │ │ ├── app.js │ │ │ ├── index.html │ │ │ └── styles.css │ │ │ ├── server.lua │ │ │ └── stats.json │ ├── server │ │ ├── core │ │ │ ├── admin_whitelist.lua │ │ │ ├── auto_config.lua │ │ │ ├── ban_manager.lua │ │ │ ├── config_manager.lua │ │ │ ├── debug_module.lua │ │ │ ├── discord_logger.lua │ │ │ ├── install.js │ │ │ ├── logger.lua │ │ │ ├── perms.lua │ │ │ ├── player_manager.lua │ │ │ └── version.lua │ │ ├── main.lua │ │ └── protections │ │ │ ├── anti_create_entity.lua │ │ │ ├── anti_entity_spam.lua │ │ │ ├── anti_execution.lua │ │ │ ├── anti_explosions.lua │ │ │ ├── anti_explosive_damage.lua │ │ │ ├── anti_particle_effects.lua │ │ │ ├── anti_resource_injection.lua │ │ │ ├── anti_server_cfg_options.lua │ │ │ ├── anti_weapon_damage_modifier.lua │ │ │ ├── heartbeat.lua │ │ │ └── resource_manager.lua │ └── shared │ │ ├── init.lua │ │ └── lib │ │ ├── callbacks.lua │ │ ├── encryption.lua │ │ ├── require.lua │ │ └── utils.lua └── stats.json ├── WHITELISTING.md └── keep-alive ├── client.lua └── fxmanifest.lua /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peleg-development/SecureServe-AC/HEAD/.gitignore -------------------------------------------------------------------------------- /INSTALL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peleg-development/SecureServe-AC/HEAD/INSTALL.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peleg-development/SecureServe-AC/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peleg-development/SecureServe-AC/HEAD/README.md -------------------------------------------------------------------------------- /SecureServe/bans.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peleg-development/SecureServe-AC/HEAD/SecureServe/bans.json -------------------------------------------------------------------------------- /SecureServe/config.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peleg-development/SecureServe-AC/HEAD/SecureServe/config.lua -------------------------------------------------------------------------------- /SecureServe/fxmanifest.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peleg-development/SecureServe-AC/HEAD/SecureServe/fxmanifest.lua -------------------------------------------------------------------------------- /SecureServe/secureserve.key: -------------------------------------------------------------------------------- 1 | E]D{@VeqAb0%hVg@#s)rJ8XP_ZhZX -------------------------------------------------------------------------------- /SecureServe/src/client/blacklists/blacklisted_commands.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peleg-development/SecureServe-AC/HEAD/SecureServe/src/client/blacklists/blacklisted_commands.lua -------------------------------------------------------------------------------- /SecureServe/src/client/blacklists/blacklisted_sprites.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peleg-development/SecureServe-AC/HEAD/SecureServe/src/client/blacklists/blacklisted_sprites.lua -------------------------------------------------------------------------------- /SecureServe/src/client/blacklists/blacklisted_weapons.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peleg-development/SecureServe-AC/HEAD/SecureServe/src/client/blacklists/blacklisted_weapons.lua -------------------------------------------------------------------------------- /SecureServe/src/client/core/blue_screen.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peleg-development/SecureServe-AC/HEAD/SecureServe/src/client/core/blue_screen.lua -------------------------------------------------------------------------------- /SecureServe/src/client/core/cache.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peleg-development/SecureServe-AC/HEAD/SecureServe/src/client/core/cache.lua -------------------------------------------------------------------------------- /SecureServe/src/client/core/client_logger.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peleg-development/SecureServe-AC/HEAD/SecureServe/src/client/core/client_logger.lua -------------------------------------------------------------------------------- /SecureServe/src/client/core/config_loader.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peleg-development/SecureServe-AC/HEAD/SecureServe/src/client/core/config_loader.lua -------------------------------------------------------------------------------- /SecureServe/src/client/core/entity_monitor.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peleg-development/SecureServe-AC/HEAD/SecureServe/src/client/core/entity_monitor.lua -------------------------------------------------------------------------------- /SecureServe/src/client/core/perms.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peleg-development/SecureServe-AC/HEAD/SecureServe/src/client/core/perms.lua -------------------------------------------------------------------------------- /SecureServe/src/client/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peleg-development/SecureServe-AC/HEAD/SecureServe/src/client/init.lua -------------------------------------------------------------------------------- /SecureServe/src/client/main.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peleg-development/SecureServe-AC/HEAD/SecureServe/src/client/main.lua -------------------------------------------------------------------------------- /SecureServe/src/client/protections/anti_afk_injection.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peleg-development/SecureServe-AC/HEAD/SecureServe/src/client/protections/anti_afk_injection.lua -------------------------------------------------------------------------------- /SecureServe/src/client/protections/anti_ai.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peleg-development/SecureServe-AC/HEAD/SecureServe/src/client/protections/anti_ai.lua -------------------------------------------------------------------------------- /SecureServe/src/client/protections/anti_aim_assist.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peleg-development/SecureServe-AC/HEAD/SecureServe/src/client/protections/anti_aim_assist.lua -------------------------------------------------------------------------------- /SecureServe/src/client/protections/anti_bigger_hitbox.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peleg-development/SecureServe-AC/HEAD/SecureServe/src/client/protections/anti_bigger_hitbox.lua -------------------------------------------------------------------------------- /SecureServe/src/client/protections/anti_entity_security.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peleg-development/SecureServe-AC/HEAD/SecureServe/src/client/protections/anti_entity_security.lua -------------------------------------------------------------------------------- /SecureServe/src/client/protections/anti_explosion_bullet.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peleg-development/SecureServe-AC/HEAD/SecureServe/src/client/protections/anti_explosion_bullet.lua -------------------------------------------------------------------------------- /SecureServe/src/client/protections/anti_freecam.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peleg-development/SecureServe-AC/HEAD/SecureServe/src/client/protections/anti_freecam.lua -------------------------------------------------------------------------------- /SecureServe/src/client/protections/anti_give_weapon.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peleg-development/SecureServe-AC/HEAD/SecureServe/src/client/protections/anti_give_weapon.lua -------------------------------------------------------------------------------- /SecureServe/src/client/protections/anti_god_mode.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peleg-development/SecureServe-AC/HEAD/SecureServe/src/client/protections/anti_god_mode.lua -------------------------------------------------------------------------------- /SecureServe/src/client/protections/anti_infinite_stamina.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peleg-development/SecureServe-AC/HEAD/SecureServe/src/client/protections/anti_infinite_stamina.lua -------------------------------------------------------------------------------- /SecureServe/src/client/protections/anti_invisible.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peleg-development/SecureServe-AC/HEAD/SecureServe/src/client/protections/anti_invisible.lua -------------------------------------------------------------------------------- /SecureServe/src/client/protections/anti_load_resource_file.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peleg-development/SecureServe-AC/HEAD/SecureServe/src/client/protections/anti_load_resource_file.lua -------------------------------------------------------------------------------- /SecureServe/src/client/protections/anti_magic_bullet.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peleg-development/SecureServe-AC/HEAD/SecureServe/src/client/protections/anti_magic_bullet.lua -------------------------------------------------------------------------------- /SecureServe/src/client/protections/anti_no_ragdoll.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peleg-development/SecureServe-AC/HEAD/SecureServe/src/client/protections/anti_no_ragdoll.lua -------------------------------------------------------------------------------- /SecureServe/src/client/protections/anti_no_recoil.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peleg-development/SecureServe-AC/HEAD/SecureServe/src/client/protections/anti_no_recoil.lua -------------------------------------------------------------------------------- /SecureServe/src/client/protections/anti_no_reload.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peleg-development/SecureServe-AC/HEAD/SecureServe/src/client/protections/anti_no_reload.lua -------------------------------------------------------------------------------- /SecureServe/src/client/protections/anti_noclip.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peleg-development/SecureServe-AC/HEAD/SecureServe/src/client/protections/anti_noclip.lua -------------------------------------------------------------------------------- /SecureServe/src/client/protections/anti_ocr.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peleg-development/SecureServe-AC/HEAD/SecureServe/src/client/protections/anti_ocr.lua -------------------------------------------------------------------------------- /SecureServe/src/client/protections/anti_player_blips.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peleg-development/SecureServe-AC/HEAD/SecureServe/src/client/protections/anti_player_blips.lua -------------------------------------------------------------------------------- /SecureServe/src/client/protections/anti_resource_stop.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peleg-development/SecureServe-AC/HEAD/SecureServe/src/client/protections/anti_resource_stop.lua -------------------------------------------------------------------------------- /SecureServe/src/client/protections/anti_spectate.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peleg-development/SecureServe-AC/HEAD/SecureServe/src/client/protections/anti_spectate.lua -------------------------------------------------------------------------------- /SecureServe/src/client/protections/anti_speed_hack.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peleg-development/SecureServe-AC/HEAD/SecureServe/src/client/protections/anti_speed_hack.lua -------------------------------------------------------------------------------- /SecureServe/src/client/protections/anti_state_bag_overflow.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peleg-development/SecureServe-AC/HEAD/SecureServe/src/client/protections/anti_state_bag_overflow.lua -------------------------------------------------------------------------------- /SecureServe/src/client/protections/anti_super_jump.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peleg-development/SecureServe-AC/HEAD/SecureServe/src/client/protections/anti_super_jump.lua -------------------------------------------------------------------------------- /SecureServe/src/client/protections/anti_teleport.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peleg-development/SecureServe-AC/HEAD/SecureServe/src/client/protections/anti_teleport.lua -------------------------------------------------------------------------------- /SecureServe/src/client/protections/anti_visions.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peleg-development/SecureServe-AC/HEAD/SecureServe/src/client/protections/anti_visions.lua -------------------------------------------------------------------------------- /SecureServe/src/client/protections/anti_weapon_damage_modifier.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peleg-development/SecureServe-AC/HEAD/SecureServe/src/client/protections/anti_weapon_damage_modifier.lua -------------------------------------------------------------------------------- /SecureServe/src/client/protections/anti_weapon_pickup.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peleg-development/SecureServe-AC/HEAD/SecureServe/src/client/protections/anti_weapon_pickup.lua -------------------------------------------------------------------------------- /SecureServe/src/client/protections/protection_manager.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peleg-development/SecureServe-AC/HEAD/SecureServe/src/client/protections/protection_manager.lua -------------------------------------------------------------------------------- /SecureServe/src/main.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peleg-development/SecureServe-AC/HEAD/SecureServe/src/main.lua -------------------------------------------------------------------------------- /SecureServe/src/module/module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peleg-development/SecureServe-AC/HEAD/SecureServe/src/module/module.js -------------------------------------------------------------------------------- /SecureServe/src/module/module.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peleg-development/SecureServe-AC/HEAD/SecureServe/src/module/module.lua -------------------------------------------------------------------------------- /SecureServe/src/panel/ingame/client.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peleg-development/SecureServe-AC/HEAD/SecureServe/src/panel/ingame/client.lua -------------------------------------------------------------------------------- /SecureServe/src/panel/ingame/html/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peleg-development/SecureServe-AC/HEAD/SecureServe/src/panel/ingame/html/app.js -------------------------------------------------------------------------------- /SecureServe/src/panel/ingame/html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peleg-development/SecureServe-AC/HEAD/SecureServe/src/panel/ingame/html/index.html -------------------------------------------------------------------------------- /SecureServe/src/panel/ingame/html/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peleg-development/SecureServe-AC/HEAD/SecureServe/src/panel/ingame/html/styles.css -------------------------------------------------------------------------------- /SecureServe/src/panel/ingame/server.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peleg-development/SecureServe-AC/HEAD/SecureServe/src/panel/ingame/server.lua -------------------------------------------------------------------------------- /SecureServe/src/panel/ingame/stats.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peleg-development/SecureServe-AC/HEAD/SecureServe/src/panel/ingame/stats.json -------------------------------------------------------------------------------- /SecureServe/src/server/core/admin_whitelist.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peleg-development/SecureServe-AC/HEAD/SecureServe/src/server/core/admin_whitelist.lua -------------------------------------------------------------------------------- /SecureServe/src/server/core/auto_config.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peleg-development/SecureServe-AC/HEAD/SecureServe/src/server/core/auto_config.lua -------------------------------------------------------------------------------- /SecureServe/src/server/core/ban_manager.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peleg-development/SecureServe-AC/HEAD/SecureServe/src/server/core/ban_manager.lua -------------------------------------------------------------------------------- /SecureServe/src/server/core/config_manager.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peleg-development/SecureServe-AC/HEAD/SecureServe/src/server/core/config_manager.lua -------------------------------------------------------------------------------- /SecureServe/src/server/core/debug_module.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peleg-development/SecureServe-AC/HEAD/SecureServe/src/server/core/debug_module.lua -------------------------------------------------------------------------------- /SecureServe/src/server/core/discord_logger.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peleg-development/SecureServe-AC/HEAD/SecureServe/src/server/core/discord_logger.lua -------------------------------------------------------------------------------- /SecureServe/src/server/core/install.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peleg-development/SecureServe-AC/HEAD/SecureServe/src/server/core/install.js -------------------------------------------------------------------------------- /SecureServe/src/server/core/logger.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peleg-development/SecureServe-AC/HEAD/SecureServe/src/server/core/logger.lua -------------------------------------------------------------------------------- /SecureServe/src/server/core/perms.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peleg-development/SecureServe-AC/HEAD/SecureServe/src/server/core/perms.lua -------------------------------------------------------------------------------- /SecureServe/src/server/core/player_manager.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peleg-development/SecureServe-AC/HEAD/SecureServe/src/server/core/player_manager.lua -------------------------------------------------------------------------------- /SecureServe/src/server/core/version.lua: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SecureServe/src/server/main.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peleg-development/SecureServe-AC/HEAD/SecureServe/src/server/main.lua -------------------------------------------------------------------------------- /SecureServe/src/server/protections/anti_create_entity.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peleg-development/SecureServe-AC/HEAD/SecureServe/src/server/protections/anti_create_entity.lua -------------------------------------------------------------------------------- /SecureServe/src/server/protections/anti_entity_spam.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peleg-development/SecureServe-AC/HEAD/SecureServe/src/server/protections/anti_entity_spam.lua -------------------------------------------------------------------------------- /SecureServe/src/server/protections/anti_execution.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peleg-development/SecureServe-AC/HEAD/SecureServe/src/server/protections/anti_execution.lua -------------------------------------------------------------------------------- /SecureServe/src/server/protections/anti_explosions.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peleg-development/SecureServe-AC/HEAD/SecureServe/src/server/protections/anti_explosions.lua -------------------------------------------------------------------------------- /SecureServe/src/server/protections/anti_explosive_damage.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peleg-development/SecureServe-AC/HEAD/SecureServe/src/server/protections/anti_explosive_damage.lua -------------------------------------------------------------------------------- /SecureServe/src/server/protections/anti_particle_effects.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peleg-development/SecureServe-AC/HEAD/SecureServe/src/server/protections/anti_particle_effects.lua -------------------------------------------------------------------------------- /SecureServe/src/server/protections/anti_resource_injection.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peleg-development/SecureServe-AC/HEAD/SecureServe/src/server/protections/anti_resource_injection.lua -------------------------------------------------------------------------------- /SecureServe/src/server/protections/anti_server_cfg_options.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peleg-development/SecureServe-AC/HEAD/SecureServe/src/server/protections/anti_server_cfg_options.lua -------------------------------------------------------------------------------- /SecureServe/src/server/protections/anti_weapon_damage_modifier.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peleg-development/SecureServe-AC/HEAD/SecureServe/src/server/protections/anti_weapon_damage_modifier.lua -------------------------------------------------------------------------------- /SecureServe/src/server/protections/heartbeat.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peleg-development/SecureServe-AC/HEAD/SecureServe/src/server/protections/heartbeat.lua -------------------------------------------------------------------------------- /SecureServe/src/server/protections/resource_manager.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peleg-development/SecureServe-AC/HEAD/SecureServe/src/server/protections/resource_manager.lua -------------------------------------------------------------------------------- /SecureServe/src/shared/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peleg-development/SecureServe-AC/HEAD/SecureServe/src/shared/init.lua -------------------------------------------------------------------------------- /SecureServe/src/shared/lib/callbacks.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peleg-development/SecureServe-AC/HEAD/SecureServe/src/shared/lib/callbacks.lua -------------------------------------------------------------------------------- /SecureServe/src/shared/lib/encryption.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peleg-development/SecureServe-AC/HEAD/SecureServe/src/shared/lib/encryption.lua -------------------------------------------------------------------------------- /SecureServe/src/shared/lib/require.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peleg-development/SecureServe-AC/HEAD/SecureServe/src/shared/lib/require.lua -------------------------------------------------------------------------------- /SecureServe/src/shared/lib/utils.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peleg-development/SecureServe-AC/HEAD/SecureServe/src/shared/lib/utils.lua -------------------------------------------------------------------------------- /SecureServe/stats.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peleg-development/SecureServe-AC/HEAD/SecureServe/stats.json -------------------------------------------------------------------------------- /WHITELISTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peleg-development/SecureServe-AC/HEAD/WHITELISTING.md -------------------------------------------------------------------------------- /keep-alive/client.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peleg-development/SecureServe-AC/HEAD/keep-alive/client.lua -------------------------------------------------------------------------------- /keep-alive/fxmanifest.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peleg-development/SecureServe-AC/HEAD/keep-alive/fxmanifest.lua --------------------------------------------------------------------------------