
Research
/Security News
Toptal’s GitHub Organization Hijacked: 10 Malicious Packages Published
Threat actors hijacked Toptal’s GitHub org, publishing npm packages with malicious payloads that steal tokens and attempt to wipe victim systems.
Sisk is a web development framework that is lightweight, agnostic, easy, simple, and robust. The perfect choice for your next project.
You can get started with Sisk here or build the documentation repository here.
For information about release notes, changelogs and API breaking changes, see docs/Changelog.md.
The Sisk core idea is to create a service that runs on the internet and follows the pattern you define. Moreover, Sisk is a framework that adapts to how you want it to work, not the other way around.
Due to its explicit nature, its behavior is predictable. The main differentiator from ASP.NET is that Sisk can be up and running in very few lines of code, avoiding unnecessary configurations, and requiring the minimum setup to get your server working. Additionally, it does not demand any additional .NET SDK packages to develop, as the base package of .NET 6 is sufficient to start your development with Sisk.
It can handle multiple requests asynchronously, provides useful tools to manage and accelerate web development.
using Sisk.Core.Http;
class Program
{
static async Task Main(string[] args)
{
using var app = HttpServer.CreateBuilder(5555).Build();
app.Router.MapGet("/", request =>
{
return new HttpResponse("Hello, world!");
});
await app.StartAsync(); // 🚀 app is listening on http://localhost:5555/
}
}
Sisk can do web development the way you want. Create MVC, MVVC, SOLID applications, or any other design pattern you're interested in.
Read more about Sisk at it's repository or website.Sisk is a web development framework that is lightweight, agnostic, easy, simple, and robust. The perfect choice for your next project.
You can get started with Sisk here or build the documentation repository here.
For information about release notes, changelogs and API breaking changes, see docs/Changelog.md.
The Sisk core idea is to create a service that runs on the internet and follows the pattern you define. Moreover, Sisk is a framework that adapts to how you want it to work, not the other way around.
Due to its explicit nature, its behavior is predictable. The main differentiator from ASP.NET is that Sisk can be up and running in very few lines of code, avoiding unnecessary configurations, and requiring the minimum setup to get your server working. Additionally, it does not demand any additional .NET SDK packages to develop, as the base package of .NET 6 is sufficient to start your development with Sisk.
It can handle multiple requests asynchronously, provides useful tools to manage and accelerate web development.
using Sisk.Core.Http;
using Sisk.Core.Routing;
namespace myProgram;
class Program
{
static void Main(string[] args)
{
var app = HttpServer.CreateBuilder();
app.Router += new Route(RouteMethod.Get, "/", request =>
{
return new HttpResponse(200)
.WithContent("Hello, world!");
});
app.Start();
}
}
Sisk can do web development the way you want. Create MVC, MVVC, SOLID applications, or any other design pattern you're interested in.
Read more about Sisk at it's repository or website.
FAQs
Unknown package
We found that sisk.sslproxy demonstrated a healthy version release cadence and project activity because the last version was released less than 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
Threat actors hijacked Toptal’s GitHub org, publishing npm packages with malicious payloads that steal tokens and attempt to wipe victim systems.
Research
/Security News
Socket researchers investigate 4 malicious npm and PyPI packages with 56,000+ downloads that install surveillance malware.
Security News
The ongoing npm phishing campaign escalates as attackers hijack the popular 'is' package, embedding malware in multiple versions.