ICode9

精准搜索请尝试: 精确搜索
  • pythonchallenge Level 112021-12-07 10:06:26

    第11关地址:http://www.pythonchallenge.com/pc/return/5808.html 账号:huge 密码:file 打开是一张模糊的图 标题是 odd even 查看源码没有其他提示信息 这是两张图叠到一起,需要按照奇偶像素点分成两张图 from PIL import Image im = Image.open("cave.jpg") (width, height) = im

  • pythonchallenge Level 102021-12-07 10:05:47

    第10关地址:http://www.pythonchallenge.com/pc/return/bull.html 账号:huge 密码:file 页面提示 len(a[30]) 点击大牛的位置,跳转到了http://www.pythonchallenge.com/pc/return/sequence.txt a = [1, 11, 21, 1211, 111221,  也就是找规律,求len(a[30])是多少 规律是第二个数字是

  • pythonchallenge Level 152021-12-07 10:04:17

    第15关地址:http://www.pythonchallenge.com/pc/return/uzi.html 账号:huge 密码:file 检查源码,得到提示信息: -- he ain't the youngest, he is the second -- buy flowers for tomorrow  再查看图片是个日历 -- 2月有29天,得到是闰年 -- 日历圈了26,根据buy flowers for tomorrow ,

  • pythonchallenge Level 142021-12-07 10:03:49

    第14关地址:http://www.pythonchallenge.com/pc/return/italy.html 账号:huge 密码:file 一个逆时针螺旋面包,下方还有一张小图 查看源码,标题是walk around 提示信息:remember: 100*100 = (100+99+99+98) + (...     wire.png 刚好是100*100,也就是要把wire.png的像素点重排,按照逆

  • pythonchallenge Level 132021-12-07 10:03:29

    第13关地址:http://www.pythonchallenge.com/pc/return/disproportional.html 账号:huge 密码:file 提示:phone that evil 点击按键5,打开 http://www.pythonchallenge.com/pc/phonebook.php  也就是给了一个电话本,需要打电话被evil import xmlrpc.client with xmlrpc.client.Se

  • pythonchallenge Level 182021-12-07 10:03:12

    第18关地址:http://www.pythonchallenge.com/pc/return/balloons.html 账号:huge 密码:file 查看源码 获得提示信息 标题:can you tell the difference? 提示:it is more obvious that what you might think 两只鹅的亮度不一样,亮度brightness 打开http://www.pythonchallenge.com/pc

  • pythonchallenge Level 162021-12-07 10:02:56

    第16关地址:http://www.pythonchallenge.com/pc/return/mozart.html 账号:huge 密码:file 标题:let me get this straight 源码里也没有什么,只能从图片找线索 每一行都是一条红线,按行打印出像素点的色值查看下,发现每行的红线都是连续的5个195 把红线放到左边,重排这幅图 from PIL imp

  • pythonchallenge Level 62021-12-07 10:01:18

    第6关地址:http://www.pythonchallenge.com/pc/def/channel.html 查看源码获得提示信息zip url改成zip后得到一个channel.zip文件 解压之后是一堆数字命名的txt,以及一个readme.txt 打开readme.txt获得新的提示 welcome to my zipped list. hint1: start from 90052 hint2: answer

  • pythonchallenge Level 52021-12-07 10:00:49

    第5关地址:http://www.pythonchallenge.com/pc/def/peak.html 页面提示信息:pronounce it 查看源码获得提示:peak hell sounds familiar ?  有个src:http://www.pythonchallenge.com/pc/def/banner.p 使用pickle处理banner.p from urllib.request import urlopen import pickle u

  • pythonchallenge Level 82021-12-07 10:00:28

    第8关地址:http://www.pythonchallenge.com/pc/def/integrity.html 提示信息:Where is the missing link? 查看源码:  发现 http://www.pythonchallenge.com/pc/return/good.html,打开需要账号密码 下方有发现UN和PW,应该是被加密过的账号密码。 un和pw使用bz2解码 import bz2 u

  • pythonchallenge 第六关2021-11-26 11:02:00

    F12查看网页源码,开头就注释这zip,里面的其他注释没有用。 将链接最后的.html改成.zip,得到一个压缩包; 压缩包里有多个文本,内容都是Next nothing is XXX,想到是和第四关一个套路 查看压缩包里的readme.txt,得知从90052.txt开始 import re import zipfile # 匹配末尾数字的正则

  • pythonchallenge闯关——第五弹2021-08-05 18:30:49

    关键词 正则表达式 re python的http库 request 首先查看网页源代码 注释“<urllib may help. DON’T TRY ALL NOTHINGS, since it will never end. 400 times is more than enough.。> ” 提示采用urllib 以及400次的循环 import requests import re def get_str(url): re

  • Python challenge闯关答案(更新中)2020-12-24 10:00:36

    1. http://www.pythonchallenge.com/pc/def/0.html 方法:计算2的38次方,274877906944 跳转url:http://www.pythonchallenge.com/pc/def/274877906944.html 2. http://www.pythonchallenge.com/pc/def/map.html 方法:上图已标记,那么根据该规律,可得出当前链接中的“map”为“ocr

  • pythonchallenge总述2020-11-28 19:35:53

    Pythonchallenge是一个过关式的解谜站点,使用的是经典在线解谜站点Not Pr0n的模式:根据提示找出下一关的网页地址。和Not Pr0n不同的是,在每一关里你都需要编写程序来寻找答案。虽然这个解谜站点的名字叫做Python Challenge,但事实上你可以使用任意一种程序语言(除了少数一两关可能会用

专注分享技术,共同学习,共同进步。侵权联系[81616952@qq.com]

Copyright (C)ICode9.com, All Rights Reserved.

ICode9版权所有