Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
.. image:: https://img.shields.io/pypi/v/scrapydd.svg :target: https://pypi.python.org/pypi/scrapydd :alt: PyPI Version
.. image:: https://img.shields.io/travis/kevenli/scrapydd/master.svg :target: http://travis-ci.org/kevenli/scrapydd :alt: Build Status
.. image:: https://img.shields.io/codecov/c/github/kevenli/scrapydd/master.svg :target: http://codecov.io/gh/kevenli/scrapydd?branch=master :alt: Coverage report
Scrapydd is a system for scrapy spiders distributed running and scheduleing system, including server and client agent.
By pip::
pip install scrapydd
You can also install scrapydd manually:
github releases
_.python setup.py install
scrapydd server
The server default serve on 0.0.0.0:6800, with both api and web ui. Add --daemon parameter in commmand line to run in background.
scrapydd agent
Add --daemon parameter in commmand line to run in background.
The docs is hosted here
_
.. code-block:: yaml
version: '3'
services:
db:
image: mysql
command: --default-authentication-plugin=mysql_native_password
restart: always
ports:
- "3306:3306"
volumes:
- "datadb:/var/lib/mysql"
environment:
MYSQL_ROOT_PASSWORD: mysqlPassword
MYSQL_DATABASE: scrapydd
MYSQL_USER: scrapydd
MYSQL_PASSWORD: scrapyddPwd
server:
image: "kevenli/scrapydd"
ports:
- "6800:6800"
volumes:
- "./server:/scrapydd"
- "/var/run/docker.sock:/var/run/docker.sock"
command: scrapydd server
agent:
image: "kevenli/scrapydd"
volumes:
- "./agent:/scrapydd"
- "/var/run/docker.sock:/var/run/docker.sock"
links:
- server
environment:
- SCRAPYDD_SERVER=server
command: scrapydd agent
volumes:
datadb:
.. _here: http://scrapydd.readthedocs.org
.. _github releases
: https://github.com/kevenli/scrapydd/releases
FAQs
distributed scrapy spider scheduling system
We found that scrapydd 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
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.