Research
Security News
Malicious npm Package Targets Solana Developers and Hijacks Funds
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Features:
pip install drf-shop-api
Add to installed apps
INSTALLED_APPS = [
...
'drf_shop_api'
]
Add api path to you root urls.py
urlpatterns = [
...
path("shop/", include("drf_shop_api.urls")),
]
create_shop_profile
decorator on create_user method of your UserManagerfrom django.contrib.auth.base_user import BaseUserManager
from drf_shop_api.decorators import create_shop_profile
class UserManager(BaseUserManager):
@create_shop_profile
def create_user(self, email, password=None):
if not email:
raise ValueError("Enter the email")
user = self.model(email=self.normalize_email(email))
user.set_password(password)
user.save(using=self._db)
return user
Setup AUTH_USER_MODEL
in settings.py
Run python manage.py makemigrations
and python manage.py migrate
(Due to optional Payment model from root project)
Optional settings:
DRF_SHOP_PAGE_SIZE
on will be default 10DRF_SHOP_PAYMENT_MODEL
= "projects.payments.models.Payment"DRF_SHOP_PAYMENT_STATUS_CHOICES
= "project.payments.choices.PaymentStatus"DRF_SHOP_BONUS_RATE
= percentage value for each order that will go to bonus walletdjango
drf
drf-yasg 1.21.5
rest_framework_simplejwt
mixer
django-filter
FAQs
Standalone shop app, that you can add to your project
We found that drf-shop-api 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.
Research
Security News
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Security News
Research
Socket researchers have discovered malicious npm packages targeting crypto developers, stealing credentials and wallet data using spyware delivered through typosquats of popular cryptographic libraries.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.