
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.
“I keep asking myself... Who could have done a thing like this?”
— Lester Nygaard, Fargo S01
You must initialize either TrackJS or Sentry on the page before calling any of the capture/logging functions, e.g:
<script>
window._trackJs = {
token: "YOUR_TOKEN_HERE"
}
</script>
<script type="text/javascript" src="https://.../tracker.js"></script>
<script type="text/javascript" src="./lester.js"></script>
<script>
var lester = new Lester();
lester.log('Now this will work!');
</script>
It is possible to use multiple instances within a single web page, each using whichever backend you prefer. For example:
const lester1 = new Lester({backend: Lester.TRACKJS});
const lester2 = new Lester({backend: Lester.SENTRY});
This way you can incrementally update code to use Lester and whichever backend you prefer.
Lester
Creates a new Lester instance, allowing you to pass in options.
const lester = new Lester({
backend: 'auto'
});
Name | Description | Default |
---|---|---|
backend | Backend to use. Set to 'sentry' or 'trackjs' to disable autodetection. | 'auto' |
capture
lester.capture(new Error('An error occurred.'));
TrackJS | Sentry |
---|---|
trackJs.track | raven.captureException |
attempt
lester.attempt
allows you to wrap any function to be immediately executed. Behind the scenes, Lester is just wrapping your code in a try...catch
block to record the exception before re-throwing it.
lester.attempt(function() {
foo(bar.baz);
});
TrackJS | Sentry |
---|---|
trackJs.attempt | raven.context |
wrap
lester.wrap
wraps a function in a similar way to lester.context
, but instead of executing the function, it returns a new function.
var myFunction = lester.wrap(function() {
foo(bar.baz);
});
myFunction()
TrackJS | Sentry |
---|---|
trackJs.watch | raven.wrap |
wrapAll
lester.wrapAll
wraps all functions within a given object.
lester.wrapAll(myModel);
lester.wrapAll(new Model());
TrackJS | Sentry |
---|---|
trackJs.watchAll | raven.wrap for each item |
log
Log data to the console.
lester.log('Some data');
TrackJS | Sentry |
---|---|
trackJs.console.log | raven.captureMessage |
set
Set additional metadata to be logged with errors.
lester.set('role', 'editor');
lester.set({ role: 'editor' });
TrackJS | Sentry |
---|---|
trackJs.addMetadata | raven.setExtraContext |
FAQs
In-page tracking facade
We found that lester 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.