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.
@sahilsen/0xsu-js-lib
Advanced tools
Finally, the thing you've been waiting for your entire adult life. Decentralized URL shortener. It's like `goo.gl` except it can't be taken down. It's hosted on [QuikNode](https://quiknode.io/) and integrated with [Wyre](https://www.sendwyre.com/). This i
Finally, the thing you've been waiting for your entire adult life. Decentralized URL shortener. It's like goo.gl
except it can't be taken down. It's hosted on QuikNode and integrated with Wyre. This is the JS client you can use for integration with your web3 front-end.
Install: npm install @jonbiro/0xsu-js-lib --save
Here's how it works:
import Du4e from '@jonbiro/0xsu-js-lib'
let oxsu = new Du4e()
Then it will automatically ask for permissions when necessary and pick up the appropriate version of web3. Now you can do things like, get the long version of a link based on a short slug:
const short = "0x397997"
oxsu.getUrl(short).then(url => {
console.log(url) // https://twitter.com/ETHNewYork/status/1125830316730519556
})
// or with await
let url = await oxsu.getUrl(short) // https://twitter.com/ETHNewYork/status/1125830316730519556
or if you want to redirect the browser:
oxsu.forward("0x397997") // https://twitter.com/ETHNewYork/status/1125830316730519556
or just shorten a URL:
const url = "https://twitter.com/ETHNewYork/status/1125830316730519556"
// with zero config
await oxsu.shortenURL(url) // 0xe8d142c0d547f254be15e4aa3a8b7e45139c7b74e7cf425269d63990bb602a8a
// with more control
oxsu.shortenURL(
url,
{
slug: "vitalik", // [optional] do you know what you want your shortened slug to be?
acct: "0x31D583a494af597B53eB49B62FCaAb4BAF7f2e69", // [optional] do you want to send from some different address?
cb: (txID) => { // [optional] using an older version of web3 lib?
console.log("0xSU TX ID: ", txID) // 0xSU TX ID: 0xe8d142c0d547f254be15e4aa3a8b7e45139c7b74e7cf425269d63990bb602a8a
}
}
)
and then you can listen for a shortenedURL:
oxsu.onURLShorten = (slug) => {
console.log("Slug is ", slug) // Slug is 0x397997
}
or grab all the shortened URLs for a particular Ethereum account:
oxsu.listOfUrls((urls) => {
console.log(urls) // list of short url slugs useable on any forwarder
}) // gets web3 account urls
oxsu.listOfUrls("0x31D583a494af597B53eB49B62FCaAb4BAF7f2e69", (urls) => {
console.log(urls) // list of short url slugs useable on any forwarder
}) // gets web3 account urls
Thanks. This project was made by @jonathanbiro and @bunsen
FAQs
Finally, the thing you've been waiting for your entire adult life. Decentralized URL shortener. It's like `goo.gl` except it can't be taken down. It's hosted on [QuikNode](https://quiknode.io/) and integrated with [Wyre](https://www.sendwyre.com/). This i
The npm package @sahilsen/0xsu-js-lib receives a total of 0 weekly downloads. As such, @sahilsen/0xsu-js-lib popularity was classified as not popular.
We found that @sahilsen/0xsu-js-lib 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.