[TWCTF] superexpress

Posted p201721410013

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了[TWCTF] superexpress相关的知识,希望对你有一定的参考价值。

#problem.py
import sys
key = ‘****CENSORED***************‘
flag = ‘TWCTF{*******CENSORED********}‘

if len(key) % 2 == 1:
    print("Key Length Error")
    sys.exit(1)

n = len(key) / 2
encrypted = ‘‘
for c in flag:
    c = ord(c)
    for a, b in zip(key[0:n], key[n:2*n]):
        c = (ord(a) * c + ord(b)) % 251
    encrypted += ‘%02x‘ % c

print encrypted

  

这道题目和星盟训练赛里最后一道crypto一样

都是化简同余式

str1 = ‘805eed80cbbccb94c36413275780ec94a857dfec8da8ca94a8c313a8ccf9‘.decode(‘hex‘)
print str1
import gmpy2
inv = gmpy2.invert(156,251)
print inv
str2 = ‘‘
for i in str1:
	str2 += chr(((ord(i)-76)*int(inv))%251)
print str2

  

以上是关于[TWCTF] superexpress的主要内容,如果未能解决你的问题,请参考以下文章

python TWCTF2017 - simple_note

攻防世界 reverse 进阶 10 Reverse Box

微信小程序代码片段

VSCode自定义代码片段——CSS选择器

谷歌浏览器调试jsp 引入代码片段,如何调试代码片段中的js

片段和活动之间的核心区别是啥?哪些代码可以写成片段?