Changeset 1125
- Timestamp:
- 02/16/07 21:58:23 (2 years ago)
- Files:
-
- honeytrap/trunk/ChangeLog (modified) (1 diff)
- honeytrap/trunk/src/ctrl.c (modified) (1 diff)
- honeytrap/trunk/src/dynsrv.c (modified) (1 diff)
- honeytrap/trunk/src/dynsrv.h (modified) (1 diff)
- honeytrap/trunk/src/honeytrap.h (modified) (3 diffs)
- honeytrap/trunk/src/modules/htm_SpamSum.c (modified) (1 diff)
- honeytrap/trunk/src/modules/htm_aSaveFile.c (modified) (1 diff)
- honeytrap/trunk/src/modules/htm_b64Decode.c (modified) (1 diff)
- honeytrap/trunk/src/modules/htm_ftpDownload.c (modified) (1 diff)
- honeytrap/trunk/src/modules/htm_tftpDownload.c (modified) (1 diff)
- honeytrap/trunk/src/modules/htm_vncDownload.c (modified) (1 diff)
- honeytrap/trunk/src/tcp.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
honeytrap/trunk/ChangeLog
r1124 r1125 1 1 Version 0.6.4.1 2 - Some compile errors fixed 2 3 - Configure script changed to run on MacOS X 3 4 - htm_SpamSum gets not installed by default honeytrap/trunk/src/ctrl.c
r1097 r1125 57 57 58 58 void clean_exit(int status) { 59 #ifdef USE_PCAP_MON 59 60 /* free bpf filter string */ 60 61 free(bpf_filter_string); 62 #endif 61 63 62 64 logmsg(LOG_DEBUG, 1, "Unloading default responses.\n"); honeytrap/trunk/src/dynsrv.c
r1117 r1125 12 12 13 13 #include <stdlib.h> 14 #include <stdio.h> 14 15 #include <errno.h> 15 16 #include <sys/socket.h> honeytrap/trunk/src/dynsrv.h
r1117 r1125 14 14 #define __HONEYTRAP_DYNSRV_H 1 15 15 16 #include <pcap.h>17 16 #include <netinet/in.h> 17 #ifdef USE_PCAP_MON 18 # include <pcap.h> 19 #endif 18 20 19 21 #include "ip.h" honeytrap/trunk/src/honeytrap.h
r1117 r1125 16 16 #include <sys/types.h> 17 17 #include <netinet/in.h> 18 #include <pcap.h>19 18 #include <pwd.h> 20 19 #include <grp.h> 21 20 #include <dlfcn.h> 21 #ifdef USE_PCAP_MON 22 # include <pcap.h> 23 #endif 22 24 23 25 #if HAVE_CONFIG_H … … 83 85 84 86 int pidfile_fd, first_init; 87 pid_t parent_pid; 85 88 char old_cwd[1024]; 89 90 #ifdef USE_PCAP_MON 86 91 char *bpf_filter_string; 87 92 bpf_u_int32 mask; … … 89 94 90 95 pcap_t *packet_sniffer; 91 struct in_addr this_host;92 pid_t parent_pid;93 96 u_char pcap_offset; 97 #endif 94 98 95 99 honeytrap/trunk/src/modules/htm_SpamSum.c
r1119 r1125 21 21 #include <ctype.h> 22 22 #include <stdlib.h> 23 #include <stdio.h> 23 24 24 25 #include <honeytrap.h> honeytrap/trunk/src/modules/htm_aSaveFile.c
r1117 r1125 23 23 #include <sys/types.h> 24 24 #include <unistd.h> 25 #include <stdio.h> 25 26 26 27 #include <logging.h> honeytrap/trunk/src/modules/htm_b64Decode.c
r1123 r1125 26 26 #include <ctype.h> 27 27 #include <strings.h> 28 #include <stdio.h> 28 29 29 30 #include <honeytrap.h> honeytrap/trunk/src/modules/htm_ftpDownload.c
r1120 r1125 26 26 #include <sys/socket.h> 27 27 #include <ctype.h> 28 #include <stdio.h> 28 29 29 30 #include <honeytrap.h> honeytrap/trunk/src/modules/htm_tftpDownload.c
r1106 r1125 25 25 #include <netdb.h> 26 26 #include <sys/socket.h> 27 #include <stdio.h> 27 28 28 29 #include <honeytrap.h> honeytrap/trunk/src/modules/htm_vncDownload.c
r1106 r1125 20 20 #include <ctype.h> 21 21 #include <errno.h> 22 #include <stdio.h> 22 23 23 24 #include <logging.h> honeytrap/trunk/src/tcp.c
r1116 r1125 12 12 13 13 #include <stdlib.h> 14 #include <stdio.h> 14 15 #include <errno.h> 15 16 #include <sys/socket.h>
