Sinisterly
Gold [VS2010 VB.NET Project]: Karpersky Internet Security 2009 Fake Keygen Remake - Printable Version

+- Sinisterly (https://sinister.ly)
+-- Forum: Coding (https://sinister.ly/Forum-Coding)
+--- Forum: Visual Basic & .NET Framework (https://sinister.ly/Forum-Visual-Basic-NET-Framework)
+--- Thread: Gold [VS2010 VB.NET Project]: Karpersky Internet Security 2009 Fake Keygen Remake (/Thread-Gold-VS2010-VB-NET-Project-Karpersky-Internet-Security-2009-Fake-Keygen-Remake)



[VS2010 VB.NET Project]: Karpersky Internet Security 2009 Fake Keygen Remake - miso - 06-17-2020

[Image: _JBpq85yQZaA9QvCLLQ6QA.png]



RE: [VS2010 VB.NET Project]: Karpersky Internet Security 2009 Fake Keygen Remake - mothered - 06-17-2020

You're doing an excellent job with each remake.

I've viewed all your threads, and the tools certainly look better than the original.


RE: [VS2010 VB.NET Project]: Karpersky Internet Security 2009 Fake Keygen Remake - fsociety - 07-09-2020

miso you have knowledge to make account checker in c# ? if yes i also want to learn ...


RE: [VS2010 VB.NET Project]: Karpersky Internet Security 2009 Fake Keygen Remake - miso - 07-09-2020

(07-09-2020, 06:15 AM)fsociety Wrote: miso you have knowledge to make account checker in c# ? if yes i also want to  learn ...
never tried making one


RE: [VS2010 VB.NET Project]: Karpersky Internet Security 2009 Fake Keygen Remake - fsociety - 07-09-2020

(07-09-2020, 12:20 PM)miso Wrote:
(07-09-2020, 06:15 AM)fsociety Wrote: miso you have knowledge to make account checker in c# ? if yes i also want to  learn ...
never tried making one

can you provide the content so i can learn leaving youtube


RE: [VS2010 VB.NET Project]: Karpersky Internet Security 2009 Fake Keygen Remake - miso - 07-09-2020

(07-09-2020, 12:43 PM)fsociety Wrote:
(07-09-2020, 12:20 PM)miso Wrote:
(07-09-2020, 06:15 AM)fsociety Wrote: miso you have knowledge to make account checker in c# ? if yes i also want to  learn ...
never tried making one

can you provide the content so i can learn leaving youtube
wdym, i've never done one


RE: [VS2010 VB.NET Project]: Karpersky Internet Security 2009 Fake Keygen Remake - VioleXOR - 03-19-2021

Thanks Miso, I'm doing .NET so this will come in very handy.
I shall analyse it and try to FUD it.

Thank you so much.


RE: [VS2010 VB.NET Project]: Karpersky Internet Security 2009 Fake Keygen Remake - phyrrus9 - 03-20-2021

(03-19-2021, 06:07 PM)VioleXOR Wrote: Thanks Miso, I'm doing .NET so this will come in very handy.
I shall analyse it and try to FUD it.

Thank you so much.

FUD? You realize all this is is an IL program that generates a pseudorandom number and displays a preprogrammed string that looks like a product key.... It's even way longer than it needs to be... Here's a functional equivalent in C# with no UI

Code:
string[] lst = new string[]
{
    "K5PXQ-X1SW6-2RAMR-ZBM2X",
    "T1JVS-NNMBD-K1QTN-SUBP8",
    "AXFRG-JW6EC-47MP1-HV4EE",
    "F8616-XBS76-FKTZG-4DRA5",
    "F8KG2-9MAD3-7XCGM-98NCH",
    "F9FN7-JUXR6-VPCSB-3Q23Z",
    "FB75A-ZUAAP-G1AWS-NE6KQ",
    "8WMJA-7KW6V-1RVT8-V7S79",
    "8WY77-YRAWM-KFUEP-FRPP1",
    "8XD53-332PB-SKSU1-8EQJ9",
    "M888P-VE2XP-SA373-BX83Y",
    "M8NJ7-A5559-XHUAS-NFTMJ"
};
System.Random r = new();
System.Console.WriteLine(lst[r.Next(lst.Length - 1)]);

And yes, that's a perfectly valid (and complete) C# program (before somebody inevitably tells me im missing all the boilerplate, trust me, im not)


RE: [VS2010 VB.NET Project]: Karpersky Internet Security 2009 Fake Keygen Remake - miso - 03-20-2021

(03-20-2021, 04:50 AM)phyrrus9 Wrote:
(03-19-2021, 06:07 PM)VioleXOR Wrote: Thanks Miso, I'm doing .NET so this will come in very handy.
I shall analyse it and try to FUD it.

Thank you so much.

FUD? You realize all this is is an IL program that generates a pseudorandom number and displays a preprogrammed string that looks like a product key.... It's even way longer than it needs to be... Here's a functional equivalent in C# with no UI

Code:
string[] lst = new string[]
{
"K5PXQ-X1SW6-2RAMR-ZBM2X",
"T1JVS-NNMBD-K1QTN-SUBP8",
"AXFRG-JW6EC-47MP1-HV4EE",
"F8616-XBS76-FKTZG-4DRA5",
"F8KG2-9MAD3-7XCGM-98NCH",
"F9FN7-JUXR6-VPCSB-3Q23Z",
"FB75A-ZUAAP-G1AWS-NE6KQ",
"8WMJA-7KW6V-1RVT8-V7S79",
"8WY77-YRAWM-KFUEP-FRPP1",
"8XD53-332PB-SKSU1-8EQJ9",
"M888P-VE2XP-SA373-BX83Y",
"M8NJ7-A5559-XHUAS-NFTMJ"
};
System.Random r = new();
System.Console.WriteLine(lst[r.Next(lst.Length - 1)]);

And yes, that's a perfectly valid (and complete) C# program (before somebody inevitably tells me im missing all the boilerplate, trust me, im not)
you clearly dont own an air fryer


RE: [VS2010 VB.NET Project]: Karpersky Internet Security 2009 Fake Keygen Remake - HackingRealm - 03-20-2021

Thanks. Nice work. Keep it up...