
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.
@mishguru/geniuslink
Advanced tools
GeniusLink API wrapper for Node.js
npm install @mishguru/geniuslink
import { initGeniusLink, getTotalLinkClicks } from '@mishguru/geniuslink'
initGeniusLink({
key: process.env.GENIUSLINK_API_KEY,
secret: process.env.GENIUSLINK_API_SECRET,
})
getTotalLinkClicks('vCHktm')
.then(console.log)
All of the following functions can be imported from @mishguru/geniuslink
.
This must be called to declare the API key/secret and initiate the library.
import { initGeniusLink } from '@mishguru/geniuslink'
initGeniusLink({
key: process.env.GENIUSLINK_API_KEY,
secret: process.env.GENIUSLINK_API_SECRET,
})
Create a new group
import { addGroup } from '@mishguru/geniuslink'
const groupName = 'best-links-ever'
addGroup(groupName)
.then((groupId) => {
// groupId === 33118
...
})
Create a new tracked link with a specific group
import { addLinkToGroup } from '@mishguru/geniuslink'
const url = 'https://mish.guru'
const groupId = 12345
addLinkToGroup(url, groupId)
.then((result) => {
// result: { id: 'vCHktm', code: 'h4o0n' }
})
Get the total number of clicks on a specific link
import { getTotalLinkClicks } from '@mishguru/geniuslink'
const id = 'vCHktm'
getTotalLinkClicks(id)
.then((count) => {
// count === 472
...
})
Get details of a group based on the group name
import { getGroupDetailsByName } from '@mishguru/geniuslink'
const name = 'default'
getGroupDetailsByName(name)
.then((group) => {
// group.id === '1234'
...
})
Get details of a group based on the group id
import { getGroupDetailsByName } from '@mishguru/geniuslink'
const id = '1234'
getGroupDetailsBId(id)
.then((group) => {
// group.name === 'default'
...
})
FAQs
> GeniusLink API wrapper for Node.js
The npm package @mishguru/geniuslink receives a total of 0 weekly downloads. As such, @mishguru/geniuslink popularity was classified as not popular.
We found that @mishguru/geniuslink demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 13 open source maintainers 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.