Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Welcome to GitWrap! A simple client wrapper that interacts with the GitHub API. What does it do? It basically renders public data from Users, Repositories and Organizations. These include name, email, location, stars, etc.
Add this line to your application's Gemfile:
gem 'gitwrap'
And then execute:
$ bundle
Or install it yourself as:
$ gem install gitwrap
After installing the gem just include it in your gemfile and off you go!
The objects are generated automatically. They have a base url to connect to and retrieve data via the DataCreator module, which parses and returns corresponding objects to the method calls.
Each object method is listed here:
user = Gitwrap::User::fetch_single_user(username)
users = Gitwrap::User::fetch_all_users(since_id)
users = Gitwrap::User::fetch_users_by_location(location)
users = Gitwrap::User::fetch_users_by_language(language)
users = Gitwrap::User::fetch_users_by_location_and_language(location, language)
org = Gitwrap::Org::fetch_single_org(organization_name)
org = Gitwrap::Org::fetch_all_orgs(since_id)
## Repos
repos = Gitwrap::Repo::fetch_user_repos(username)
repos = Gitwrap::Repo::fetch_org_repos(organization_name)
repos = Gitwrap::Repo::fetch_all_repos(since_id)
repo = Gitwrap::Repo::fetch_single_repo(repo_owner, repo_name)
repos = Gitwrap::Repo::fetch_repos_by_language(language)
Using the wrapper is simple. Just declare your new objects:
user = Gitwrap::User::fetch_single_user(username)
And call the desired methods:
user.name
user.email
user.location
Each class (Users, Repos and Orgs) has its unique attributes.
Users have:
user.name
user.email
user.location
user.username
user...
Organizations have:
org.id
org.name
org.site
org.location
org.public_repos
org.followers
org.members
org...
Repos have:
repo.name
repo.url
repo.language
repo.stars
repo...
It is worth noting that due to the Github API format, not all attributes are available to every method call.
##Author
###Oscar Elizondo
##Current Version Version 2.5.0
The gem is available as open source under the terms of the MIT License.
FAQs
Unknown package
We found that gitwrap 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
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.