
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.
.NET基础库:
ASP .NET Core基础库:
ASP .NET Core组件库:
添加NuGet程序包 ZStack.Extensions
Program.cs
global using Microsoft.Extensions.DependencyInjection;
global using Serilog;
global using ZStack.Core;
var sp = DependencyInjection.CreateConsoleAppServiceProvider(configure => { });
var logger = sp.GetRequiredService<ILogger>()
.ForContext<Program>();
logger.Information("Hello, World!");
添加NuGet程序包 ZStack.AspNetCore
GlobalUsings.cs
global using Furion;
global using ZStack.AspNetCore;
global using App = ZStack.AspNetCore.App;
var builder = WebApplication.CreateBuilder(args).InjectZStack();
var app = builder.Build();
app.Run();
/// <summary>
/// 应用启动配置
/// </summary>
public class Startup : AppStartup
{
/// <summary>
/// 服务配置
/// </summary>
/// <param name="services"></param>
public void ConfigureServices(IServiceCollection services)
{
services.AddControllersWithViews().AddInject();
}
/// <summary>
/// 中间件配置
/// </summary>
/// <param name="app"></param>
/// <param name="env"></param>
public void Configure(IApplicationBuilder app, IHostEnvironment env)
{
...
app.UseRouting();
...
app.UseZStackInject();
}
}
graph TD;
ZStack.Extensions --> ZStack.Core;
ZStack.Core --ASP .NET Core--> ZStack.AspNetCore;
ZStack.AspNetCore --> ZStack.AspNetCore.SqlSugar;
ZStack.AspNetCore --> ZStack.AspNetCore.EventBus;
ZStack.AspNetCore --> ZStack.AspNetCore.Hangfire;
ZStack.AspNetCore.Hangfire --> ..MemoryStorage;
ZStack.AspNetCore.Hangfire --> ..Redis;
ZStack.AspNetCore.Hangfire --> ..PostgreSql;
FAQs
ZStack框架 轻推SDK
We found that zstack.qingtui 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
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.