0x00. 환경구성OS : BackTrack 5 R3 (32-bit)Kernel : Linux bt 3.2.6 0x01. iwconfigConfigure a wireless network interface.iwconfig is similar to ifconfig, but is dedicated to the wireless interfaces. # iwconfig 0x02. airmon-ngairmon-ng is script can be used to enable monitor mode on wireless interfaces. airmon-ng # airmon-ng start wlan0 0x03. airodump-ngA wireless packet capture tool for aircrack-ng. a..
0x00. 환경구성OS : BackTrack 5 R3 (32-bit)Kernel : Linux bt 3.2.6 # netstat -nltp 0x01. dhcp3-server install# vi /etc/apt/sources.listdeb http://all.repository.backtrack-linux.org revolution main microverse non-free testingdeb http://64.repository.backtrack-linux.org revolution main microverse non-free testingdeb http://source.repository.backtrack-linux.org revolution main microverse non-free testin..
PEP 8 -- Style Guide for Python Code PEP는 Python Enhancement Proposal의 약자로 우리말로 번역하면 파이썬을 개선하기 위한 제안서이다.좀 더 자세한 내용은 PEP 0, 1을 읽어보면 알 수 있다.(https://www.python.org/dev/peps/) PEP 8은 파이썬 코드를 작성하는 스타일에 대한 가이드를 제시한 내용이다.(Coding Convention) 물론, 어디까지나 해당 내용은 가이드이며, 파이썬 코드를 작성하게 되는 주변 환경에 맞춰서 일관성있게 해주는 것이 더 중요하다.PEP 8 내용 일부를 요약하면 다음과 같다. Code lay-out- 들여쓰기는 공백 4칸- 들여쓰기는 탭보다 스페이스를 사용- 한 줄은 최대 79자까지- 최상위(..