| Very hard antidebug +10 antisystem |
Bro next time u should compile it in release mode not debug if you want make it harder. |
2025-11-12 14:45 |
| rbmm-00 |
what does "Malware called ResumeThread" mean? I think this one is malware. |
2025-07-31 18:07 |
| KeyGen Me! |
I've never seen 5 packers in one executable file. |
2025-07-23 19:02 |
| Anti-debug fixed |
it will throw exception when debugger attached, at least mine works like this |
2025-07-12 13:40 |
| unpack_me_plzzz |
spoiler
correct key - PISCTF{m@pp1n9_1s_fun_but_r3v3rs1n9_1t_1s_4rt!}
|
2025-06-27 20:02 |
| TryCrackMe Hard |
its not an only xor key but also it separates in 3, and algorithmic located in memory that allocated dynamically. |
2024-11-27 06:25 |
| JUMPOUT_0XFF |
"discord_memcpy_1337_crack_me_post" |
2024-10-30 15:14 |
| Very hard challenge |
pass is "553", maybe i will write the solution |
2024-10-30 14:48 |
| VaultCrackme |
YabbaD@bbaD0O47 |
2024-07-30 21:21 |
| ImGUI-CrackME |
cqt+r?9_)*lv0)+ex4rn2fpbh*?w0*50x?b1u?j*bjqv8bem564 |
2024-07-08 12:21 |
| VENIX_VM |
arch |
2024-06-11 08:44 |
| Game activation (10.5 kb crackme) |
KEY-01S and 5 symbols or letter whatever |
2024-05-27 15:11 |
| Venix[HARD] |
"lockcmpxchg8beax" - think it would be a bit harder, solved in 10min literally |
2024-05-27 14:39 |
| Find my password! |
dCD11yGqoTJWxcwIZotS8AeOn |
2024-05-14 15:24 |
| XorMePlz |
0xJam3z |
2024-05-14 14:52 |
| SerialGen (2 kb crackme), write a keygen |
Good cracke, keygen = https://pastebin.com/HVFAkByj |
2024-04-16 14:41 |
| AsTinyAsHard (2.5 kb crackme) |
good crackme, and patch guard also funny |
2024-04-08 12:34 |
| UltraSec |
5b9c2b756e6d250dd780302802b5666590f1cfe32769ebbd26ddf4d65c6fad84 |
2024-03-07 14:20 |
| Find the Flag |
"meilovecats" allocated in 000002A79B8E0000 |
2024-02-09 18:16 |
| pavler4VM |
wdym? |
2024-01-27 18:48 |
| sleighctl - santa's sleigh control utility |
milk and cookies |
2024-01-02 15:14 |
| crackme |
password - kb#fwj1P@bbfb2 |
2023-10-31 15:45 |
| pavler3 |
there no vmp, only obfuscation like in vmp |
2023-08-17 11:46 |
| pavler3 |
i screwed up, sorry |
2023-08-11 17:50 |
| TinyCrackMe |
password - eXcELlEnt |
2023-08-11 07:33 |
| c++ pavler1 |
omfg, im so sorry, i accidentally uploaded pathed exe by me, i’ll post correct one. |
2023-07-04 16:15 |
| Salty's Easy Key Software |
cracked - https://prnt.sc/4j2z3sE8VVvk |
2023-07-02 18:20 |
| Very Hard Crackme |
Eğer bunu görüyorsan şanslısın
cracked - https://prnt.sc/kG5REGZU2xod |
2023-07-02 18:08 |
| WinAPI CrackMe |
import time
import random
v1 = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ"
v0 = int(time.time())
random.seed(v0)
v1 = v1[:37] # set v1[0x25] (37th index) to null terminator
license_31810 = [''] * 10
i = 0
while i |
2023-04-10 13:45 |
| Genuine License Service |
using System;
using System.Security.Cryptography;
using System.Text;
namespace Genuine_License_Service
{
class Program
{
static void Main(string[] args)
{
Console.Write("username: ");
string username = Console.ReadLine();
string licenseKey = GenerateSerialKey(username);
Console.WriteLine("ur key : " + licenseKey);
Console.ReadKey();
}
private static string GenerateSerialKey(string username)
{
byte[] hash = ComputeHash(username);
string key = BitConverter.ToString(hash)
.Replace("-", "")
.Substring(0, 15)
.Insert(5, "-")
.Insert(11, "-");
return key;
}
private static byte[] ComputeHash(string input)
{
using (SHA256 shA256 = SHA256.Create())
{
byte[] bytes = Encoding.UTF8.GetBytes(input);
return shA256.ComputeHash(bytes);
}
}
}
}
|
2023-04-01 18:12 |