
Research
Malicious Go “crypto” Module Steals Passwords and Deploys Rekoobe Backdoor
An impersonated golang.org/x/crypto clone exfiltrates passwords, executes a remote shell stager, and delivers a Rekoobe backdoor on Linux.
hostrado-api
Advanced tools
This is the official Hostrado API Ruby Gem to work with Hostrado's API endpoint.
Just install the library on your system by running:
gem install hostrado-api
You will now need an API key that can be generated for every Hostrado account on https://www.hostrado.com. Log in to the Customer Center and navigate to the API Tokens page.
The instructions in the customer center should make it clear what to do next. In case you need assistance, please contact our support and we will assist you on this.
Now that you have installed the library and obtained an API token, you can start using the library. Please check our Wiki page for all available methods in this gem.
Let's make a simple API call to list your domains you're owning on hostrado.com:
require 'hostrado-api'
hostrado_api_token = 'REPLACE_WITH_YOUR_API_TOKEN'
api = HostradoAPI::V1::Connection.new(hostrado_api_token)
api.domains.list.each do |domain|
puts "ID: #{domain.id}, Name: #{domain.name}, TLD: #{domain.tld}, Expires On: #{domain.expires_on}"
end
The output can look like this:
ID: 3, Name: hostrado.com, TLD: com, Expires On: 2020-01-28
ID: 4, Name: hostrado.net, TLD: net, Expires On: 2019-09-07
See how it easy it is? Have fun playing around and don't hesitate reaching out to us by opening a new GitHub issue or using our Forums.
Please also checkout our examples.
Contributions are highly appreciated! Just fork this repository, do your changes and open a new pull request. We also very appreciate bug reports via the issue tracking tool here on GitHub ;-)
FAQs
Unknown package
We found that hostrado-api 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
An impersonated golang.org/x/crypto clone exfiltrates passwords, executes a remote shell stager, and delivers a Rekoobe backdoor on Linux.

Security News
npm rolls out a package release cooldown and scalable trusted publishing updates as ecosystem adoption of install safeguards grows.

Security News
AI agents are writing more code than ever, and that's creating new supply chain risks. Feross joins the Risky Business Podcast to break down what that means for open source security.