[질문] 패킷스니퍼 소스

ergo50의 이미지

안녕하세요...

이런게 있으려나 모르겠는데요,

리눅스머신의 이더넷포트에 흘러다니는 패킷을 스니핑 하는 툴의 공개소스가 있을까요?

제가원하는건, 패킷들의 source ip, dest ip/port, 프로토콜 만 텍스트 파일로
쓸수잇으면 되거든요.

될수있음 가벼운소스이면 좋고요.

잘 아시는 분 계심 하나 추천좀 부탁드립니다.

부탁드리겠습니다

i2c1ude의 이미지

eathereal.com 에 tar로 된 스니퍼를 본듯한데..

잘못봤나; 리눅스에서 돌려지는건.. 소스가공개됫다는소리아닐까요..

제가 한번찾아보도록하겠습니다..

어짜피 저도 필요한거같으니..ㅎㅎ

혹시나 먼저 찾으시면 연락좀 -.-

ergo50의 이미지

i2c1ude wrote:
eathereal.com 에 tar로 된 스니퍼를 본듯한데..

잘못봤나; 리눅스에서 돌려지는건.. 소스가공개됫다는소리아닐까요..

제가 한번찾아보도록하겠습니다..

어짜피 저도 필요한거같으니..ㅎㅎ

혹시나 먼저 찾으시면 연락좀 -.-

감사합니다 저도 찾고 있는데 잘 안보여요. 답답해서 올린겁니다.
사용은 많은디.. 쩝
yundream의 이미지

http://www.joinc.co.kr/modules/moniwiki/wiki.php/pcap?action=show
joinc google에서 pcap을 키워드로 찾으심 될것 같군요.

Necromancer의 이미지

libpcap 쓰면 몇십줄이면 스니퍼 완성됩니다.

저도 스니퍼 짜봤습니다. 프로토콜 분석용 패킷 덤프를 뜨기 위해서죠.

소스 드리죠. 하지만 불법(!)적인 용도로 쓰지 마시기 바랍니다.
만일 이런 용도로 썼다면 모두 님 책임입니다.

/* Packet sniffer
 *
 * (C) Copyright 2004 Lee J. H.
 *
 */

/* 사용법 : sniff <interface> <capture-file>
 */

/*
 * changelog
 *  2004/01/05 - pcap_loop()에서 pcap_dispatch()로 변경
 *               시리얼 넘버관련 버그 수정
 *               perror()의 잘못된 구문을 수정
 */

#include <stdio.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <unistd.h>
#include <signal.h>

#include <pcap.h>

#define C_SNIFF

#define CTRLC_ON 1

int main(int,char **);
int create_file(char *);
void exit_prog(void);
void capture(u_char *,const struct pcap_pkthdr *,const u_char *);
void sigint_hand(int);

int fd;
int serial=0;

int readoff;
char writebuffer[1048576];   /* 1M의 파일 write buffer */

pcap_t *capdev;

char flag=0;

/* 패킷 캡쳐 & 세이브 */
void capture(u_char *null,const struct pcap_pkthdr *head,const u_char *pktdata)
{
  void *ptr;
  int t;

  if((1048576-readoff)<(8+(int)(head->len))) {
    write(fd,writebuffer,readoff);
    readoff=0;
  }
  ptr=(void *)writebuffer+readoff;
  *(int *)ptr=serial;
  *(int *)(ptr+4)=(int)head->len;
  ptr+=8;
  for(t=0;t<head->len;t++) {
    *(char *)(ptr+t) = (char)(pktdata[t]);
  }
  readoff+=8+(head->len);
  if(flag&CTRLC_ON) {
    exit_prog();
  }
}

/* CTRL-C (SIGINT) 시그널 처리함수 */
void sigint_hand(int null) {
  flag=flag|CTRLC_ON;
  return;
}

/* 프로그램 종료시이다 */
void exit_prog(void)
{
  if(readoff) {
    write(fd,writebuffer,readoff);
  }
  pcap_close(capdev);
  exit(0);
}

/* 패킷을 저장할 파일을 생성한다. 만일 파일이 존재하는 경우에는 파일을 지워도 되
는지 물어본다 */
int create_file(char *filename)
{
  struct stat check;
  char reply;

  if((stat(filename,&check))!=-1) {
    /* stat()이 정상적으로 이루어졌다면 파일이 존재하는 것이다. 삭제 여부를 물어
본다 */
    printf("File %s exists. Do you want to delete it? (Y/N)",filename);
    sync();
    reply=(char)(getchar());
    if((reply!='y')&&(reply!='Y')) {
      pcap_close(capdev);
      exit(1);
    }
    printf("\n");
  }
  fd=creat(filename,O_CREAT|O_WRONLY|O_TRUNC);
  if(fd==-1) {
    printf("File %s creation failed\n",filename);
    exit(1);
  }
  return fd;
}

/* 메인함수 */
int main(int argc,char **argv)
{
  char errbuf[PCAP_ERRBUF_SIZE];

  if(argc!=3) { /* 인수가 일치하지 않으면 도움말 출력하고 나간다 */
    printf("Usage : sniff <interface> <cap-file>\n\n");
    printf("    ex) sniff eth0 seepacket.img\n");
    exit(1);
  }
  signal(SIGINT,sigint_hand);
  capdev=pcap_open_live(argv[1],128*1024,1,0,errbuf);
  if(capdev==NULL) { /* interface open failed인 경우이다 */
    printf("Error opening network interface %s\n",argv[1]);
  }
  fd=create_file(argv[2]); /* 패킷 저장용 파일을 생성한다 */
  while(1) {
    pcap_dispatch(capdev,1,capture,NULL);
    serial++;
    if(flag&CTRLC_ON) {
      exit_prog();
    }
  }
}

Written By the Black Knight of Destruction

김희상의 이미지

댓글 달기

Filtered HTML

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

BBCode

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param>
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

Textile

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • You can use Textile markup to format text.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Markdown

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • Quick Tips:
    • Two or more spaces at a line's end = Line break
    • Double returns = Paragraph
    • *Single asterisks* or _single underscores_ = Emphasis
    • **Double** or __double__ = Strong
    • This is [a link](http://the.link.example.com "The optional title text")
    For complete details on the Markdown syntax, see the Markdown documentation and Markdown Extra documentation for tables, footnotes, and more.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Plain text

  • HTML 태그를 사용할 수 없습니다.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 줄과 단락은 자동으로 분리됩니다.
댓글 첨부 파일
이 댓글에 이미지나 파일을 업로드 합니다.
파일 크기는 8 MB보다 작아야 합니다.
허용할 파일 형식: txt pdf doc xls gif jpg jpeg mp3 png rar zip.
CAPTCHA
이것은 자동으로 스팸을 올리는 것을 막기 위해서 제공됩니다.