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.
org.drewcarlson:qbittorrent-client-js
Advanced tools
Kotlin wrapper for the qBittorrent Web API using Ktor.
Multiplatform Kotlin wrapper for the qBittorrent Web API using Ktor.
Features
client
contains all the HTTP code, models
contains only the serializable data modelsFor a comprehensive list of available endpoints and to understand the returned data, see the qBittorrent API Docs.
QBittorrentClient only requires baseUrl
assuming default credentials are used.
val client = QBittorrentClient(
baseUrl = "http://localhost:8080",
username = "admin",
password = "adminadmin",
// When subscribed to a syncing Flow, the API is polled at this rate
syncInterval = 5.seconds,
httpClient = HttpClient(),
dispatcher = Dispatchers.Default,
)
Add a new torrent:
client.addTorrent {
// Add HTTP/Magnet URLs:
urls.add("magnet:?xt=urn:btih:c12fe1c06bba254a9dc9f519b335aa7c1367a88a")
// Or torrent file paths:
torrents.add("~/Downloads/my.torrent")
// Or torrent file names and ByteArrays:
rawTorrents["my.torrent"] = getFileBytes()
// ... configure other optional parameters
savepath = "/downloads"
}
Subscribe to MainData updates:
client.observeMainData()
.collect { mainData ->
println("Server Status: ${mainData.serverState.connectionStatus}")
println("Tracking ${mainData.torrents.size} torrents.")
}
Subscribe to Torrent updates:
client.observeTorrent("c12fe1c06bba254a9dc9f519b335aa7c1367a88a")
.collect { torrent ->
println("${torrent.name} : ${torrent.state}")
}
Note that the maindata
endpoint is only polled at the provided syncInterval
while collecting either the
observeMainData()
or observeTorrent(...)
Flow
s.
When all instances of these Flow
s are completed/cancelled no API endpoints will be called until explicitly requested.
repositories {
mavenCentral()
// (Optional) For Snapshots:
maven(url = "https://s01.oss.sonatype.org/content/repositories/snapshots/")
}
dependencies {
implementation("org.drewcarlson:qbittorrent-client:$qbittorrent_version")
// Optional: Just the data models without the client/http lib.
implementation("org.drewcarlson:qbittorrent-models:$qbittorrent_version")
}
Note: it is required to specify a Ktor client engine implementation. (Documentation)
dependencies {
// Jvm/Android
implementation("io.ktor:ktor-client-okhttp:$ktor_version")
implementation("io.ktor:ktor-client-android:$ktor_version")
// iOS
implementation("io.ktor:ktor-client-darwin:$ktor_version")
// macOS/Windows/Linux
implementation("io.ktor:ktor-client-curl:$ktor_version")
// Javascript/NodeJS
implementation("io.ktor:ktor-client-js:$ktor_version")
}
Copyright (c) 2020 Andrew Carlson
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
FAQs
Kotlin wrapper for the qBittorrent Web API using Ktor.
We found that org.drewcarlson:qbittorrent-client-js demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 0 open source maintainers 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.