
Research
/Security News
Malicious npm Packages Target WhatsApp Developers with Remote Kill Switch
Two npm packages masquerading as WhatsApp developer libraries include a kill switch that deletes all files if the phone number isn’t whitelisted.
Maui.FreakyControls is a free OSS UI Kit for .NET MAUI which provides a set of controls and utilities to build modern mobile apps.
Add our NuGet package or
Run the following command to add our Nuget to your .Net MAUI app:
Install-Package FreakyControls -Version xx.xx.xx
Add the following using statement and Initialization in your MauiProgram:
using MAUI.FreakyControls.Extensions;
namespace Samples;
public static class MauiProgram
{
public static MauiApp CreateMauiApp()
{
var builder = MauiApp.CreateBuilder();
builder
.UseMauiApp<App>()
.ConfigureFonts(fonts =>
{
fonts.AddFont("OpenSans-Regular.ttf", "OpenSansRegular");
fonts.AddFont("OpenSans-Semibold.ttf", "OpenSansSemibold");
});
// Some of our controls use SkiaSharp and FreakyEffects!
builder.InitializeFreakyControls(useSkiaSharp: true, useFreakyEffects: true);
return builder.Build();
}
}
Now you can use the controls in your app.
Post v0.5.0-pre there will be some breaking changes made to the namespace structure of our controls, anywhere the namespace had the Shared folder mentioned in it, shall be removed, together with the folder itself So the new namespace would be as shown below:
using Maui.FreakyControls.Shared.Enums; //old namespace
using Maui.FreakyControls.Enums; // new namespace
The above applies to all the other sub-folders as well.
Deprecated API's from the previous version have also been removed!
FAQs
Maui.FreakyControls is a free OSS UI Kit for .NET MAUI which provides a set of controls and utilities to build modern mobile apps.
We found that freakycontrols 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
Two npm packages masquerading as WhatsApp developer libraries include a kill switch that deletes all files if the phone number isn’t whitelisted.
Research
/Security News
Socket uncovered 11 malicious Go packages using obfuscated loaders to fetch and execute second-stage payloads via C2 domains.
Security News
TC39 advances 11 JavaScript proposals, with two moving to Stage 4, bringing better math, binary APIs, and more features one step closer to the ECMAScript spec.