Marvin
Marvin
CC#
Created by MJT on 9/14/2024 in #help
✅ False Positive Virus Detection on my C# network ping code
normally it even does color highlighting but im too dumb atm
12 replies
CC#
Created by MJT on 9/14/2024 in #help
✅ False Positive Virus Detection on my C# network ping code
public async Task AddPing()
{
Ping p = new();

var reply = await p.SendPingAsync(hostname);

if (reply.Status != IPStatus.Success)
{
Debug.WriteLine(hostname + " error :" + reply.Status.ToString());
}

///////////////////////////// this line triggers the MaxSecure Trojan.Malware.300983.susgen
await AddResult(reply.RoundtripTime);

return;
}

public Task AddResult(long pingresult)
{
_results.Add(pingresult);

return Task.CompletedTask;
}
public async Task AddPing()
{
Ping p = new();

var reply = await p.SendPingAsync(hostname);

if (reply.Status != IPStatus.Success)
{
Debug.WriteLine(hostname + " error :" + reply.Status.ToString());
}

///////////////////////////// this line triggers the MaxSecure Trojan.Malware.300983.susgen
await AddResult(reply.RoundtripTime);

return;
}

public Task AddResult(long pingresult)
{
_results.Add(pingresult);

return Task.CompletedTask;
}
just for better readability
12 replies
CC#
Created by tommy on 9/14/2024 in #help
Why do we enclose the `Main` function inside of a class in C#?
No description
9 replies
CC#
Created by s1.99x on 9/13/2024 in #help
anyone want to make an exucutor for Roblox
ah yes the key system
27 replies
CC#
Created by s1.99x on 9/13/2024 in #help
anyone want to make an exucutor for Roblox
$rule6
27 replies
CC#
Created by s1.99x on 9/13/2024 in #help
anyone want to make an exucutor for Roblox
this is against rule 6
27 replies
CC#
Created by AdriJuxaS on 9/12/2024 in #help
Access is denied problem
just wanna know if you can build in general
36 replies
CC#
Created by AdriJuxaS on 9/12/2024 in #help
Access is denied problem
no no if you right click on the project in vs and rebuild, you can go to the bin folder and locate the exe that was built
36 replies
CC#
Created by AdriJuxaS on 9/12/2024 in #help
Access is denied problem
building and running the exe itself does that work?
36 replies
CC#
Created by AdriJuxaS on 9/12/2024 in #help
Access is denied problem
ur correct its not the code, but then i cant help you, someone else gotta jump in, have u tried running vs as admin?
36 replies
CC#
Created by AdriJuxaS on 9/12/2024 in #help
Access is denied problem
it could defnitely hlep
36 replies
CC#
Created by AdriJuxaS on 9/12/2024 in #help
Access is denied problem
does it say that before even running? or is it actually about a portion of a code where the error occurs?
36 replies
CC#
Created by Strax on 9/12/2024 in #help
2FA? Is it hard to implement?
i use it for one project and still works, last update was Jan 12. And google authenticator isnt really changing much often
45 replies
CC#
Created by Strax on 9/12/2024 in #help
2FA? Is it hard to implement?
you shouldnt use sms 2fa anymore nowadays if you build something new
45 replies
CC#
Created by Strax on 9/12/2024 in #help
2FA? Is it hard to implement?
havent done microsoft before
45 replies
CC#
Created by Strax on 9/12/2024 in #help
2FA? Is it hard to implement?
you just have to implement the logic around that in your specific app structure
45 replies
CC#
Created by Strax on 9/12/2024 in #help
2FA? Is it hard to implement?
i mean i dont know if there is something new better for it, but one library that does all the heavy lifting of actually doing the generating and validating is: https://github.com/BrandonPotter/GoogleAuthenticator
45 replies
CC#
Created by Strax on 9/12/2024 in #help
2FA? Is it hard to implement?
its not hard, just a bit of effort doing all the required endpoints and updating the logic of your already existing ones, but espeically if you only focus on one type of 2FA like google authenticator, its definitely not hard.
45 replies
CC#
Created by Ab on 9/12/2024 in #help
How do I fix this jittery behaviour when calculating distances?
sounds like if your projectile is too fast, it is too far away in one frame, and the next frame already on the other side out of the min dist?
6 replies
CC#
Created by Ash ♡ on 9/10/2024 in #help
✅ Hey i need 2 asp.net project for college
:D
22 replies