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.
Simple python package to simply use mediapipe face detection.
Install FaceDetector-cc with pip
pip install FaceDetector-cc
import FaceDec
import time
RED = (0, 0, 255)
YELLOW = (0, 255, 255)
timeS, timeE = 0, 0
obj = FaceDec.FaceDetector()
cam = obj.init_cam()
while cam.isOpened():
success, frame = cam.read()
if not success: continue
face_lm, face_bbox = obj.detect_face(frame)
print(face_lm, face_bbox, sep='\n', end='\n\n')
timeE: float = time.time()
fps = int(1 / (timeE - timeS))
timeS = timeE
c.putText(frame, str(f'FPS : {fps}'), (10, 30), 0, 1, YELLOW, 2)
c.imshow('Face Detection : Chanchal Roy', frame)
if c.waitKey(1) & 0xff == ord('q'): break
cam.release()
c.destroyAllWindows()
FAQs
Simple python package to simply use mediapipe face detection.
We found that FaceDetector-cc 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.