old/Python
[Tool] 파이썬 기반 도구 모음
악성코드 검색 https://github.com/MalwareReverseBrasil/malwaresearch 익스플로잇 검색https://github.com/vulnersCom/getsploit 링크드인에서 정보검색https://github.com/dchrastil/ScrapedIn Online Hash Checker for Virustotal and Other Serviceshttps://github.com/Neo23x0/munin Tool for Network Scan, Man in the Middle, Protocol Reverse Engineering and Fuzzinghttp://www.kitploit.com/2017/08/nili-tool-for-network-scan-man-in.html..
[정리] ocr 라이브러리 pytesser import 및 예제
pip로 설치가 안되서 수동으로 import 해야한다. 여기서 라이브러리를 받고 압축을 풀면 나오는 폴더를 pytesser로 이름을 변경하고 C:\Python27\Lib 경로에 저장한다. pytesser.py를 복사하고 __init__.py 이름을 변경한 후 12라인을 tesseract_exe_name = 'C:\\Python27\\Lib\\pytesser\\tesseract' 로 변경하면 끝.
[자료] 파이썬 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..
[자료] 파이썬 공부자료 모음
======================튜토리얼============================ 점프 투 파이썬https://wikidocs.net/book/1 예제로 배우는 파이썬 http://pythonstudy.xyz/ 예제 코드https://www.pythonforbeginners.com/code-snippets-source-code/python-code-examples 파이썬 300제https://wikidocs.net/book/922 파이썬 기초http://www.flowdas.com/thinkpython/ http://www.lucypark.kr/courses/tips/introduction-to-python.html 파이썬을 배우는 최고의 방법https://nolboo.github.io/..