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.
a simple http-server mockup to test web crawler.
Run the folowing to install:
pip install HTTPserver-mock
from src.HTTPserver_mock import HTTPserver_mock
import noizze_crawler as nc
@HTTPserver_mock()
def test_crawler():
(title, desc, image_url, html) = nc.crawler('http://localhost:8000/index.html')
print('title:', title)
print('desc:', desc)
print('image_url:', image_url)
print('html:', html[:1000])
if __name__ == '__main__':
test_crawler()
$ python test.py
127.0.0.1 - - [07/Nov/2019 13:34:55] "GET /index.html HTTP/1.1" 200 -
1573101292.684394 httpserver_mock started
<h2>nope</h2>
1573101296.704611 httpserver_mock finished
FAQs
a simple http-server mockup to test web crawler.
We found that HTTPserver-mock 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.