
Security News
Follow-up and Clarification on Recent Malicious Ruby Gems Campaign
A clarification on our recent research investigating 60 malicious Ruby gems.
NumberRecognizer is library to recognize mobile phone numbers. It can make educated guesses to correct local numbers into numbers in international format.
require "number_recognizer"
@nc = NumberRecognizer.new("0612345678")
@nc.valid_or_correct_mobile? # => true
@nc.country_name # => "Netherlands"
@nc.country # => "31"
@nc.prefix # => "31"
@nc.local_number # => "612345678"
@nc.normalized_number # => "31612345678"
It does not aim for worldwide coverage and correction, as that is not the problem I'm trying to solve. If you want to add a country, feel free to send me a pull request or create a feature request.
Some countries have some number ranges not covered. The regular expressions cover those, so check lib/number_recognizer.rb for the details.
It is also possible to add your own custom format:
NumberRecognizer.add_format :country => "Utopia", :mobile=>true, :format => /(99)(9\d{8})/, :country_code=>999
Simply install the gem from rubygems:
gem install number_recognizer
If you use Bundler, add it to your Gemfile and the do a bundle install:
gem "number_recognizer"
I use Github issues for this: https://github.com/Narnach/number_recognizer/issues
It scratches my own itch and does not aim to solve everyone's problems. If it works for you, great! If it does not; fork it, patch it and send me a pull request.
Written by Wes 'Narnach' Oldenbeuving in 2009. Licensed under the MIT license.
FAQs
Unknown package
We found that number_recognizer 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.