
Security Fundamentals
Turtles, Clams, and Cyber Threat Actors: Shell Usage
The Socket Threat Research Team uncovers how threat actors weaponize shell techniques across npm, PyPI, and Go ecosystems to maintain persistence and exfiltrate data.
== Ruby-GitHub
= DESCRIPTION:
Ruby-GitHub is a simple wrapper library for the evolving GitHub API.
= INSTALLATION:
RubyGem:
sudo gem install ruby-github
GitHub Clone:
git clone git://github.com/mbleigh/ruby-github.git
= DEPENDENCIES:
= SYNOPSIS:
require 'ruby-github'
user = GitHub::API.user('mbleigh') user.name # => "Michael Bleigh" user.repositories # => array of repositories user.repositories.last.name # => "ruby-github" user.repositories.last.url # => "http://GitHub::API.com/mbleigh/ruby-github" user.repositories.last.commits # => requests array of commits (see below)
commits = GitHub::API.commits('mbleigh','ruby-github') commits.first.message # => "Moved GitHub::API.rb to ruby-GitHub::API.rb..." commits.first.id # => "1d8c21062e11bb1ecd51ab840aa13d906993f3f7"
commit = commits.first.detailed commit = GitHub::API.commit('mbleigh', 'ruby-github', '1d8c21062e11bb1ecd51ab840aa13d906993f3f7')
commit.message # => "Moved GitHub::API.rb to ruby-GitHub::API.rb..." commit.added.collect{|c| c.filename} # => ["init.rb", "lib/ruby-GitHub::API.rb"]
Note that the information is less complete in the 'commits' pull than in the pull for an individual commit. calling 'detailed' on a commit retreived from a 'commits' call will make a 'commit' call for that specific commit.
Here's a one-liner that uses all parts of the Ruby-GitHub library:
latest_commit_filenames = GitHub::API.user('mbleigh').repositories.first.commits.first.detailed.modified.collect(&:filename)
= RESOURCES:
= KNOWN ISSUES/FUTURE DEVELOPMENT:
Right now this library isn't spec'ed out, that's the top priority moving forward. It will likely also have to evolve substantially as the GitHub API becomes more mature. If you have any questions or requests, don't hesitate to e-mail me!
FAQs
Unknown package
We found that ruby-github 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 Fundamentals
The Socket Threat Research Team uncovers how threat actors weaponize shell techniques across npm, PyPI, and Go ecosystems to maintain persistence and exfiltrate data.
Security News
At VulnCon 2025, NIST scrapped its NVD consortium plans, admitted it can't keep up with CVEs, and outlined automation efforts amid a mounting backlog.
Product
We redesigned our GitHub PR comments to deliver clear, actionable security insights without adding noise to your workflow.