| Easy Pick |
[Click to reveal]LuaRT is packed in the exe. In runtime, the main.lua script is placed in the %TEMP% folder.
The password is generated in runtime using math.random(1000, 9999). You can see main.lua code below
> local function main()
> math.randomseed()
> local p = math.random(1000, 9999)
> io.write("Enter the password: ")
> local ip = io.read("*n")
> if ip == p then
> print("nice you found it OR bypass it")
> else
> print("password is wrong")
> end
> local time = os.time()
> while os.time() - time <= 1 do
> end
> end
> main()
|
2026-08-09 22:21 |
| XorGate |
[Click to reveal]
Username: ABC
Password: 626160@password
Xor username with 0x23 ("#" character) byte. For example, username "ABC":
A ^ 0x23 = 0x41 ^ 0x23 = 0x62
B ^ 0x23 = 0x42 ^ 0x23 = 0x61
C ^ 0x23 = 0x43 ^ 0x23 = 0x60
Then, concatenate "@password".
P.S. You can see reimplementation in GitHub: https://github.com/internetrvze/XorGate . Lang: C
|
2026-08-08 16:51 |