Security News
Research
Data Theft Repackaged: A Case Study in Malicious Wrapper Packages on npm
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
[!NOTE] AA Squads needs at least Alliance Auth v4.0.0 Please make sure to update your Alliance Auth before you install this APP
Make sure you're in your virtual environment (venv) of your Alliance Auth then install the pakage.
pip install aa-squads
Configure your Alliance Auth settings (local.py
) as follows:
'eveuniverse',
to INSTALLED_APPS
'memberaudit',
to INSTALLED_APPS
'squads',
to INSTALLED_APPS
You can change the interval if you want.
CELERYBEAT_SCHEDULE["run_check_squads"] = {
"task": "squads.tasks.run_check_squads",
"schedule": crontab(minute=0, hour="*/12"),
}
python manage.py collectstatic
python manage.py migrate
With the Following IDs you can set up the permissions for the Squads
ID | Description | |
---|---|---|
basic_access | Can access the Squads module | All Members with the Permission can access the Squads. |
squad_manager | Can Create / Manage Squads | Manage Squads like Edit, Create Squads, Approve, Decline Request, etc. |
squad_admin | Can View All Squads | Can View all Squads. |
The Following Settings can be setting up in the local.py
"YOURNAME"
- Set the name of the APPTrue / False
- Set to use own Logger FileIf you set up SQUADS_LOGGER_USE to True
you need to add the following code below:
LOGGING_SQUADS = {
"handlers": {
"squads_file": {
"level": "INFO",
"class": "logging.handlers.RotatingFileHandler",
"filename": os.path.join(BASE_DIR, "log/squads.log"),
"formatter": "verbose",
"maxBytes": 1024 * 1024 * 5,
"backupCount": 5,
},
},
"loggers": {
"squads": {
"handlers": ["squads_file", "console"],
"level": "INFO",
},
},
}
LOGGING["handlers"].update(LOGGING_SQUADS["handlers"])
LOGGING["loggers"].update(LOGGING_SQUADS["loggers"])
[!NOTE] Contributing You want to improve the project? Just Make a Pull Request with the Guidelines. We Using pre-commit
FAQs
Squads plugin app for Alliance Auth
We found that aa-squads demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Research
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
Research
Security News
Attackers used a malicious npm package typosquatting a popular ESLint plugin to steal sensitive data, execute commands, and exploit developer systems.
Security News
The Ultralytics' PyPI Package was compromised four times in one weekend through GitHub Actions cache poisoning and failure to rotate previously compromised API tokens.