Security News
Research
Data Theft Repackaged: A Case Study in Malicious Wrapper Packages on npm
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
ruby module to peep memory of another process.
Add this line to your application's Gemfile:
gem 'peepmem'
And then execute:
$ bundle
Or install it yourself as:
$ gem install peepmem
# Open process (pid = 3657)
handle = Peepmem.open(3657) # => #<Peepmem::Handle: PID=3657>
# Read memory at 0x00400000 as 16-byte string
pointer = handle[0x00400000] # => #<Peepmem::Pointer:0x00000000400000 PID=3657>
pointer['s16'] # => "\x7FELF\x02\x01\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00"
# Read as null-terminated string
pointer['s'] # => "\x7FELF\x02\x01\x01"
# Seek 16 bytes and read memory as 2-byte unsigned integer
pointer += 16
pointer['u2'] # => 2
# Read as 2-byte unsigned integer, 4-byte unsigned integer and
# 8-byte unsigned integer
(pointer + 2)['u2 u4 u8'] # => [62, 1, 4209768]
# Read memory at 0x00400018 as a pointer
pointer = handle[0x00400018]['p'] # => #<Peepmem::Pointer:0x00000000403c68 PID=3657>>
git checkout -b my-new-feature
)git commit -am 'Add some feature'
)git push origin my-new-feature
)FAQs
Unknown package
We found that peepmem 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.
Security News
Research
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
Research
Security News
Attackers used a malicious npm package typosquatting a popular ESLint plugin to steal sensitive data, execute commands, and exploit developer systems.
Security News
The Ultralytics' PyPI Package was compromised four times in one weekend through GitHub Actions cache poisoning and failure to rotate previously compromised API tokens.