How to get the right form of this?!
-
Hello guys hope you're all doing well.
I'm facing a problem here which is in the post data, the email shown as I typed it but the password changes as appears in the picture, so is there any function or trick to get the right change that happen to the letters and digits?
The original text of the symbols in the picture is: DZDZ-2020
Any help is very appreciated.
-
It looks like a simple shift cipher, but I don't know if the shift is gonna be constant from request to request. Anyways you can achieve this through TRANSLATE block and then an UrlEncode
-
To further explain what I mean:
D
got translated to %3A (which is the:
character)
Z
got translated to8
-
got translated to %27 (which is the'
character)
2
got translated toP
0
got translated toN
You have to find both the dictionary and the shift key (if it's constant, which I assume it is). Do some tests and you'll get it eventually.
-
@Ruri What about the other letters and digits, and what do you mean by shift cipher? I'm not that good knowledge.
-
@Ruri I tried again with one letter "d" capital and small (D) & (d) and I got the small d with this letter "N" and the capital D with this "n"
-
Okay so the key probably changes. Read this https://www.khanacademy.org/computing/computer-science/cryptography/ciphers/a/shift-cipher
-
@Ruri I read it all but it looks a little bit complicated, thanks BTW.
-
This post is deleted!