Exetools

Exetools (https://forum.exetools.com/index.php)
-   Source Code (https://forum.exetools.com/forumdisplay.php?f=46)
-   -   JustMapzz Kg source (https://forum.exetools.com/showthread.php?t=18303)

e0qs 07-02-2017 21:38

JustMapzz Kg source
 
JustMappz Keygen Source
.NET / C#
DES+Base64

Code:

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.Security.Cryptography;

namespace WindowsFormsApplication3
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }

                private static byte[] key = new byte[]
                {
                        7,
                        2,
                        3,
                        4,
                        1,
                        6,
                        7,
                        8
                };

        public static string CryptThis(string text)
        {
            SymmetricAlgorithm symmetricAlgorithm = DES.Create();
            ICryptoTransform cryptoTransform = symmetricAlgorithm.CreateEncryptor(key, iv);
            byte[] bytes = Encoding.Unicode.GetBytes(text);
            byte[] inArray = cryptoTransform.TransformFinalBlock(bytes, 0, bytes.Length);
            return Convert.ToBase64String(inArray);
        }

        public string randomStr()
        {
            Random random = new Random();
            return random.Next(1, 9999999).ToString().PadLeft(5);
        }
       
        private void button1_Click(object sender, EventArgs e)
        {
            string p3, p4, p5, p6 ,fP;

            p3 = randomStr() + "TSRhTEAM@KEYGENFACT.COM";
            p4 = "TSRh TEAM                    " + randomStr();
            p5 = "1234567812345678";
            p6 = DateTime.Today.AddYears(99).ToShortDateString();

            fP =  p3 + p4 + p5 + p6.Substring(0, 10);

            textBox1.Text = CryptThis(fP);
        }

        private void button2_Click(object sender, EventArgs e)
        {

            Clipboard.SetText(textBox1.Text);
        }
    }
}

eq

ontryit 07-03-2017 18:14

JustMapzz v3.3.3
the ultimate geo browser

Homepage: http://www.justmapzz.com/
Download: http://www.justmapzz.com/downloads/J...etup_3.3.3.exe

ontryit 07-03-2017 20:47

Quote:

Originally Posted by e0qs (Post 109674)
JustMappz Keygen Source
.NET / C#
DES+Base64

Code:

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.Security.Cryptography;

namespace WindowsFormsApplication3
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }

                private static byte[] key = new byte[]
                {
                        7,
                        2,
                        3,
                        4,
                        1,
                        6,
                        7,
                        8
                };

        private static byte[] iv = new byte[]
                {
                        1,
                        2,
                        6,
                        4,
                        5,
                        6,
                        7,
                        8
                };


        public static string CryptThis(string text)
        {
            SymmetricAlgorithm symmetricAlgorithm = DES.Create();
            ICryptoTransform cryptoTransform = symmetricAlgorithm.CreateEncryptor(key, iv);
            byte[] bytes = Encoding.Unicode.GetBytes(text);
            byte[] inArray = cryptoTransform.TransformFinalBlock(bytes, 0, bytes.Length);
            return Convert.ToBase64String(inArray);
        }

        public string randomStr()
        {
            Random random = new Random();
            return random.Next(1, 9999999).ToString().PadLeft(5);
        }
       
        private void button1_Click(object sender, EventArgs e)
        {
            string p3, p4, p5, p6 ,fP;

            p3 = randomStr() + "TSRhTEAM@KEYGENFACT.COM";
            p4 = "TSRh TEAM                    " + randomStr();
            p5 = "1234567812345678";
            p6 = DateTime.Today.AddYears(99).ToShortDateString();

            fP =  p3 + p4 + p5 + p6.Substring(0, 10);

            textBox1.Text = CryptThis(fP);
        }

        private void button2_Click(object sender, EventArgs e)
        {

            Clipboard.SetText(textBox1.Text);
        }
    }
}

eq

The keygen working well, just wanna ask why the "e-mail: TSRhTEAM@KEYGENFACT.COM didn't displayed in the program About?

niculaita 07-03-2017 23:34

please upload compile keygen file

sendersu 07-04-2017 00:05

Hi

I've tried to build it, but

this kg has a bug

http://prntscr.com/fr4zvg

looks like it's locale dependent!

Debugger 07-04-2017 01:27

Quote:

Originally Posted by niculaita (Post 109693)
please upload compile keygen file

Here compiled keygen.

Download compiled keygen:
Code:

http://www70.zippyshare.com/v/6KUFrst4/file.html
Image of compiled working keygen:
Code:

https://s11.postimg.org/67xmh9fpv/keygen.png

sendersu 07-04-2017 06:01

Quote:

Originally Posted by Debugger (Post 109700)
Here compiled keygen.

Download compiled keygen:
Code:

http://www70.zippyshare.com/v/6KUFrst4/file.html
Image of compiled working keygen:
Code:

https://s11.postimg.org/67xmh9fpv/keygen.png

exactly as forecasted - crashing! :D

http://prntscr.com/fr9hql


here is a stack track - the food for your mind :)

See the end of this message for details on invoking
just-in-time (JIT) debugging instead of this dialog box.

