
Security News
Follow-up and Clarification on Recent Malicious Ruby Gems Campaign
A clarification on our recent research investigating 60 malicious Ruby gems.
This is a wrapper for the Skykick Office365 backup API. You can see the API endpoints
Currently only the GET requests to endpoints /Backup and /Alerts are implemented (readonly).
Add this line to your application's Gemfile:
gem 'skykick'
And then execute:
> bundle install
Or install it yourself as:
> gem install skykick
Before you start making the requests to API provide the client id and client secret and email/password using the configuration wrapping.
require 'skykick'
Skykick.configure do |config|
config.client_id = ENV["SKYKICK_CLIENT_ID"]
config.client_secret = ENV["SKYKICK_CLIENT_SECRET"]
end
@client = Skykick.client()
@client.login
dc = @client.datacenters
dc.each do |t|
puts "#{t.name}"
end
# setup configuration
#
client.login
Resource | API endpoint |
---|---|
.auth_token or .login | https://apis.skykick.com/auth/token |
Endpoint for backup related requests
subscriptions = client.subscriptions
Resource | API endpoint |
---|---|
autodiscover | https://apis.skykick.com/Backup/{id}/autodiscover |
datacenters | https://apis.skykick.com/Backup/datacenters |
exchange_mailboxe | https://apis.skykick.com/Backup/{id}/mailboxes/{mailboxId} |
exchange_mailboxes | https://apis.skykick.com/Backup/{id}/mailboxes |
lastsnapshotstats | https://apis.skykick.com/Backup/{backupServiceId}/lastsnapshotstats |
retention_periods | https://apis.skykick.com/Backup/{id}/retentionperiod |
sharePoint_sites | https://apis.skykick.com/Backup/{id}/sites |
sku | https://apis.skykick.com/Backup/{id}/sku |
storage_settings | https://apis.skykick.com/Backup/{id}/storagesettings |
subscription_settings | https://apis.skykick.com/Backup/{id}/subscriptionsettings |
subscriptions | https://apis.skykick.com/Backup/ |
partner_subscriptions(partner_id) | https://apis.skykick.com/Backup/{partner_id} |
Returns Alerts for a provided Email Migration Order ID or Backup service ID.
subscriptions = client.subscriptions
alerts = client.alerts(subscriptions.first.id)
Resource | API endpoint |
---|---|
.alerts | /Alerts |
Bug reports and pull requests are welcome on GitHub.
The gem is available as open source under the terms of the MIT License.
FAQs
Unknown package
We found that skykick 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
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.