🏜️
Sahara Scripters
  • Welcome
    • Introduction
    • Community & Support
  • Premium Scripts
    • Charging Kiosk
      • Setup Guide
      • Configuration
      • Features
        • Charging System
        • Security
        • Rate Limiting
        • Logging System
        • Phones Management
        • Discord Integration
        • Target System
        • Blip System
        • Translations
      • Integration
        • Inventory Systems
        • Framework Migration
        • Logger Edit
      • Best Practices
      • Troubleshooting
      • Version History
  • Free Scripts
    • Elevator System
      • Setup & Configuration
      • Features Overview
      • Example Buildings
      • Troubleshooting
    • NPWD Renewed Weather APP
    • NPWD QBX Services APP
Powered by GitBook
On this page
  • 🔐 PIN System
  • 🛡️ Rate Limiting
  • 👮 Staff Recovery
  • Access Configuration
  • Recovery Process
  • 📝 Logging
  • ⚠️ Security Tips
  1. Premium Scripts
  2. Charging Kiosk
  3. Features

Security

PreviousCharging SystemNextRate Limiting

Last updated 4 months ago

🔐 PIN System

The PIN system can be configured in config/shared.lua. See for setup.

🛡️ Rate Limiting

For detailed information about rate limiting protection, see our .

rateLimit = {
    enabled = true,
    limits = {
        requestUI = 5,      -- UI request cooldown
        putPhone = 5,       -- Storage cooldown
        takeoutPhone = 5,   -- Retrieval cooldown
        recoverPhone = 10   -- Recovery attempt cooldown
    }
}

👮 Staff Recovery

Access Configuration

recoverAccess = {
    ['police'] = 4,          -- Police job grade required
    ['phone_recover'] = 4    -- Recovery job grade required
}

Recovery Process

  1. Staff checks lost phone list

  2. Verifies ownership

  3. Processes recovery request

  4. Returns phone to owner

📝 Logging

  • Phone storage/retrieval

  • Failed PIN attempts

  • Staff recoveries

  • Rate limit triggers

⚠️ Security Tips

  • Use unique PINs

  • Regular staff monitoring

  • Keep recovery grades restricted

  • Enable logging in production


Secured by Sahara Scripters - Because '1234' isn't a good PIN

Rate Limiting Guide
Configuration Guide