美文网首页
实验吧web-NSCTF web200

实验吧web-NSCTF web200

作者: Aluvion | 来源:发表于2018-01-22 13:14 被阅读0次

    题目地址:http://ctf5.shiyanbar.com/web/web200.jpg

    一道自编加密函数的题目,只要写个逆向解密的脚本就好了,贴上脚本


    $str = "a1zLbgQsCESEIqRLwuQAyMwLyq2L5VwBxqGA3RQAyumZ0tmMvSGM2ZwB4tws";

    $str = str_rot13($str);

    $str = strrev($str);

    $str = base64_decode($str);

    $result = '';

    for ($i = 0;$i < strlen($str);$i++){

        $temp = substr($str,$i,1);

        $get = ord($temp) - 1;

        $temp = chr($get);

        $result = $result . $temp;

    }

    $result = strrev($result);

    echo $result;


    运行

    getflag


    the end

    相关文章

      网友评论

          本文标题:实验吧web-NSCTF web200

          本文链接:https://www.haomeiwen.com/subject/lvslaxtx.html