검색결과 리스트
전체 글에 해당되는 글 145건
- 2017.07.05 17. Dos 에서 단순 Packet Capture
- 2017.07.04 16. Port 로 Ping 하기
- 2017.06.16 05. 구글의 그리기
글
17. Dos 에서 단순 Packet Capture
# 단순한 Packet Capture 가 필요한 경우가 있다!
# WireShark 가 없는 경우 Windows Command 상태에서
# Packet Capture 할 수 있는 단순한 Command 입니다.
# 사용방법 또한 단순 그 자체!
- 관리자 권한 으로 실행된 CMD 창에서 동작
# 출처
https://www.elifulkerson.com/projects/rawsniff.php
# Option
Usage: rawsniff.exe [options] Note: Must be administrator due to raw socket restrictions. Also, antivirus may complain that you're opening a raw socket. IPv4 only. Options: -? Get this help screen -v Display version information --listen X Listen on specified IP address (otherwise choose from list) Types of packets: --tcp Display TCP matches --udp Display UDP matches --icmp Display ICMP matches --other Display matches for other protocols Output options: --brief Display brief (single line) packet information (default) --data Brief mode, including readable ASCII data payloads --list Display a list of packet information --full Display the full list of packet information --gag No output to console --pcap Write out a timestamp.pcap file in the current directory. (libpcap format) --packets X Program exits after certain count of matching packets are displayed (default is 2,147,483,647) Filter: --ip X Match packets with this IP in either src_ip or dst_ip --port X Match packets with this IP in either src_port or dst_port --src_ip X If specified, display packets with a given src_ip only --dst_ip X If specfied, display packets with a given dst_ip only --src_port X If specified, display packets with a given src_port only --dst_port X If specified, display packets with a given dst_port only --nopid Disable the process info display, which is on by default. --pid X If specified, display packets that belong to a given Process ID only --process X If specified, display packets that belong to a given Process name only |
#
'Program' 카테고리의 다른 글
19. SFTP, FTP 접속 프로그램(WinSCP) (0) | 2017.08.28 |
---|---|
18. 초경량 엑셀 편집 프로그램 (0) | 2017.07.06 |
16. Port 로 Ping 하기 (0) | 2017.07.04 |
15. Notepad2 (0) | 2017.05.17 |
14. 윈도우에서 파일 검색 (0) | 2016.12.23 |
글
16. Port 로 Ping 하기
# 원격지의 특정 포트가 열려있는지 확인하기 위해서는 Telnet 을 사용
# 불편하다!
# ping 명령어처럼 단순하고 쉽게 원격지 포트가 열려있는지 확인할 방법이 없을까!!!
# 그래서 검색했다. 찾았다. tcping
# 윈도우 시스템 폴더에 복사해 넣으면 윈도우 명령어처럼 사용가능.
# 출처
https://elifulkerson.com/projects/tcping.php
# Option
Usage: tcping [-flags] server-address [server-port] -t : ping continuously until stopped via control-c -n 5 : for instance, send 5 pings -i 5 : for instance, ping every 5 seconds -w 0.5 : for instance, wait 0.5 seconds for a response -d : include date and time on each line -b 1 : enable beeps (1 for on-down, 2 for on-up, 3 for on-change, 4 for always) -r 5 : for instance, relookup the hostname every 5 pings -s : automatically exit on a successful ping -v : print version and exit -j : include jitter, using default rolling average -js 5 : include jitter, with a rolling average size of (for instance) 5. --tee : mirror output to a filename specified after '--tee' -c : only show an output line on changed state |
# Option : -b 1 (실패 시 비프음 발생)
# Option : -d (매번 날짜와 시간을 찍어 몇초 동안 Ping이 빠졌는지 확인 가능)
'Program' 카테고리의 다른 글
18. 초경량 엑셀 편집 프로그램 (0) | 2017.07.06 |
---|---|
17. Dos 에서 단순 Packet Capture (0) | 2017.07.05 |
15. Notepad2 (0) | 2017.05.17 |
14. 윈도우에서 파일 검색 (0) | 2016.12.23 |
13. 코팅을 위한 글꼴 (0) | 2016.09.29 |
글
05. 구글의 그리기
'80.Web Site' 카테고리의 다른 글
07. File Signatures Table (0) | 2018.09.11 |
---|---|
06. 악성코드 분석 참고 사이트 (0) | 2018.09.11 |
03. Python Study (0) | 2017.04.11 |
02. 논문/학술자료 (0) | 2016.06.09 |
01. 웹해킹, 서비스 거버, 정보수집 등 (0) | 2016.06.09 |