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.
.. image:: https://img.shields.io/pypi/v/django-firebird.svg :target: https://pypi.python.org/pypi/django-firebird
Repo Note:
The master
branch is an in development version of django-firebird. This may be substantially different from the latest
release of django-firebird
_
.. _release of django-firebird: https://github.com/maxirobaina/django-firebird/releases
This version of django-firebird is working with fbd [1], therefore it will work only with firebird 2.x and later.
The stable version corresponds with django 2.2 and live into stable/2.2.x
branch.
The current master branch of this repository is being developed under django 3.0.x. For previous Django stable version check
the branch list of this repository.
fbd is the official stable python-firebird driver, also it has support for python 3.
[1] http://pypi.python.org/pypi/fdb/
Using pip
pip install django-firebird
From repository
git clone git://github.com/maxirobaina/django-firebird.git
cd django-firebird
sudo python setup.py install
Manual Installation
Instructions for Ubuntu/Debian I assume you have installed django from source with python setup.py install
cd /usr/local/lib/python3.8/dist-packages
sudo git clone git://github.com/maxirobaina/django-firebird.git
sudo ln -s django-firebird/firebird firebird
cd /usr/local/lib/python3.8/dist-packages/django/db/backends
sudo ln -s /usr/local/lib/python3.8/dist-packages/django-firebird/firebird
Modify your setting.py ::
DATABASES = {
'default': {
'ENGINE' : 'firebird',
'NAME' : '/var/lib/firebird/3.0/data/django_firebird.fdb', # Path to database or db alias
'USER' : 'SYSDBA', # Your db user
'PASSWORD' : '*****', # db user password
'HOST' : '127.0.0.1', # Your host machine
'PORT' : '3050', # If is empty, use default 3050
#'OPTIONS' : {'charset':'ISO8859_1'}
}
}
Code and issues is in GitHub:
https://github.com/maxirobaina/django-firebird
We also have a mailing list:
http://groups.google.com/group/django-firebird-dev
FAQs
Firebird backend for Django web framework
We found that django-firebird demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 2 open source maintainers 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.