mirror of
https://github.com/suitenumerique/meet.git
synced 2026-08-07 17:33:18 +00:00
866a2cea20
Replace wildcard imports with specific function imports, particularly for OS package which could expose dangerous functions. Follows security audit recommendations to minimize attack surface.
16 lines
365 B
Python
16 lines
365 B
Python
#!/usr/bin/env python
|
|
"""
|
|
meet's sandbox management script.
|
|
"""
|
|
|
|
import sys
|
|
from os import environ
|
|
|
|
if __name__ == "__main__":
|
|
environ.setdefault("DJANGO_SETTINGS_MODULE", "meet.settings")
|
|
environ.setdefault("DJANGO_CONFIGURATION", "Development")
|
|
|
|
from configurations.management import execute_from_command_line
|
|
|
|
execute_from_command_line(sys.argv)
|