Is there a cipher method that uses 9 digit(starts with 8,9 or else) and 10 digit(only starts with 1)

huangapple go评论51阅读模式
英文:

Is there a cipher method that uses 9 digit(starts with 8,9 or else) and 10 digit(only starts with 1)

问题

1752462448 1933193007 1667526190 1684632419 1869767777 1886400099 1869426529 1953784163 1751999854 1953705777 808924214 943272760 825768241 858992688 876162865 808924214 959918133 892810033 825832761 808726350 1162236485 1412330081 1912602624 这是密码。

我尝试了dcode.fr的Cipher Identifier,它说这是base36。是的,我找到了一些关于它的东西,像是另一种密码。我也试图解码它,但是什么也没得到。

英文:

1752462448 1933193007 1667526190 1684632419 1869767777 1886400099 1869426529 1953784163 1751999854 1953705777 808924214 943272760 825768241 858992688 876162865 808924214 959918133 892810033 825832761 808726350 1162236485 1412330081 1912602624 there is the cipher.

i tried dcode.fr Cipher Identifier and it says this is base36. yes i found something with it like a another cipher. i tried to decode it too but got nothing.

答案1

得分: 0

c = '1752462448 1933193007 1667526190 1684632419 1869767777 1886400099 1869426529 1953784163 1751999854 1953705777 808924214 943272760 825768241 858992688 876162865 808924214 959918133 892810033 825832761 808726350 1162236485 1412330081 1912602624'
b = [bytes.fromhex(f'{int(a):08x}').decode() for a in c.split()]
print(''.join(b).rstrip('\x00'))
英文:

Example in Python for its universal intelligibility:

c = '1752462448 1933193007 1667526190 1684632419 1869767777 1886400099 1869426529 1953784163 1751999854 1953705777 808924214 943272760 825768241 858992688 876162865 808924214 959918133 892810033 825832761 808726350 1162236485 1412330081 1912602624'
b = [bytes.fromhex(
        f'{int(a):08x}').decode() for a in c.split()]
print(''.join(b).rstrip('\x00'))

> https://cdn.discordapp.com/attachments/1074689381891330049/1074697055731195904/NEFRET.rar

Note that b is the following list (with the last element 'r\x00\x00\x00'):

['http', 's://', 'cdn.', 'disc', 'orda', 'pp.c', 'om/a', 'ttac', 'hmen', 'ts/1', '0746', '8938', '1891', '3300', '49/1', '0746', '9705', '5731', '1959', '04/N', 'EFRE', 'T.ra', 'r\x00\x00\x00']

Therefore, wee need to remove all trailing (U+0000, Null) characters (see .rstrip('\x00') in the last line of above code snippet).

huangapple
  • 本文由 发表于 2023年2月14日 03:39:29
  • 转载请务必保留本文链接:https://go.coder-hub.com/75440491.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定