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.
This gem is an extension to paper_trail gem https://github.com/airblade/paper_trail. That means you need to pre install paper_trail
gem. This gem will add one more method actor
to instances of PaperTrail::Version
that will return you the ActiveRecord
object who was responsible for change.
This Gem only support >= rails 4.1.0
and above versions.
Gemfile
.gem 'paper_trail_actor'
bundle install
Basically this gem works on stroring global_id to whodunnit field of PaperTrail::Version table
. As this is an additional extension installed, this will not hinder / break existing paper_trail functionalities.
widget = Widget.find 42
widget.versions # [<PaperTrail::Version>, <PaperTrail::Version>, ...]
v = widget.versions.last
Now you can also store object to PaperTrail.whodunnit=
, and if object will be instance of ActiveRecord::Base
it will store the global id in the version's whodunnit
column.
And you can also retrieve the actually object later just by using method actor
.
actor = actor_paper_trail
PaperTrail.whodunnit = actor
PaperTrail.actor
widget.update_attributes :name => 'Wibble'
widget.versions.last.actor
git checkout -b my-new-feature
)git commit -am 'Add some feature'
)git push origin my-new-feature
)FAQs
Unknown package
We found that paper_trail_actor 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.