
Research
PyPI Package Disguised as Instagram Growth Tool Harvests User Credentials
A deceptive PyPI package posing as an Instagram growth tool collects user credentials and sends them to third-party bot services.
Classifier classes:
class name | Description |
---|---|
safe | Image is not sexually explicit |
unsafe | Image is sexually explicit |
Detector classes:
class name | Description |
---|---|
EXPOSED_ANUS | Exposed Anus; Any gender |
EXPOSED_ARMPITS | Exposed Armpits; Any gender |
COVERED_BELLY | Provocative, but covered Belly; Any gender |
EXPOSED_BELLY | Exposed Belly; Any gender |
COVERED_BUTTOCKS | Provocative, but covered Buttocks; Any gender |
EXPOSED_BUTTOCKS | Exposed Buttocks; Any gender |
FACE_F | Female Face |
FACE_M | Male Face |
COVERED_FEET | Covered Feet; Any gender |
EXPOSED_FEET | Exposed Feet; Any gender |
COVERED_BREAST_F | Provocative, but covered Breast; Female |
EXPOSED_BREAST_F | Exposed Breast; Female |
COVERED_GENITALIA_F | Provocative, but covered Genitalia; Female |
EXPOSED_GENITALIA_F | Exposed Genitalia; Female |
EXPOSED_BREAST_M | Exposed Breast; Male |
EXPOSED_GENITALIA_M | Exposed Genitalia; Male |
Installation:
pip install --upgrade nudenetupdated
Classifier Usage:
# Import module
from nudenet import NudeClassifier
# initialize classifier (downloads the checkpoint file automatically the first time)
classifier = NudeClassifier()
# Classify single image
classifier.classify('path_to_image_1')
# Returns {'path_to_image_1': {'safe': PROBABILITY, 'unsafe': PROBABILITY}}
# Classify multiple images (batch prediction)
# batch_size is optional; defaults to 4
classifier.classify(['path_to_image_1', 'path_to_image_2'], batch_size=BATCH_SIZE)
# Returns {'path_to_image_1': {'safe': PROBABILITY, 'unsafe': PROBABILITY},
# 'path_to_image_2': {'safe': PROBABILITY, 'unsafe': PROBABILITY}}
Detector Usage:
# Import module
from nudenet import NudeDetector
# initialize detector (downloads the checkpoint file automatically the first time)
detector = NudeDetector() # detector = NudeDetector('base') for the "base" version of detector.
# Detect single image
detector.detect('path_to_image')
# fast mode is ~3x faster compared to default mode with slightly lower accuracy.
detector.detect('path_to_image', mode='fast')
# Returns [{'box': LIST_OF_COORDINATES, 'score': PROBABILITY, 'label': LABEL}, ...]
To get started, simply clone the repository and install the dependencies:
poetry install
Once the dependencies are installed, you can start developing your project.
Command | Description |
---|---|
make test | Run your unit tests |
make lint | Lint your code |
make format | Format your code |
make mypy | Run static type checking |
If you have any suggestions for improvements, please feel free to open an issue or submit a pull request.
This project is licensed under the MIT License.
FAQs
Unknown package
We found that NudeNetUpdated 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
A deceptive PyPI package posing as an Instagram growth tool collects user credentials and sends them to third-party bot services.
Product
Socket now supports pylock.toml, enabling secure, reproducible Python builds with advanced scanning and full alignment with PEP 751's new standard.
Security News
Research
Socket uncovered two npm packages that register hidden HTTP endpoints to delete all files on command.