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.
Mimoco (MInitest MOdels COntrollers) DRY your tests by specifying some (trivial) of them via a table.
Mimoco doesn't replace the "assert"s of MiniTest. It is more a kind of a quick and dirty check. Still, it has demonstrated to be useful, in particular, to detect code changes which often went unseen.
As usual:
# Gemfile
gem "mimoco"
and run "bundle install".
require "test_helper"
require "mimoco"
class ModelsTest < Minitest::Test
def test_some
models = {
Order => {
valid: {name: "Name", qty: 123},
invalid: {qty: :abc},
class_methods: %i[class_method],
call_class_methods: %i[class_method],
public_methods: %i[public_method],
call_public_methods: %i[public_method]
},
Article => ...
}
check_models models
end
end
Furthermore, "valids" and "invalids" accepts an array of hashes to create models to be checked.
"call_public_methods" requires a "valid" item to instantiated a model used to applicate the methods.
require "test_helper"
require "mimoco"
class ControllersTest < ActionDispatch::IntegrationTest
def test_some
controllers = {
OrdersController => {
respond_to: %i[create destroy edit index new show update],
class_methods: %i[class_method],
call_class_methods: %i[class_method],
public_methods: %i[create destroy edit index new show update]
}
ArticlesController => ...
}
check_controllers controllers
end
end
Rails magic adds a few additional methods to a model or a controller (e.g. #column_headers).
MiMoCo ignores them, but future versions of Rails may add more. They can be ignored by:
check_models models, ignore_methods: magic_method
...
check_controllers controllers, ignore_methods: %i[magic2 magic3]
Copyright (c) 2022-2024 Dittmar Krall (www.matiq.com), released under the MIT license.
FAQs
Unknown package
We found that mimoco demonstrated a healthy version release cadence and project activity because the last version was released less than 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.