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.
@abetomo/google-drive-cleaner
Advanced tools
A tool to remove files on Google Drive.
% npm install @abetomo/google-drive-cleaner
GMAIL_ADDRESS
.xlsx
% google-drive-cleaner \
-a AUTH_JSON_FILE_PATH \
-q "'GMAIL_ADDRESS' in owners and name contains '.xlsx'"
Because it is dryrun, the file to be deleted is only displayed.
See Search query terms and operators for queries specified with -q
.
Add --no-dryrun
option.
GMAIL_ADDRESS
.xlsx
% google-drive-cleaner \
-a AUTH_JSON_FILE_PATH \
-q "'GMAIL_ADDRESS' in owners and name contains '.xlsx'" \
--no-dryrun
By adding the --no-dryrun
option, the files on the drive are deleted.
'use strict'
const GoogleDriveCleaner = require('@abetomo/google-drive-cleaner')
const googleDriveCleaner = new GoogleDriveCleaner('AUTH_JSON_FILE_PATH')
googleDriveCleaner.clean({
query: 'Query string for searching delete files.',
dryrun: true
})
AUTH_JSON_FILE_PATH
Use GCP service account credentials. You first need to create a service account, download its json key.
FAQs
A tool to remove files on Google Drive.
The npm package @abetomo/google-drive-cleaner receives a total of 5 weekly downloads. As such, @abetomo/google-drive-cleaner popularity was classified as not popular.
We found that @abetomo/google-drive-cleaner 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.