
Research
Malicious npm Packages Impersonate Flashbots SDKs, Targeting Ethereum Wallet Credentials
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
astrobinapi
Advanced tools
Node.js AstroBin API library.
Download and install via npm package manager (stable):
npm install astrobinapi
Or clone fresh code directly from git:
git clone https://github.com/kosmodrey/AstroBinAPI.git
cd AstroBinAPI
npm install
'use strict';
const AstroBinAPI = require('astrobinapi');
// Set a new object with your API keys
const astrobin = new AstroBinAPI({
key: '0000000000000000000000000000000000000000',
secret: '0000000000000000000000000000000000000000'
});
// Get Image Of The Day
astrobin.imageOTD({ limit: 1 }).then(result => {
for (let image of result) {
console.log('IOTD:', image);
}
}).catch(error => console.log('Error:', error));
// Find images
astrobin.find({ title: 'luna', limit: 2 }).then(result => {
for (let image of result) {
console.log('Find:', image);
}
// Get next images
return result.next();
}).then(result => {
console.log('Next find:', result.objects);
}).catch(error => console.log('Error:', error));
// Get image
astrobin.image(148462).then(image => {
console.log('Image:', image);
}).catch(error => console.log('Error:', error));
FAQs
Node.js AstroBin API library.
The npm package astrobinapi receives a total of 0 weekly downloads. As such, astrobinapi popularity was classified as not popular.
We found that astrobinapi 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
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
Security News
Ruby maintainers from Bundler and rbenv teams are building rv to bring Python uv's speed and unified tooling approach to Ruby development.
Security News
Following last week’s supply chain attack, Nx published findings on the GitHub Actions exploit and moved npm publishing to Trusted Publishers.