본문 바로가기

[Study & Job]

BYOD 공부하면서 참조했던 자료들링크모음 http://mbceconomy.com/detail.php?number=1684&thread=31http://mobisec.tistory.com/3http://smartmobilesecurity.blogspot.kr/2013/04/byod.htmlhttp://h17007.www1.hp.com/kr/ko/solutions/technology/BYOD/http://photo-tv.inews24.com/php/news_view.php?g_serial=725853&g_menu=500100http://www.symantec.com/ko/kr/about/news/release/article.jsp?prid=20121102_01http://www.eetkorea.com/ART_8800661265_839578_NT_7..
PT 자료 만들 때 이런 폰트는 어떨까?? 서울 한강체서울 남산체상상 제목체상상 본문체나눔 명조체네이버 나눔고딕네이버 나눔 손글씨체 확인!!
취약점 분석 관련 컨퍼런드 들은것 메모자료 서버쪽(remote)http, ftp, smb 클라이언트(local)ie, acrobat reader, flash overflow,use after freebugformat string, double등등 finding 0-day이뮤니티, 셜리, 다이나노 리오, 발그린, Pin taint tool!! static analysis toolida, 010 editer dynamic analysis toolollydug, cheat engine =============================================exploit dbzero day init, rapid 7 -hwo to find 0day-source code auditingbinary auditingbinary diffingfuzzin..
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")