
Research
Malicious npm Packages Impersonate Flashbots SDKs, Targeting Ethereum Wallet Credentials
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
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.
Research
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
Security News
Ruby maintainers from Bundler and rbenv teams are building rv to bring Python uv's speed and unified tooling approach to Ruby development.
Security News
Following last week’s supply chain attack, Nx published findings on the GitHub Actions exploit and moved npm publishing to Trusted Publishers.