IT’s Portfolio

[Python Challenge] Level 0 풀이(Warming UP) 본문

Security Study/Wargame Explanation

[Python Challenge] Level 0 풀이(Warming UP)

f1r3_r41n 2019. 11. 19. 17:33
728x90
반응형

http://www.pythonchallenge.com/

 

The Python Challenge

What people have said about us: "These sorts of things are in my opinion the best way to learn a language.", brberg at Media Cloisters "It's the best web site of the year so far.", Andy Todd at halfcooked "Addictive way to learn the ins and outs of Python.

www.pythonchallenge.com

오늘부터 파이썬을 공부하기에 많은 도움이 되는 Python Challenge를 풀어나갈 것이다.

Python Challenge의 정답은 'http://pythonchallenge.com/pc/def/정답값.html' 이런 식으로 적으면 된다.

 

풀이

 

Warming Up에 속하는 Level 0 문제를 보자.

Hint: try to change the URL address

 

사진에는 2^38이 나와있는것을 보아하니 정답값은 2^38인듯 하다.

파이썬으로 2^38을 계산하는 법은

print(2**38)

정답값: 274877906944

 

최신화

2022.10.19

print(pow(2, 38))
  • pow 함수 사용

 

Level 1로 갈 수 있는 URL = http://www.pythonchallenge.com/pc/def/274877906944.html

728x90
반응형

'Security Study > Wargame Explanation' 카테고리의 다른 글

[Python Challenge] Level 2 풀이  (0) 2019.11.20
[Python Challenge] Level 1 풀이  (4) 2019.11.19
[CodeEngn] Basic RCE Level 5  (0) 2019.10.25
[CodeEngn] Basic RCE Level 4  (0) 2019.10.25
[CodeEngn] Basic RCE Level 3  (0) 2019.10.17
Comments