西邮linux兴趣小组2014纳新免试题(二)
【第二关】
题目
http://round2.sinaapp.com/
分析
打开后,戳进去发现一句名言,然后下一戳的url提示。

在网页源码中得到Page1024提示,于是写一个脚本
#!/bin/bash url_pre="http://round2.sinaapp.com/"
next=$1
while [ -n "$next" ]
do
url="${url_pre}${next}"
r=`curl -s $url`
next=`echo $r | grep -o -E '.{32}\.html'`
echo "[" $next "]----"
done

几分钟后,URL不在变化,得到 9f5b05cba2b2f85f9409921ccbbef642.html
访问 http://round2.sinaapp.com/9f5b05cba2b2f85f9409921ccbbef642.html
网页源码无任何提示,图片名称为 problem.jpg
用hexedit打开,在尾部发现如下代码
00285D60 0A 0D 0A 0D 0A 0D 0A 0D 0A 0D 0A 0D 0A 0D 0A 5F ..............._
00285D70 5E 2A 28 22 5E 6F 5E 22 2B 28 2A 22 40 5F 40 22 ^*("^o^"+(*"@_@"
00285D80 3E 3E 37 29 29 2D 37 34 3F 70 75 74 63 68 61 72 >>7))-74?putchar
00285D90 28 5F 5E 2A 26 28 22 2D 20 2D 21 22 5B 31 5D 29 (_^*&("- -!"[1])
00285DA0 2D 31 33 3F 2A 28 26 22 3D 5E 5F 5E 3D 38 39 3A -13?*(&"=^_^=89:
00285DB0 35 31 31 32 33 3D 3C 3F 38 3E 3E 3C 3E A3 AD 5F 51123=<?8>><>.._
00285DC0 A3 AD 62 22 5B 5F 5D 2B 34 29 5E 5F 2D 31 3A 31 ..b"[_]+4)^_-1:1
00285DD0 30 29 2C 6D 61 69 6E 28 2A 28 22 5E 6F 5E 79 22 0),main(*("^o^y"
00285DE0 2B 31 29 2D 27 6E 27 2B 5F 29 3A 2A 22 5E 5F 5E +1)-'n'+_):*"^_^
00285DF0 22 3B 67 65 74 63 68 28 29 3B 0D 0A 0D 0A 0D 0A ";getch();......
00285E00 1A
和C代码很相似,直接写入C程序中运行。
#include<stdio.h>
int main(int _)
{
_^*("^o^"+(*"@_@">>7))-74?putchar(_^*&("- -!"[1])-13?*(&"=^_^=89:51123=><>-_-b"[_]+4)^_-1:10),main(*("^o^y"+1)-'n'+_):*"^_^";
return 0;
}
运行结果:8886544455532321��
观察problem.jpg图片上的语句
with my whole heart i choose to believe you
but you will never figure out how it shows
like you'd never know it'll be sunny or rainy tomorrow
passing by my side but not recognizing my smile
still it may be too hard for my heart to hide
luckily i am young to enjoy the process of kinding
luckily it isn't too late to go on looking
i'll give you simple freedom, so just keep soaring
even the final destination is the vast ocean
even the sky is the limit
to my heart the key is your glimmer of amusement in the eyes
just as to my soul the misery is your frown of dread
solving this mystery, it'll take my whole life
having no question at all i will love you till the end of time
cold as snow, or warm as sunshine, it is always the same
well beloved one, can you hear my pary?
尝试2个数字一组,横纵坐标查找字母,未果
尝试2个数字一组,横纵坐标查找单词,未果
尝试1个数字一组,按其所处位置为行号,数字本身为列号
8 believe
8 it
8 or
6 not
5 too
4 young
4 too
4 simple
5 is
5 the
5 key
3 to
2 this
3 question
2 as
1 well
输入tooyoungtoosimple得到 http://sortsth.sinaapp.com/,即第三关
西邮linux兴趣小组2014纳新免试题(二)的更多相关文章
- 西邮linux兴趣小组2014纳新免试题(五)
[第五关] 题目 http://final5.sinaapp.com/ 关注西邮Linux微信平台,得到一个名为a的文件 分析 分析文件a 需要反汇编,拿IDA上,打开后发现key_function及 ...
- 西邮linux兴趣小组2014纳新免试题(一)
[第一关] 题目 0101001001100001011100100010000100011010000001110000000011001111100100000111001100000000000 ...
- 西邮linux兴趣小组2014纳新免试题(四)
[第四关] 题目 http://findakey.sinaapp.com/ Example: String1:FFFF8 5080D D0807 9CBFC E4A04 24BC6 6C840 49B ...
- 西邮linux兴趣小组2014纳新免试题(三)
[第三关] 题目 http://sortsth.sinaapp.com/ 分析 查看网页源码,得知题目让找出6种排序算法,每次刷新或提交序列都变化. 15种算法清单: CountingSort ...
- 西邮Linux兴趣小组2014级免试挑战题
原文链接:西邮Linux兴趣小组2014级免试挑战题 又到了小组纳新的季节^_^,时间过的真快! 想起去年这会儿自己做免试题的时候根本找不着北@_@ 有幸今年能够在这里和大家分享免试挑战题,也正如我 ...
- 西邮Linux兴趣小组2014级免试挑战题 (续)
在上一篇的博客中已经解到第四关了,现在继续挑战-- [ 第四关] 在上一关解压成功后,生成了一个file文件.用vim的二进制格式打开,转成十六进制,发现文件头格式如下: 是个以ELF字符开头的文件, ...
- 西邮Linux兴趣小组2016免试题
4.28的宣讲会圆满结束(就在写这段话之前不久),对于西邮Linux兴趣小组这一次纳新,身为局外人表示:还是有历史,还是会玩,还是厉害哈. 华丽的分割线里面是自己之前的攻关战略,最后补充了宣讲会上学长 ...
- 优客源创会 西安站 西邮Linux兴趣小组
2016年5月19日晚7:00,优客源创会西安站在西安邮电大学长安校区东区教学楼FF305如期举行,西安邮电大学计算机学院教授.西邮Linux兴趣小组指导老师陈莉君.王小银老师和来自开源中国的周凯先生 ...
- 2016西邮Linux兴趣小组大事记
2016年还有半个小时就结束了,前面把自己9月做的规划拿出来完善了下,觉得真的是不容易的一年,所有的事情只有自己经历过才会有不一样的感受,世上无难事,只怕有心人. 这是我九月份制定的计划: 下面是20 ...
随机推荐
- Win10各版本区别
Win10各版本之间的区别.. ------------------- =============================================功能最强大的,不是日后绝大多数中国用户 ...
- js获得时间new Date()整理
Date对象取得年份有两种方法:getFullYear()和getYear() 经测试var dt = new Date(); //alert(new Date())弹出:Thu Aug 24 201 ...
- ExtJs6获取form里的数据
1.PanoramForm.js form的items部分 items: [{ xtype: 'form', id:'customerF', modelValidation: true, defaul ...
- JavaScript操作DOM节点
DOM (文档对象模型(Document Object Model)) 文档对象模型(Document Object Model,简称DOM),是W3C组织推荐的处理可扩展标志语言的标准编程接口.在网 ...
- 互联网世界中的C语言——我的golang学习笔记:1(基础语法快速过)
前言 学习任何知识都会有一个学习背景 最近,我们团队乃至我司整个云服务,上go的呼声越来越高!新服务已经开始用go开发,部分现有Java版的服务重构为go也只是时间问题而已,故相关技术积累势在必行!在 ...
- 32位汇编第二讲,编写窗口程序,加载资源,响应消息,以及调用C库函数
32位汇编第二讲,编写窗口程序,加载资源,响应消息,以及调用C库函数 (如果想看所有代码,请下载课堂资料,里面有所有代码,这里会讲解怎么生成一个窗口程序) 一丶32位汇编编写Windows窗口程序 首 ...
- 【找不到与请求 URI匹配的 HTTP 资源】(转)
在.net下,创建一个HTTP服务,有很多方案,比较老ashx,一般处理程序(HttpHandler), Web Service SOAP协议的,数据格式是XML,HTTP协议 WCF ...
- 关于SpringMVC项目报错:java.io.FileNotFoundException: Could not open ServletContext resource [/WEB-INF/xxxx.xml]
关于SpringMVC项目报错:java.io.FileNotFoundException: Could not open ServletContext resource [/WEB-INF/xxxx ...
- 关于selenium IDE找不到元素
selenium IDE ,明明存在元素,却找不到元素 ,报错Element not found 标签: seleniumselenium IDE自动化测试ide 2016-10-31 13:25 1 ...
- 201521123091 《Java程序设计》第10周学习总结
Java 第十周总结 第十周的作业. 目录 1.本章学习总结 2.Java Q&A 3.码云上代码提交记录及PTA实验总结 1.本章学习总结 1.1 以你喜欢的方式(思维导图或其他)归纳总结异 ...