Jump to content
View in the app

A better way to browse. Learn more.

Tuts 4 You

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

help with .net

Featured Replies

Posted

Please help me find the true serial:

private void button1_Click(object sender, EventArgs e)

{

if (this.regist_code.Text.ToString() == this.Encrypt(this.cpu_id.Text.ToString()))

{

if (this.RegCDRomSn(this.regist_code.Text.ToString()))

{

MessageBox.Show("Good Boy");

}

else

{

MessageBox.Show("Bad Boy Registry potected");

}

}

else

{

MessageBox.Show("Wrong serial");

}

}

=======================================================================

Encrypt:

protected string Encrypt(string pToEncrypt)

{

string str;

byte[] buffer = new byte[] { 0x19, 0x17, 0x18, 0x19, 0x17, 0x11, 0x15, 0x18 };

byte[] buffer2 = new byte[] { 0x17, 0x19, 0x18, 0x16, 0x17, 0x11, 0x15, 0x18 };

DESCryptoServiceProvider provider = new DESCryptoServiceProvider();

try

{

byte[] bytes = Encoding.Unicode.GetBytes(pToEncrypt);

provider.Key = buffer;

provider.IV = buffer2;

MemoryStream stream = new MemoryStream();

CryptoStream stream2 = new CryptoStream(stream, provider.CreateEncryptor(), CryptoStreamMode.Write);

stream2.Write(bytes, 0, bytes.Length);

stream2.FlushFinalBlock();

StringBuilder builder = new StringBuilder();

foreach (byte num in stream.ToArray())

{

builder.AppendFormat("{0:X2}", num);

}

builder.ToString();

str = builder.ToString();

}

catch

{

str = pToEncrypt;

}

finally

{

provider = null;

}

return str;

}

==============================================================

RegCDRomSn:

public bool RegCDRomSn(string sn)

{

try

{

Registry.LocalMachine.OpenSubKey("Software", true).CreateSubKey("jokemaster").SetValue("jokemaster", sn);

return true;

}

catch

{

return false;

}

}

=================================================================

cpu id:BFEBFBFF00000F29

i don't know what it gona do please give me the serial thanks!!

Algorithm to analyze a certain period of time :o

Create an account or sign in to comment

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.