Posted
I updated konauth to use hwid instead of ip's and made it over all faster!
https://github.com/PooperLegend/KonaAuth
HybridAnalysis
you can find the compiled binaries in the release tab
Tutorial on how to use it.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using KonaAuth;
namespace Test
{
internal class Program
{
static async Task Main(string[] args)
{
int linkvertisekey = 12345;
string Hastebinkey = "";
KAuth kAuth = new KAuth();
if (kAuth.CheckSavedKey().Result)
{
Console.WriteLine("Key is valid");
return;
}
Console.WriteLine(await kAuth.KeyLink(Hastebinkey, linkvertisekey));
string input = Console.ReadLine();
if (kAuth.CheckKey(input).Result)
{
Console.WriteLine("Key is valid");
}
else
{
Console.WriteLine("key is wrong");
}
}
}
}
Dont forget to add the KonaAuth dll as a reference!
Cancel
Post
https://media.discordapp.net/attachments/1074297826219139153/1118491534581567568/Mask_group.png
Replied
Looks nice, good contribution.
Cancel
Post
Replied
i dont have anything to say so heres a reply
edit: you seem to be quite invested in this:
https://i.gyazo.com/dea7a7cf333f51876cb84014636e7b63.png
Cancel
Post
Replied
Nooo bro... why is this all on the client this and no actual database just use a database please
I think you're on the right path, kind of, but please use a backend
Not to downsize your work, but anyone who wants to bypass and knows what they're doing can do so relatively easily, partially because you're doing everything on the client. This is why it's generally better to use backends and do the authentication stuff on the serverside not clientside, which if you do it correctly, is a lot harder to bypass than client systems (but not impossible).
Aside from it being essentially entirely client-based this is pretty good, nice job.
Comments
pooperlegend 0 Reputation
Commented
i will make a server based key system soon!
Cancel
Post
we are dead
Replied
I Will Rewrite Into KonaAuth 2.0 Yes Cause Am Bored.
Cancel
Post
Added
Never Mind I Too Lazy To Rewrite.
Comments
pooperlegend 0 Reputation
Commented
sadge................... very sage
Cancel
Post
Users viewing this thread:
( Members: 0, Guests: 1, Total: 1 )
Comments
pooperlegend 0 Reputation
Commented
thanks i worked hard on it
0