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 Python library to easily iterate public information found by the Facebook Graph API
This library is in a very early stage of development and due to this there no documentation available (besides the source itself :p).
However, if you would like to have a glimpse this is what you've got to do:
from FacebookSearch import *
import pprint
try:
fbo = FacebookSearchOrder()
fbo.setKeywords('NSA')
fb = FacebookSearch(client_id='123', client_secret='I_really_do_like_spiderman_undies')
# or even: FacebookSearch(access_code='NoNeedToCreateOne')
# don't worry if it takes its time - you'll get 500 records
# (this is the maximum amount of records you're able to get from Graph API)
for info in fb.searchGraphIterable(fbo):
pprint.pprint(info)
except FacebookSearchException as e:
print(e)
FAQs
A Python library to easily iterate public information found by the Facebook Graph API
We found that FacebookSearch 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.