
Research
/Security News
Critical Vulnerability in NestJS Devtools: Localhost RCE via Sandbox Escape
A flawed sandbox in @nestjs/devtools-integration lets attackers run code on your machine via CSRF, leading to full Remote Code Execution (RCE).
Panda.NuGet.BillbeeClient
Advanced tools
A modern .NET library for seamless integration with the Billbee API, using System.Net.Http and System.Text.Json for efficient, dependency-light communication. Provides endpoints for orders, products, customers, shipments, and more.
A modern .NET library for seamless integration with the Billbee API, using System.Net.Http
and System.Text.Json
for efficient, dependency-light communication.
This project was originally forked from billbeeio/billbee-csharp-sdk but now maintains its own independent git history. The library has been completely rewritten to leverage modern .NET libraries and practices.
System.Net.Http
and System.Text.Json
for maximum efficiencyThe package is available on NuGet.org:
dotnet add package Panda.NuGet.BillbeeClient
Or via Package Manager Console:
Install-Package Panda.NuGet.BillbeeClient
using Panda.NuGet.BillbeeClient.Extensions;
public class Startup
{
public void ConfigureServices(IServiceCollection services)
{
services.AddBillbeeApi(new BillbeeApiConfig
{
Username = "your-username",
Password = "your-password",
ApiKey = "your-api-key",
BaseUrl = "https://api.billbee.io"
});
}
}
public class OrderService
{
private readonly IBillbeeClient _billbeeClient;
public OrderService(IBillbeeClient billbeeClient)
{
_billbeeClient = billbeeClient;
}
public async Task<IEnumerable<Order>> GetRecentOrdersAsync()
{
var result = await _billbeeClient.Orders.GetOrdersAsync();
return result.Data;
}
public async Task<Product> GetProductAsync(int productId)
{
var result = await _billbeeClient.Products.GetProductAsync(productId);
return result.Data;
}
}
The BillbeeApiConfig
supports the following properties:
Username
: Your Billbee usernamePassword
: Your Billbee password or API passwordApiKey
: Your Billbee API keyBaseUrl
: The Billbee API base URL (default: https://api.billbee.io)The client includes built-in rate limiting to prevent API quota violations. The rate limiter is implemented as a singleton and will work correctly within a single application instance.
For detailed API documentation, refer to:
Contributions are welcome! Please feel free to submit issues, feature requests, or pull requests.
This project is licensed under the MIT License - see the LICENSE file for details.
Originally forked from billbeeio/billbee-csharp-sdk - thanks to the original contributors for the foundation.
FAQs
A modern .NET library for seamless integration with the Billbee API, using System.Net.Http and System.Text.Json for efficient, dependency-light communication. Provides endpoints for orders, products, customers, shipments, and more.
We found that panda.nuget.billbeeclient demonstrated a healthy version release cadence and project activity because the last version was released less than 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
A flawed sandbox in @nestjs/devtools-integration lets attackers run code on your machine via CSRF, leading to full Remote Code Execution (RCE).
Product
Customize license detection with Socket’s new license overlays: gain control, reduce noise, and handle edge cases with precision.
Product
Socket now supports Rust and Cargo, offering package search for all users and experimental SBOM generation for enterprise projects.