************** Exception Text **************
System.ArgumentOutOfRangeException: Index and length must refer to a location within the string.
Parameter name: length
at System.String.Substring(Int32 startIndex, Int32 length)
at KeyGen.Form1.button1_Click_1(Object sender, EventArgs e)
at System.Windows.Forms.Control.OnClick(EventArgs e)
at System.Windows.Forms.Button.OnClick(EventArgs e)
at System.Windows.Forms.Button.OnMouseUp(MouseEventArgs mevent)
at System.Windows.Forms.Control.WmMouseUp(Message& m, MouseButtons button, Int32 clicks)
at System.Windows.Forms.Control.WndProc(Message& m)
at System.Windows.Forms.ButtonBase.WndProc(Message& m)
at System.Windows.Forms.Button.WndProc(Message& m)
at System.Windows.Forms.Control.ControlNativeWindow.OnMessage(Message& m)
at System.Windows.Forms.Control.ControlNativeWindow.WndProc(Message& m)
at System.Windows.Forms.NativeWindow.Callback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam)


************** Loaded Assemblies **************
mscorlib
Assembly Version: 4.0.0.0
Win32 Version: 4.6.81.0 built by: NETFXREL2
CodeBase: file:///C:/Windows/Microsoft.NET/Framework/v4.0.30319/mscorlib.dll
----------------------------------------
KeyGen
Assembly Version: 1.0.0.0
Win32 Version: 1.0.0.0
CodeBase: file:///E:/KeyGen.exe
----------------

niculaita 07-04-2017 13:48

Trojan:Win32/Fuery.B!cl ??? or I already have this before?

cybercoder 07-04-2017 14:04

Just crashes...

Debugger 07-04-2017 15:47

Quote:

Originally Posted by niculaita (Post 109705)
Trojan:Win32/Fuery.B!cl ??? or I already have this before?

No virus i Guarantee that. May be name of exe is keygen.exe, antivirus are picking it may be. Try changing that.

Debugger 07-05-2017 02:18

Quote:

Originally Posted by sendersu (Post 109703)
exactly as forecasted - crashing! :D

http://prntscr.com/fr9hql


here is a stack track - the food for your mind :)

See the end of this message for details on invoking
just-in-time (JIT) debugging instead of this dialog box.

************** Exception Text **************
System.ArgumentOutOfRangeException: Index and length must refer to a location within the string.
Parameter name: length
at System.String.Substring(Int32 startIndex, Int32 length)
at KeyGen.Form1.button1_Click_1(Object sender, EventArgs e)
at System.Windows.Forms.Control.OnClick(EventArgs e)
at System.Windows.Forms.Button.OnClick(EventArgs e)
at System.Windows.Forms.Button.OnMouseUp(MouseEventArgs mevent)
at System.Windows.Forms.Control.WmMouseUp(Message& m, MouseButtons button, Int32 clicks)
at System.Windows.Forms.Control.WndProc(Message& m)
at System.Windows.Forms.ButtonBase.WndProc(Message& m)
at System.Windows.Forms.Button.WndProc(Message& m)
at System.Windows.Forms.Control.ControlNativeWindow.OnMessage(Message& m)
at System.Windows.Forms.Control.ControlNativeWindow.WndProc(Message& m)
at System.Windows.Forms.NativeWindow.Callback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam)


************** Loaded Assemblies **************
mscorlib
Assembly Version: 4.0.0.0
Win32 Version: 4.6.81.0 built by: NETFXREL2
CodeBase: file:///C:/Windows/Microsoft.NET/Framework/v4.0.30319/mscorlib.dll
----------------------------------------
KeyGen
Assembly Version: 1.0.0.0
Win32 Version: 1.0.0.0
CodeBase: file:///E:/KeyGen.exe
----------------

I tried changing my Date time and Location to UTC and London, then generating serial, It still works.

Anyway if you still finding it crashing just change the code line
from
Code:

fP = p3 + p4 + p5 + p6.Substring(0,10);
to
Code:

fP = p3 + p4 + p5 + p6;
I tried and registered with success.

Let me know if it works for you.

TechLord 07-05-2017 05:38

Working Keygen
 
Working KEYGEN attached (TESTED) :)

See screenshot here :D

sendersu 07-06-2017 01:33

Well,
I'd rather call it NON-working..... :(

http://prntscr.com/fs0wd4

e0qs 07-06-2017 06:37

Check TSRh rls page my friends.
The keygen need .NET 4.0 Rountimes maybe thats why u have problems ? i can leter check if ive time or upload my project if i find it hehehe

Code:

http://tsrh.freeserials.com/mirrors.php?justmapzz.v3.3.1.keygen-tsrh.zip

TechLord 07-06-2017 08:06

Quote:

Originally Posted by sendersu (Post 109718)
Well,
I'd rather call it NON-working..... :(

http://prntscr.com/fs0wd4

You saw the screenshot above in my post ! You obviously need the .Net v4 Client Runtime ! :(

Please check if your system has the required runtimes etc ! Please post a stack trace or something (as you did for the other post) before you claim that something is not working without checking out your system first ! Thank you.


All times are GMT +8. The time now is 12:30.

Powered by vBulletin® Version 3.8.8
Copyright ©2000 - 2024, vBulletin Solutions, Inc.
Always Your Best Friend: Aaron, JMI, ahmadmansoor, ZeNiX