
Security News
Follow-up and Clarification on Recent Malicious Ruby Gems Campaign
A clarification on our recent research investigating 60 malicious Ruby gems.
Using SHA1 encryption and the current time, this gem generates a random string that is useful for API keys. The length of the string can be set as an attribute up to 39 characters in length. This is my attempt at creating a gem.
Add to your Gemfile and run the bundle
command to install it.
gem "api_key_maker"
Requires Ruby 1.9.2 or later.
Whenever you need to generate a key, just call the following method:
ApiKeyMaker.make_api_key(10)
The first parameter tells what length you want the key to be. It defaults to 10 characters, but can go up to 39 characters in length.
If you want an attribute of a model to default to an api key, then just add the following in your model:
class ApiAccess < ActiveRecord::Base
make_api_key :api_token, 13
end
This method takes 2 parameters. The first is the attribute that will be set to the api key. The second is the length (1-39 defaults to 10) of the string you want. This api key is generated before the model's validation.
Questions or problems? Please post them on the issue tracker. You can contribute changes by forking the project and submitting a pull request. You can ensure the tests passing by running bundle
and rake
.
This gem is created by Johnathan Pulos and is under the MIT License.
FAQs
Unknown package
We found that api_key_maker 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
A clarification on our recent research investigating 60 malicious Ruby gems.
Security News
ESLint now supports parallel linting with a new --concurrency flag, delivering major speed gains and closing a 10-year-old feature request.
Research
/Security News
A malicious Go module posing as an SSH brute forcer exfiltrates stolen credentials to a Telegram bot controlled by a Russian-speaking threat actor.