최초작성 : 23.5.11
수정 :23.6.9 (우분투 환경 추가)

[참고]

- 파이썬3 기반의 TCP/IP 활용 지침서 / 오동진·박재유 저 / 이경문 감수 / 에이콘출판

 

[서론]

- 네트워크 공부를 파이썬3으로 실습할 수 있다고?

- 정독해보자

 

[본론]

1. Windows 환경

- 윈도우 환경에서 pip로 scapy 라이브러리 설치 : 

C:\...>python -m pip install scapy

scapy 설치

- 실행

C:\...>scapy 

이렇게 Simple 할 수가...

- github : https://github.com/secdev/scapy

 

GitHub - secdev/scapy: Scapy: the Python-based interactive packet manipulation program & library. Supports Python 2 & Python 3.

Scapy: the Python-based interactive packet manipulation program & library. Supports Python 2 & Python 3. - GitHub - secdev/scapy: Scapy: the Python-based interactive packet manipulation pro...

github.com

2. Ubuntu (우분투 환경)

- 터미널 창에 pip 명령어로 설치

$ pip3 install scapy

$ python3

>>> import scapy (설치 이상 없으면 라이브러리 불러와짐)

[결론]

- 침묵 수행 할 것! (말만하지 말고 행동(실행)할 것!)

+ Recent posts