Research
Security News
Malicious npm Package Targets Solana Developers and Hijacks Funds
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
github.com/thomashabets/monotonic_clock
monotonic_clock/README
By Thomas Habets thomas@habets.se 2010
Provides access to a clock that always increases at the same rate. Unlike the system time (e.g. gettimeofday()) this will never decrease.
However, if there's no monotonic clock on your system then this library will fall back to gettimeofday().
For more information see: https://blog.habets.se/2010/09/gettimeofday-should-never-be-used-to-measure-time.html
Verified to be working:
Linux clock_gettime() OpenBSD clock_gettime() Solaris clock_gettime() MacOS X mach_absolute_time()
You can either install it like a normal shared library:
./configure
make
sudo make install
Or import it into your project as a git submodule:
cd /path/to/project
git submodule add https://github.com/ThomasHabets/monotonic_clock.git
git submodule init
git submodule update
Add to configure.ac:
AC_CONFIG_SUBDIRS([monotonic_clock])
AC_SEARCH_LIBS([clock_gettime], [rt])
Add to Makefile.am:
SUBDIRS=monotonic_clock
AM_CFLAGS=-I$(top_builddir)/monotonic_clock/include @AM_CFLAGS@
myproghere_LDADD=$(top_builddir)/monotonic_clock/.libs/libmonotonic_clock.a
Send questions/suggestions/patches/rants/0days to synscan@googlegroups.com
FAQs
Unknown package
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
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Security News
Research
Socket researchers have discovered malicious npm packages targeting crypto developers, stealing credentials and wallet data using spyware delivered through typosquats of popular cryptographic libraries.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.