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.
ca-dmv-poller
Advanced tools
A tool to poll multiple DMV locations and find the earliest available appointment time.
A developer API to access the CA DMV appointment system
NOTE: This is a developer API. Use CA DMV Appointment FastFinder, an Android app, if you just want to get an appointment.
Install this module like any other npm package:
$ npm install ca-dmv-poller
const Poller = require('ca-dmv-poller')
const poller = new Poller({
itemsToProcess: 1, // Number of items user would like to process
maxDistanceMiles: 15, // Distance from home location to search for DMV Offices
// Provide zipCode, coords, or address
zipCode: '95630', // or
coords: {
lat: '38.733792',
lng: '-121.141315'
} // or
address: '1600 Amphitheatre Pkwy, Mountain View, CA 94043',
mode: 'OfficeVisit', // or 'DriveTest'
// CID: Apply for, replace, or renew a California DL/ID
// RID: Apply for, replace, or renew a REAL ID
// VR: Register or title a vehicle or vessel (boat)
appointmentTypes: ['CID'],
// User's appointment information
appointmentInfo: {
appointmentInfo: {
firstName: 'John',
lastName: 'Doe',
telArea: '123',
telPrefix: '456',
telSuffix: '7890',
birthDay: '01',
birthMonth: '01',
birthYear: '2001',
dlNumber: 'I0004567', // AKA Permit Number
requestedTask: 'DT', // (automobile) or 'MC' (motorcycle),
safetyCourseCompletedSelection: 'TRUE' // or 'FALSE', motorcycle test only
}
}
})
poller
.check()
.then(results => {
results.forEach(result => {
if (result.hasFailed) {
console.log(
`The request to ${result.location} (id ${
result.id
}) failed because: ${result.cause}`
)
return
}
console.log('Day of appointment: ', result.date)
console.log('Days until appointment: ', result.daysUntil)
console.log('Location of appointment: ', result.location)
})
})
.catch(e => console.error(e))
Special Thanks to Michael Vartan and his tool, ca-dmv-poller, for inspiration and initial implementation of this app.
FAQs
A tool to poll multiple DMV locations and find the earliest available appointment time.
The npm package ca-dmv-poller receives a total of 1 weekly downloads. As such, ca-dmv-poller popularity was classified as not popular.
We found that ca-dmv-poller demonstrated a not healthy version release cadence and project activity because the last version was released 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.