
Security News
Critical Security Vulnerability in React Server Components
React disclosed a CVSS 10.0 RCE in React Server Components and is advising users to upgrade affected packages and frameworks to patched versions now.
movile_sms
Advanced tools
Movile SMS is a gem so you can send sms through the Movile API. It's simple and easy to integrate and start sending your messages.
Add this line to your application's Gemfile:
gem 'movile_sms'
And then execute:
$ bundle
Or install it yourself as:
$ gem install movile_sms
After installing the gem and registering with the movile API, instantiate the Sms class by passing its UserName and AuthenticationToken credentials.
sms = Movile::SMS.new(username: 'Your User Name', access_token: 'Your Access Token')
After instantiating the Sms class by passing the authentication parameters, call the send_message method by passing the number and text parameters.
Ps: It is mandatory to pass the country and state code before the number.
sms.send_message('5511999999999', 'this is my message from movile_sms gem!')
To check the status of your message, you will need to invoke the status_message (uuid) method, passing the uuid returned in the send_message send method.
sms.status_message('xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx')
The following return must be displayed if the uuid is valid.
{
"id":"f9c100ff-aed0-4456-898c-e57d754c439c",
"correlationId":"client-id",
"carrierId":1,
"carrierName":"VIVO",
"destination":"5511900009999",
"sentStatusCode":2,
"sentStatus":"SENT_SUCCESS",
"sentAt":1266660300000,
"sentDate":"2010-02-20T10:05:00Z",
"campaignId":"64",
"extraInfo":"",
}
Bug reports and pull requests are welcome on GitHub at https://github.com/chiligumdev/movile_sms.
FAQs
Unknown package
We found that movile_sms 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
React disclosed a CVSS 10.0 RCE in React Server Components and is advising users to upgrade affected packages and frameworks to patched versions now.

Research
/Security News
We spotted a wave of auto-generated “elf-*” npm packages published every two minutes from new accounts, with simple malware variants and early takedowns underway.

Security News
TypeScript 6.0 will be the last JavaScript-based major release, as the project shifts to the TypeScript 7 native toolchain with major build speedups.