Tuts 4 You注册解密(python)

Posted 临江尘

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Tuts 4 You注册解密(python)相关的知识,希望对你有一定的参考价值。

今天想看个博客,发现一个网站  https://forum.tuts4you.com/register/,注册的时候有个加密码类似于这个

105 144 167 141 162 144 040 123 141 154 153 040 144 145 166 145 154 157 160 145 144 040 141 040 166 141 143 143 151 156 145 040 141 147 141 151 156 163 164 040 167 150 141 164 077

还有这个

127 150 157 040 144 145 166 145 154 157 160 145 144 040 164 150 145 040 107 141 151 141 040 124 150 145 157 162 171 077 

 

搜了下是8进制的ascii码,用python写了个转换代码,再看了下别的语言写的,还是python简短

人生苦短,多用python!

mima = ‘127 150 157 040 144 145 166 145 154 157 160 145 144 040 164 150 145 040 107 141 151 141 040 124 150 145 157 162 171 077‘

m_ = mima.split(‘ ‘)
result = ‘‘
for m in m_:
    result += (chr(int(m, 8)))
print(result)

‘Who developed the Gaia Theory?‘

附加一个貌似有这种问题答案的帖子不是很全凑合看:https://blog.csdn.net/davidhsing/article/details/8300982

 



以上是关于Tuts 4 You注册解密(python)的主要内容,如果未能解决你的问题,请参考以下文章

No compiler is provided in this environment. Perhaps you are running on a JRE rather than a JDK?(代码片

错误记录Android 应用中启动 FlutterActivity 报错 ( have you declared this activity in your AndroidManifest )(代码片

python实现AES加密解密

error: ‘_beginthreadex‘ undeclared (first use in this function); did you mean ‘SDL_beginthread‘?(代码片

Android studio提示Android Gradle plugin requires Java 11 to run. You are currently using Java 1.8.(代码片

Android studio提示Android Gradle plugin requires Java 11 to run. You are currently using Java 1.8.(代码片