본문 바로가기

[Study & Job]/[기타]

PT 자료 만들 때 이런 폰트는 어떨까?? 서울 한강체서울 남산체상상 제목체상상 본문체나눔 명조체네이버 나눔고딕네이버 나눔 손글씨체 확인!!
SSL Attack 관련 자료 http://resources.infosecinstitute.com/ssl-attacks/
파이썬에서 IDE 없이 자동완성 기능 사용하기 아래 링크 거거 http://conjurecode.com/enable-auto-complete-in-python-interpreter/
후킹관련 windows event 를 흉내내서 macro 를 만들려고 한다.참고가 될 만한 사항들을 모아놨다. Windows sibling window 에서 next window 의 handle 얻어오기.d = win32gui.GetWindow(c, win32con.GW_HWNDNEXT)enum 값win32con.GW_HWNDFIRST = 0 win32con.GW_HWNDLAST = 1 win32con.GW_HWNDNEXT = 2 win32con.GW_HWNDPREV = 3 win32con.GW_OWNER = 4 win32con.GW_CHILD = 5 win32con.GW_ENABLEDPOPUP = 6 Window handle 얻어오는 함수 - class name 과 window caption 을 참조해서. de..
vm 이미지들 다운 받는 곳 http://www.thoughtpolice.co.uk/vmware/ http://www.hackerschool.org/Sub_Html/HS_Service/VmwareLinux/index.html
python을 이용한 간단한 encoding!! import sys reload(sys) sys.setdefaultencoding('utf-8') a = {"id":"adasd", "password":"asdasd"}urllib.urlencode(a) 혹은 urllib.quote_plus("asdasd") or urllib.quote("asdasd")
손쉽게python에서 hex값 가지고 놀기 'a'.encode('hex') -> 이러면str값으로 '61'을 뿌려줌 즉 문자 a의 hex값을 알고싶을떄 사용 int('61', 16) 이러면 hex 문자열값이 int로 바뀜 혹시 몰라서 ascii값 구하기 ord('a') => 97이 나온다.. 반대로 int => ascii로 바꿀땐 chr(97) -> 'a'
오 CTF 문제들 한눈에~ 굳!! http://ctftime.org/