forked from DataSoft/Honeyd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
README
156 lines (114 loc) · 5.31 KB
/
README
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
Honeyd 1.6d
Copyright (c) 2002 - 2007 Niels Provos <[email protected]>
-------------------------------------------------------------------------
About Honeyd:
-------------
Honeyd is a small daemon that creates virtual hosts on a network. The
hosts can be configured to run arbitrary services, and their TCP
personality can be adapted so that they appear to be running certain
versions of operating systems. Honeyd enables a single host to claim
multiple addresses - I have tested up to 65536 - on a LAN for network
simulation.
It is possible to ping the virtual machines, or to traceroute them.
Any type of service on the virtual machine can be simulated according
to a simple configuration file. Instead of simulating a service, it
is also possible to proxy it to another machine.
Installation:
-------------
Honeyd depends on several libraries:
- libevent - event notification
- libdnet - packet creation
- libpcap - packet sniffing
- libpcre - perl regular expression library (optional; for subsystems)
Make sure that you have them installed.
To install dependencies in Ubuntu:
$ sudo apt-get install libevent-dev libdumbnet-dev libpcap-dev libpcre3-dev libedit-dev bison flex libtool automake
To install dependencies in ArchLinux:
# First get these packages
$ pacman -S libdnet libpcap libevent pcre libedit bison flex libtool automake
For the regression framework to run, you need to install the Python
module for libdnet. You might need Python 2.4 for the best results.
To build honeyd, run the following commands:
$ ./autogen.sh
$ ./configure
$ make
$ sudo make install
If your compilation stops due to Python related errors, you can try to
run configure as
$ ./configure --without-python
If you get compilation warnings on Linux bitch to the people responsible
for the conditional header file idioticy.
Documentation:
--------------
You can find documentation as part of this release. The manual
page can be accessed with the following commands:
$ man honeyd
or in the source directory
$ nroff -mdoc honeyd.8
More information can be found at http://www.honeyd.org/ and https://github.com/DataSoft/Honeyd
Running:
--------
Honeyd requires root-privileges for execution. Normally, you run it
with arguments similiar to the following:
$ sudo ./honeyd -d -f config.sample 10.0.0.0/8
It is strongly recommend that you run Honeyd in a chroot environment
under a sandbox like systrace. If possible, Honeyd drops privileges
after creating its raw sockets. This depends on your configuration
file. You can force privileges to be dropped by setting Honeyd's uid
and gid via the -u <uid> and -g <gid> flags.
Testing
-------
To empirically verify the quality of OS scan results, a bash script named
ostest is included. There are a few "gotcha"s with this, however. Normally,
honeyd ignores packets coming from the same machine that it's running on
so as to avoid routing loops. (or so it claims, at least) So scanning
yourself doesn't work.
An ugly hack to make this work is to use a separate hardware ethernet
interface such as a cheap usb-ethernet adapter. You then have two eth adapters,
call them eth0 and eth1. Set up a route so that the IP address given to
ostest is routing to eth0. You then set up honeyd to listen on eth1.
Honeyd will see packets coming from eth0 and assume that it is a different
machine than ours, and not drop them.
License:
--------
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
Acknowledgments:
----------------
The following people have helped with suggestions, ideas or code:
Dug Song <[email protected]>
Jamie Van Randwyk <[email protected]>
Eric Thomas <[email protected]>
Christopher Kolina
Derek Cotton
Yuqing Mai
Lance Spitzner <[email protected]>
Christian Kreibich <[email protected]>
Bill Cheswick <[email protected]>
Lauren Oudot <[email protected]>
Jon Oberheide <[email protected]>
David Clark <[email protected]>
Dan Petro <[email protected]>
David Scott <[email protected]>
Addison Waldow <[email protected]>
Rami Rashid <[email protected]>