전체 글

DevOps Security Specialist를 목표하는 Security Compliance Engineer의 블로그
old/Wargame

[WEB] webhacking.kr 26번 풀이

보호되어 있는 글입니다.

old/Python

[자료] 파이썬 url 인코딩/디코딩, 해시, 문자 빈도수 출력

출처 : http://cdpython.tistory.com/16 파이썬에서 url 인코딩 / 디코딩 1234567from urllib import quote,unquote#인코딩def urlencode(string): print "URLEncoding:",quote(string)#디코딩def urldecode(string): print "URLDecoding:",unquote(string) 해시(md5,sha1) 생성 12345678910111213import hashlibdef hash_string(string): print "MD5:",hashlib.md5(string).hexdigest() print "SHA1:",hashlib.sha1(string).hexdigest()#파일 해시 생성def ha..

old/Wargame

[WEB] webhacking.kr 24번 풀이

보호되어 있는 글입니다.

MR. ZERO
Security & DevOps