일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
- AVR
- Web Hacking
- Navajo alphabet
- base32
- Linux
- JavaScript
- cookie
- php_extract
- Mail Header injection
- overthewire
- webhacking
- Pigpen Cipher
- assembly
- sha1
- 카이사르 암호
- Python
- Qrcode
- Javscript
- 비즈네르 암호
- Masonic Cipher
- Caesar Cipher
- sql injection
- vigenere cipher
- BASE64
- 시저 암호
- burpsuit
- aslr
- reversing
- base16
- Fortran 90
- Today
- Total
My Drive
[winpcap] basic_dump 본문
// basic_dump.
#include "pcap.h"
void packet_handler(u_char *param, const struct pcap_pkthdr *header, const u_char *pkt_data);
main()
{
pcap_if_t *alldevs;
pcap_if_t *d;
int inum;
int i = 0;
pcap_t *adhandle;
char errbuf[PCAP_ERRBUF_SIZE];
if(pcap_findalldevs(&alldevs, errbuf) == -1) // 랜카드 검색
{
fprintf(stderr, "Error in pcap_findalldevs: %s\n", errbuf);
exit(1);
}
for(d=alldevs; d; d=d->next) // 검색된 랜카드 정보 출력
{
printf("%d. %s", ++i, d->name);
if(d -> description)
printf(" (%s)\n", d->description);
else
printf(" (No description available)\n");
}
if(i==0)
{
printf("\nNo interfaces found! Make sure WinPcap is installed.\n");
return -1;
}
printf("nic 카드 선택하세요..(1-%d):", i);
scanf("%d", &inum); // 랜카드 선택
if(inum < 1 || inum > i)
{
printf("\nInterface number out of range.\n");
pcap_freealldevs(alldevs);
return -1;
}
for(d = alldevs, i=0; i<inum-1; d=d->next, i++);
if((adhandle=pcap_open_live(d->name, 65536, 1, 1000, errbuf)) == NULL) // 네트워크 패킷을 수집하기 위한 방법 설정
{
fprintf(stderr, "\n %s isn't supported by winpcap \n", d->name);
return -1;
}
printf("\nlistening on %s...\n", d->description);
pcap_freealldevs(alldevs);
pcap_loop(adhandle, 0, packet_handler, NULL); // packet_handler() 함수 호출하여 패킷 수집
pcap_close(adhandle);
return 0;
}
void packet_handler(u_char *param, const struct pcap_pkthdr *header, const u_char *pkt_data)
{
static long int count=0;
printf("%d: ethernet packet exists\n", ++count); // 이더넷 패킷이 보일때마다 카운트
}
'programming' 카테고리의 다른 글
[winpcap] ip_header (0) | 2015.07.26 |
---|---|
[winpcap] mac_address (0) | 2015.07.26 |
python colored output (0) | 2015.07.26 |
07. Arrays (0) | 2014.10.27 |
06. Input / Output (0) | 2014.10.27 |