
Research
Two Malicious Rust Crates Impersonate Popular Logger to Steal Wallet Keys
Socket uncovers malicious Rust crates impersonating fast_log to steal Solana and Ethereum wallet keys from source code.
Ruby client for the Youtrack REST API
Using bundler:
bundle add youtrack_client
With your permanent token ( see Manage-Permanent-Token):
require 'youtrack'
# 1. create an instance, pass your youtrack instance url and access token
youtrack = Youtrack::Client.new(base_url: "https://example.myjetbrains.com", token: "perm:your-token")
# 2. make requests!
youtrack.users.current.email
# get the current user
youtrack.users.current
# get all users
youtrack.users.all
# search users
youtrack.users.all("query" => "admin")
# get a user by id
youtrack.users.by_id('1-1')
# get all projects
youtrack.projects.all
# search projects
youtrack.projects.all(query: "DEMO")
# get a project by its id
youtrack.projects.by_id('0-0')
# search/list issues
youtrack.issues.search('project: T1')
# get issue by id
youtrack.issues.by_id('T1-2')
# delete an issue
youtrack.issues.delete('2-2')
# create a new issue
youtrack.issues.create({
summary: 'lorem ipsum',
description: 'created using rest api',
project: {
id: '0-0'
}
})
# you can also pass a model instance
youtrack.issues.create(Youtrack::Models::Issue.new(summary: "demo issue",
description: "demo issue description",
project: youtrack.projects.by_id("0-0")))
# execute command for issue(s)
youtrack.issues.command("State Open", youtrack.issues.search("DEMO-12"))
# pass the ids directly
youtrack.issues.command("State Open", %w[T1-1 T1-2 T1-3])
If you encounter any missing features or bugs, you're welcome to open an Issue! PRs are welcome too ;-)
FAQs
Unknown package
We found that youtrack_client 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
Socket uncovers malicious Rust crates impersonating fast_log to steal Solana and Ethereum wallet keys from source code.
Research
A malicious package uses a QR code as steganography in an innovative technique.
Research
/Security News
Socket identified 80 fake candidates targeting engineering roles, including suspected North Korean operators, exposing the new reality of hiring as a security function.