목록전체보기 (373)
EASY7
1. 코덱 문제? - star 코덱, QuickTime 코덱 설치 2. 미디어 캐시 삭제 C:\Users\사용자 이름\AppData\Roaming\Adobe\Common 폴더 내부 삭제 3. audio hardware 변경 4. Audio 1 활성화 5. 최종 방법.. 오디오만 추출해서 다른 소스로 붙이기
cpuu.postype.com/post/41330
스크립트 예시 : www.youtube.com/watch?v=WMmVheaE0xE github.com/shrestha-tripathi/offensive-python/blob/master/packet_sniffer.py
Scapy 란? Scapy는 패킷 조작 프로그램으로 다양한 프로토콜의 패킷을 생성/전송/캡처 작업을 수행할 수 있다. hping, nmap의 85 %, arpspoof, arp-sk, arping, tcpdump, tethereal, p0f 등을 대체 할 수 있다. 기본적으로 Linux, Windows, OSX 및 libpcap이 있는 대부분의 Unix에서 실행된다. Scapy 설치 페이지 아래 링크에서 패키지 다운로드가 가능하다. scapy.readthedocs.io/en/latest/installation.html Download and Installation — Scapy 2.4.4. documentation As a general rule, you can toggle the libpcap inte..
참고 : codetorial.net/pywin32/reference.html
도움이 되는 사이트 http://wiki.python.org/moin/PythonXml Tips 1. 외부 파일 가져올 때 백슬래쉬를 두번한다: xml_file = 'C:\\Users\\users\\Downloads\\test.xml' 파싱한 후 Element 찾아서 출력하기 import xml.etree.ElementTree as ET from xml.etree.ElementTree import Element, dump, ElementTree xml_file = 'C:\\Users\\users\\Downloads\\test.xml' doc = ET.parse(xml_file) # root 노드 가져오기 root = doc.getroot() size_tag = root.findall("size") pri..
오류 및 증상 PyCharm을 처음 사용하시는 분들이 겪는 고충이 있습니다. 코드를 쓰려고 하면 글자가 아닌 명령 모드로 작동을 하는데요. i 또는 a 키를 누르면 Write 모드로 변경됩니다. 또는 Vim에 익숙하지 않다면 해당 기능을 OFF하면 됩니다. 해결방법 1) File-Settings을 클릭합니다. 2) Plugins에서 IdeaVim을 검색합니다. 3) 상단 Installed을 클릭한 후 disable 합니다. 4) Apply 및 OK한 후 Pycharm을 재시작합니다.