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.

Featured Replies

Posted

Difficulty : 5 (?)
Language : C# (.NET)
Platform : Windows
OS Version : Windows 7+
Packer / Protector : EazFuscator v2018.1

Description :

When pressing the "go" button some unknown function takes text from the input box and converts it to something to put in the output box.

Your goal is to unpack the program and provide me with the source code to that function.

Screenshot :

jEilUbA.png

unpack-me.exe

  • 3 weeks later...

    private void btnGo_Click(object sender, EventArgs e)
    {
        this.txtOutput.Text = main.smethod_0(this.txtInput.Text);
    }
    private static string smethod_0(string string_0)
    {
        byte[] bytes = Encoding.UTF8.GetBytes("5myd2VTtPqB7dJ0i");
        byte[] bytes2 = Encoding.UTF8.GetBytes(string_0);
        byte[] bytes3 = new PasswordDeriveBytes("uh oh... looks like i've been unpacked", null).GetBytes(32);
        ICryptoTransform transform = new RijndaelManaged
        {
            Mode = CipherMode.CBC
        }.CreateEncryptor(bytes3, bytes);
        MemoryStream memoryStream = new MemoryStream();
        CryptoStream cryptoStream = new CryptoStream(memoryStream, transform, CryptoStreamMode.Write);
        cryptoStream.Write(bytes2, 0, bytes2.Length);
        cryptoStream.FlushFinalBlock();
        byte[] inArray = memoryStream.ToArray();
        memoryStream.Close();
        cryptoStream.Close();
        return new string(Convert.ToBase64String(inArray).ToArray<char>().Reverse<char>().ToArray<char>()).Replace("=", string.Empty);
    }

unpack-me_.exe

Hi @JustinOOO

Can you post another one but this Time also with Native Code VM for protecting that specific function?!

On 4/27/2018 at 5:30 PM, demon_da said:

Hi @JustinOOO

Can you post another one but this Time also with Native Code VM for protecting that specific function?!

This one is protected with VM Already.

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.