
Research
Two Malicious Rust Crates Impersonate Popular Logger to Steal Wallet Keys
Socket uncovers malicious Rust crates impersonating fast_log to steal Solana and Ethereum wallet keys from source code.
@eligundry/gatsby-source-goodreads
Advanced tools
Gatsby source that provides Goodreads shelf information.
There are many Gatsby Goodreads sources, why make another? It was fun AND all the sources I'm seeing are using the Goodreads API which is due to be deprecated soon. This plugin scrapes for the publically accessible HTML available on their website. Also, no need to fiddle with API keys to pull the data!
$ npm install -S @eligundry/gatsby-source-goodreads
In gatsby-config.js
:
module.exports = {
plugins: [
{
resolve: '@eligundry/gatsby-source-goodreads',
options: {
userID: 123,
shelves: ['currently-reading', 'read'],
}
}
]
}
Then, you can query it like so (this is what I'm using on my site):
query UseGoodreadsShelves {
currentlyReading: allGoodreadsBook(
filter: { shelf: { eq: "currently-reading" } }
sort: { fields: started, order: DESC }
limit: 6
) {
books: nodes {
title
author
isbn
url
started
coverImage {
childImageSharp {
gatsbyImageData(width: 175, quality: 90)
}
}
}
}
recentlyFinished: allGoodreadsBook(
filter: { shelf: { eq: "read" } }
sort: { fields: finished, order: DESC }
limit: 6
) {
books: nodes {
finished
title
author
isbn
url
started
coverImage {
childImageSharp {
gatsbyImageData(width: 175, quality: 90)
}
}
}
}
}
FAQs
Gatsby source the provides user shelves from GoodReads
We found that @eligundry/gatsby-source-goodreads 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
Socket uncovers malicious Rust crates impersonating fast_log to steal Solana and Ethereum wallet keys from source code.
Research
A malicious package uses a QR code as steganography in an innovative technique.
Research
/Security News
Socket identified 80 fake candidates targeting engineering roles, including suspected North Korean operators, exposing the new reality of hiring as a security function.