杂项

[jactf]sawed

Posted on 2020-01-31,2 min read

上上下下左左右右BABA
全是awsde组成的字符串


一开始想。替换ab。培根密码。替换出来。字符串没啥意义。放弃
看writeup
a代表左移。
w代表上移
s代表下移
d代表右移
e代表分割
。用matplotlib.pyplot库来进行绘图

import matplotlib.pyplot as plt
with open("sawed.txt","r+") as file:
	content = file.read()

contentListX = []
contentListY = []
x = 0
y = 0
for c in content:
	if c=="a":
		x = x-1
	elif c=="d":
		x = x+1
	elif c=="w":
		y = y+1
	elif c=="s":
		y = y-1
	else:
		continue
	contentListX.append(x)
	contentListY.append(y)
plt.plot(contentListX,contentListY)
plt.show()

以X,Y轴,根据aswd的来进行yx轴的变化。存入数组中。
然后根据xy数组。一一对应。打印出(x,y)(x,y)点组成的图像

恕我眼拙。根本看不出来这是啥子字符串好吧
flag{WASDING>FUN}

下一篇: [jactf]simple_transfer(nsf数据分析)→