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.
Gestión de Expedientes de Agrimensores.
gea es una aplicación web basada en Django para gestionar expedientes de agrimensores. Hasta ahora sólo fue usada en la provincia de Santa Fe, Argentina.
$ pip install gea
Se instalan también los requirements
como Django y nested-admin. Si además quiere utilizar PostgreSQL para la Base de Datos, deberá instalar manualmente psycopg2.
$ pip install psycopg2
$ django-admin startproject estudio
settings.py
del proyecto Django:$ # dentro de "estudio"
$ vim estudio/settings.py
gea
y nested_admin
a las INSTALLED_APPS
:INSTALLED_APPS = (
...
'gea.apps.GeaConfig',
'nested_admin',
)
LANGUAGE_CODE = 'es-AR'
TIME_ZONE = 'America/Argentina/Buenos_Aires'
settings.py
.DATABASES = {
'default': {
'ENGINE': 'django.db.backends.postgresql_psycopg2',
'NAME': 'gea',
'USER': '<postgresql-user>',
'PASSWORD': '<postgresql-password>', # be creative
'HOST': 'localhost',
}
}
con esta opción se debe crear la BD, con el comando createdb
de PostgreSQL
$ createdb gea
urls.py
del proyecto Django:$ # dentro de "estudio"
$ vim estudio/urls.py
gea
y agregar las urls de las aplicaciones que instalamos:from django.conf.urls import include, path
urlpatterns = [
...
path('gea/', include('gea.urls')),
path('_nested_admin/', include('nested_admin.urls')),
]
$ # dentro de "estudio"
$ python manage.py makemigrations gea
$ python manage.py migrate
$ python manage.py createsuperuser
makemigrations
y migrate
ponen a punto la base de datos, createsuperuser
instala el sistema de autenticación de Django, Django's auth system, con lo cual, pedirá usuario, mail y contraseña, por ejemplo: admin y Af7Dr2ujW. Con estos datos ingresaremos después a la interfaz de administración.
Por último, algo muy importante: los archivos de estilo, imágenes y scripts que usará nuestra nueva aplicación.
Editar settings.py
agregando la siguiente linea:
STATIC_ROOT = './static/'
Y ejecutar:
$ # dentro de "estudio"
$ python manage.py collectstatic
¡LISTO... Ahora podemos probar cómo quedó nuestra django-app!
$ # dentro de "estudio"
$ python manage.py runserver
e ingresamos a http://127.0.0.1:8000/gea/... con los datos del superusuario que creamos antes.
FAQs
Gestión de Expedientes de Agrimensores
We found that gea 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.