root/fwknop/tags/fwknop-1.8.1/ChangeLog

Revision 691, 20.0 kB (checked in by mbr, 1 year ago)

started on 1.8.1 features

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
Line 
1 fwknop-1.8.1 (06/06/2007):
2     - Bugfix to ensure that the "keep-state" directive is added to firewall
3       rules on systems running the ipfw firewall.
4     - Added the --Save-packet and --Save-packet-file command line arguments
5       to the fwknop client. These options instruct fwknop to save a copy of
6       an encrypted SPA packet before it is sent across the network.
7     - Bugfix to find minimal unused ipfw rule number for ipfw firewalls. This
8       fixes an issue where ipfw rules added by fwknopd could be inserted at
9       the same position as rules from an existing ipfw policy. While ipfw
10       allows duplicate rules, whenever such a rule is deleted by its rule
11       number all matching rules are deleted.
12
13 fwknop-1.8 (06/03/2007):
14     - Added support for ipfw firewalls (found on *BSD systems).  The
15       IPTables::Parse and IPTables::ChainMgr modules are not installed on
16       such systems.
17     - Added gpg-agent support for both the fwknop client and fwknopd SPA
18       server.
19     - Updated client-only installation mode to restrict perl module
20       installation to those module that are actually required by the fwknop
21       client. This results in clean installs of the fwknop client on Windows
22       systems running Cygwin.
23     - Added --Defaults to install.pl so that fwknop can be installed without
24       prompting the user to answer any questions. This is to make it easier
25       to install fwknop on the Source Mage Linux distro.
26     - Consolidated daemon config files into the fwknop.conf file (except for
27       the access.conf file). This simplifies the configuration of fwknop.
28     - Added recursive variable resolution in the parsing routines for the
29       fwknop.conf file. This allows variable values to contain embedded
30       variables.
31     - Added init script for FreeBSD systems.
32     - Added --BSD-install command line argument to install.pl. This is not
33       normally necessary since the installer should detect installations on
34       *BSD systems, but this option can force this behavior.
35     - Updated knopmd and knopwatchd to use safe_malloc() instead of malloc().
36     - Bugfix to never time out rules from SOURCE blocks with FW_ACCESS_TIMEOUT
37       set to zero
38
39 fwknop-1.0.1 (01/09/2007):
40     - Updated fwknopd to allow the GPG_REMOTE_ID variable to have the value
41       "ANY" to allow a SOURCE block to match on arbitrary remote gpg signing
42       keys (Leland Weathers).
43     - Bugfix to allow OPEN_PORTS to be omitted in access.conf in favor of
44       having only PERMIT_CLIENT_PORTS enabled (reported by Raul Siles).
45     - Added the cd_rpmbuilder script to make it easy to build RPM's out of
46       CipherDyne projects by automatically downloading the project .tar.gz and
47       .spec files from http://www.cipherdyne.org/.
48
49 fwknop-1.0 (11/05/2006):
50     - Bugfix for OpenSSH-4.3p2 patch to make sure to include the spa.h header
51       file.
52     - Bugfix for access hashes accumluating when multiple ports are requested
53       to be opened by a client.
54     - Better validation of IPT_AUTO_CHAIN variable so that the from_chain
55       cannot be identical to the to_chain.
56     - Bugfix in RPM to install List::MoreUtils.
57     - Bugfix so that the MD5 sum for an SPA packet is not examined for each
58       SOURCE block.  This fixes a problem where an SPA packet could appear to
59       be replayed if multiple SOURCE blocks are defined in
60       /etc/fwknop/access.conf.
61     - Refactored main SPA access loop so that it is clearer how and when SPA
62       clients are granted access.
63     - Better handling of GnuPG key identifier strings (they can now contain
64       spaces, and syslog messages wrap the identifiers with double quotes).
65     - Added source IP address to command string in the SPA packet so that
66       the REQUIRE_SOURCE_ADDRESS criteria can be applied by the fwknopd
67       server.
68     - Added --Show-last-cmd and --Show-host-cmd args to fwknop so that the
69       last fwknop command and the last fwknop host commands can be viewed.
70     - Added the svn revision number to --Version and --help output.
71
72 fwknop-0.9.9 (10/15/2006):
73     - Added REQUIRE_SOURCE_ADDRESS (disabled by default) to force fwknop
74       clients to know their source IP address (i.e. -s cannot be used).  So,
75       either fwknop clients have to use -R to resolve their externally
76       routable address, or they must just know what it is.
77     - Updated to Net-RawIP-0.21_03 for compatibility with gcc-4.x compilers.
78     - Added List-MoreUtils-0.22 which is a dependency of the new Net::RawIP
79       module.
80     - Bugfix to restore "start" functionality in Gentoo init script.
81     - Bugfix to use the IPT_OUTPUT_FILE and IPT_ERROR_FILE configuration
82       variables in fwknopd.
83     - Added KNOPTM_IPT_OUTPUT_FILE and KNOPTM_IPT_ERROR_FILE variables
84       specifically for the knoptm daemon so that it can use IPTables::ChainMgr
85       completely independently of fwknopd (this removes a potential race
86       condition between fwknopd and knoptm).
87
88 fwknop-0.9.8 (09/17/2006):
89     - Added the ability to ignore old SPA packets through use of the
90       client-side time stamp.  This means that an attacker cannot intercept an
91       SPA packet, prevent it from being forwarded to its intended destination,
92       and then put the packet on the wire at some time outside of the allowed
93       time window.  There are two new configuration options in fwknop.conf
94       "ENABLE_SPA_PACKET_AGING" and "MAX_SPA_PACKET_AGE" that control the
95       length of the acceptable time window (2 minutes by default).  This
96       requires some level of synchronization between the fwknop client and the
97       fwknopd server, but this is not onerous through the use of NTP.  This
98       feature is enabled by default, and the idea for it was contributed by
99       Sebastien J.
100     - Completely re-worked IPTables::ChainMgr to support the return of
101       iptables error messages that are collected via stderr.  This is critical
102       to fixing any bugs where fwknopd could die as a result of a poorly
103       crafted iptables command.
104       but no information would be returned to the user.
105     - Added the ability to specify the position for both the jump rule into
106       the fwknopd chains as well as the position for new rules within the
107       fwknopd chains via the -I argument to iptables.  This fixes a bug where
108       the user was given the impression that the IPTABLES_AUTO_RULENUM would
109       accomplish this (IPTABLES_AUTO_RULENUM has been removed).
110     - Updated fwknopd to require < 1500 byte payload length before attempting
111       to decrypt.  Also, GnuPG decrypts are not attempted unless the encrypted
112       payload is at least 400 bytes long (this is conservative since even
113       encrypting a single byte with a 1024-bit key will result in about 340
114       bytes of encrypted data).
115     - Added the --gpg-default-key option to have fwknop use the default GnuPG
116       key that is defined in the ~/.gnupg/options file.
117     - Added the --URL command line argument so that a URL other than the
118       default http://www.whatismyip.com/ can be provided by the user for
119       external IP resolution (suggested by Sebastien J.).
120     - Updated to be more rigorous with md5 sums; we now require that the
121       md5_base64() function actually returns a non-null result.
122     - Bugfix to make sure that only the users associated with the a specific
123       REQUIRE_USERNAME value (in a specific SOURCE block in access.conf) are
124       granted the appropriate access even if a valid encrypted packet is
125       constructed from a different user name (by an fwknop client).
126     - Populated the _debug option in the IPTables::ChainMgr module, and also
127       added a _verbose option so that the specific iptables commands can
128       actually be seen as IPTables::ChainMgr functions are called.
129     - Added code to install.pl to update command paths in fwknop.conf and
130       knopwatchd.conf if any of the paths are broken (i.e. the local system
131       does not conform to the default paths).  By default this only happens if
132       the user does not want old configs to be merged, but to override this
133       use the new --path-update command line argument to install.pl.
134     - Added the --Skip-mod-install command line argument to install.pl to
135       allow all perl module installs to be skipped.
136     - Added the --force-mod-regex command line argument to install.pl to allow
137       a regex match on perl module names to force matching modules to be
138       installed.
139     - Minor bugfix to generate better (i.e. closer to those that Firefox
140       generates) http requests to http://www.whatismyip.com/).
141     - Adapted Mate Wierdl's RPM patch from the psad project so that the fwknop
142       RPM builds on x86_64 systems.
143     - Removed iptables requirement in RPM spec file because fwknop may be
144       installed on a system just to run the fwknop client.
145     - Updated to email username mismatch errors.
146
147 fwknop-0.9.7 (08/04/2006):
148     - Added fwknop_serv to function as minimal TCP server over which SPA
149       packets can be sent.  This allows SPA to be compatible with the Tor
150       network, which requires that a virtual circuit is established before
151       traffic can be sent.
152     - Updated to Crypt::CBC-2.18 after a vulnerability was discovered in
153       previous versions of Crypt::CBC that caused weak ciphertext to be
154       generated for algorithms that have blocksizes greater than 8 bytes (such
155       as Rijndael used by fwknop).  Manually specifying initialization vectors
156       is not necessary now.
157     - Updated SSH patch to support OpenSSH-4.3p2.
158     - Bugfix to make sure to create /var/* directories if they don't exist
159       (such as when /var is a tmpfs).
160     - Bugfix (Dwayne Rightler) to restore -w IP lookup functionality after
161       format change on data returned by whatismyip.com.
162     - Bugfix to wrap SPA Rijndael decryption with eval{} so that fwknopd does
163       not die if there are problems trying to decrypt data.  This is necessary
164       because of the security vulnerability fix in Crypt::CBC that creates
165       some incompatibilities in different versions of Crypt::CBC.
166     - Added "--L-host" command line argument so that the arguments used for
167       multiple hosts are preserved and can be recalled.
168     - Changed default user-agent setting for whatismyip.com lookups to
169       Firefox/1.0.5.4; there is no need to gratuitously advertise fwknop
170       traffic.
171     - Updated GunPG HOWTO to provide a step-by-step guide to getting fwknop
172       Single Packet Authorization working with GnuPG.
173     - Updated to derive perl module versions from the VERSION files within
174       each of the perl module source directories.
175
176 fwknop-0.9.6 (01/13/2006):
177     - Added GPG based authentication capability for SPA packets.  This new
178       mode can be configured to require that a GPG message be signed with a
179       particular key or set of keys.
180     - In GPG mode, the fwknop client now prints GPG errors to stdout if not
181       running with --gpg-no-batch-mode.
182     - Added the ability to require that the client know the UNIX crypt()
183       password associated with a username on the server side.  This
184       functionality is enabled on the fwknop client with the "--Server-auth
185       crypt" command line argument, and the REQUIRE_AUTH_METHOD variable in
186       /etc/fwknop/access.conf on the fwknopd server.
187     - Added patch against OpenSSH-4.2p1 to integrate SPA mode.  This patch
188       adds a "-K <fwknop cmd line>" argument to the SSH client so that
189       fwknop can be executed directly before an SSH connection is made.
190     - Separated server and client portions of fwknop into "fwknopd" and
191       fwknop repectively.  This will allow better portability to be
192       developed since the client and server pieces can be developed more
193       independently.  NOTE: With so many changes, it is probably a good idea
194       to not preserve old fwknop configs via install.pl.
195     - Renamed all relevant fwknopd command and file paths to support new
196       fwknopd server component.
197     - Added --quiet mode (this is used by default in the OpenSSH patch).
198     - Removed legacy port knocking installation in install.pl (fwknopfifo,
199       and fwdata file) unless the data collection mode is set to syslog or
200       syslog-ng for legacy iptables log messages.
201     - Added inode checking for PCAP_PKT_FILE. This helps to ensure that log
202       rotation schemes don't interfere with reading packets out of the file
203       since this check is size independent.
204     - Bugfix for Makefile debug mode.
205     - Added compilation check for perl programs in install.pl before
206       installation into the filesystem.
207     - Bugfix for knopwatchd to make sure it can actually restart all running
208       daemons properly.
209     - Added --force-mod command line argument to install.pl to allow the user
210       to force all perl modules to be be installed regardless of whether a
211       module exists in the system perl lib tree.
212     - Added --no-save-args to fwknop so that existing .fwknop.run file can
213       be preserved (helps to testing new features of fwknop client).
214     - Removed useless --encrypt command line argument (only the old shared
215       port knock sequences are not encrypted).
216
217 fwknop-0.9.5 (10/02/2005):
218     - Added the ability to resolve the external IP associated with the
219       local network via http://www.whatismyip.com.  This is a more secure
220       method of accomplishing what the -s option performs.  The new
221       command line option is --whatismyip (or just -w).
222     - Updated fwknop to communicate with knoptm via a UNIX domain socket
223       instead of the previous file-based communication.
224     - Updated to flush the fwknop iptables chains at start time.
225     - Bugfix for removing the wrong hash key in the knoptm IP cache.
226
227 fwknop-0.9.4 (09/17/2005):
228     - Bugfix for knoptm timing out new entries based on old time values
229       (this caused new rules to timed out too quickly).
230     - Added support for multiple users in REQUIRE_USERNAME keyword in
231       access.conf.
232     - Added the ability to display raw encrypted packet data in client
233       mode with --verbose.
234     - Created fwknop RPM for RPM-based Linux distributions.
235     - Bugfix for inappropriate redirects in command mode where the command
236       already contained a redirect.
237
238 fwknop-0.9.3 (08/27/2005):
239     - Added an on-disk cache of md5 sums so that the md5 sum check can
240       survive restarts of fwknop.
241     - Updated install.pl to be more friendly to Mac OS X (Blair Zajac).
242     - Updated to allow access.conf variables to have values instead of just
243       being defined.
244     - Started on additional server authentication mode code (re-worked MD5
245       sum calculation to allow packet format to be extended by taking into
246       account the fwknop version number).
247
248 fwknop-0.9.2 (08/06/2005):
249     - Added FILE_PCAP data collection method when running in server mode.
250       This is a more general way of getting packets than the ULOG_PCAP
251       mode since then a normal ethernet sniffer can be used to build the
252       file.
253     - Added the ability to re-open a pcap file if its size shrinks (i.e.
254       it gets rotated out or something).
255     - Bugfix for multiple rules with the same timestamp not being timed out
256       by knoptm.
257     - Integrated spoofing capability directly within fwknop (instead of
258       using the knopspoof command) through the use of "require Net::RawIP".
259     - Better multi-protocol support in server mode.  Tcp and icmp packets
260       are properly decoded now.
261
262 fwknop-0.9.1 (07/29/2005):
263     - Added the ability to specify multiple ports/protocols to access on a
264       server with the --Access command line option.
265     - Added the ability to spoof SPA packets over icmp and tcp protocols.
266     - Added the ability to restrict access at the server to only those
267       ports defined in the OPEN_PORTS keyword.  This option is controled by
268       a new keyword "PERMIT_CLIENT_PORTS".
269     - Bugfix for MD5 sum not being properly calculated over decrypted data.
270       This allowed old packets that contained additional garbage data to
271       be replayed against an fwknop server.
272     - Updated to fall back to getpwuid() if getlogin() fails (Blair Zajac).
273     - Added --ipt-list to list all current rules in the FWKNOP iptables
274       chains.
275     - Added --ipt-flush to flush all current rules in the FWKNOP iptables
276       chains.
277     - Bugfix for the installer dying if ~/lib already exists (Blair Zajac).
278     - Updated to delay the loading of server perl modules (Net::Pcap, etc.)
279       only if we are running in server mode.
280     - Bugfix for module directory paths in install.pl.
281
282 fwknop-0.9.0 (05/29/2005):
283     - Added new authorization mode that uses Net::Pcap to read packets
284       out of a file that is written to by the ulogd pcap writer (also
285       stubbed in code to sniff packets directly off the wire).  This
286       authorization mode only requires single packets, and has many
287       characteristics that are better than simple port knocking, including
288       being non-replayable, and much more data can be sent.  This mode
289       is now the default for both the server and the client.
290     - Made the execution of knopmd optional depending on whether AUTH_MODE
291       is a pcap mode (e.g. ULOG_PCAP or PCAP).
292     - Added --Spoof-src argument so that encrypted packets can be spoofed
293       via /usr/sbin/knopspoof.
294     - Added /usr/sbin/knoptm so that firewall rules can be timed-out when
295       the server is running in PCAP mode even if new packets don't appear
296       on the wire.
297     - Updated fwknop man page to talk about the new pcap-based
298       authorization mode.
299
300 fwknop-0.5.0 (03/19/2005):
301     - Added ALERTING_METHOD to allow syslog and/or email reporting to be
302       disabled (there is a dedicated file /etc/fwknop/alert.conf that
303       governs this behavior, and both fwknop and knopwatchd reference this
304       file).
305     - Bugfix for distinguishing OPT field associated with --log-tcp-options
306       vs. --log-ip-options.
307     - Added install_perl_module() install.pl from psad to provide a
308       consistent installation interface.
309     - Applied patch to only install perl modules that are not already
310       installed (Blair Zajac).
311     - Added --last-cmd option to allow fwknop to be executed with command
312       line arguments from the previous execution (they are saved in
313       ~/.fwknop.run).
314     - Added --Home-dir option to allow the home directory to be manually
315       specified.
316     - Re-worked get_homedir() to be more friendly to systems that do not
317       necessarily have /etc/passwd (e.g. OS X).
318     - Added configuration preservation and querying for which syslog
319       daemon is running to install.pl.  These features were adapted from the
320       psad installer (http://www.cipherdyne.org/psad).
321     - Added IPTables::ChainMgr.  Fwknop uses this module to maintain
322       dedicated chains to which access rules are added.
323     - Added IPTables::Parse, which is used internally by IPTables::ChainMgr.
324     - Added __WARN__ and __DIE__ handlers so errors can easily be collected.
325
326 fwknop-0.4.2 (09/27/2004):
327     - Added init script for Fedora systems.
328     - Added --Kill, --Restart, and --Status modes (this fixes the generic
329       init script which depends on these arguments).
330
331 fwknop-0.4.1 (09/14/2004):
332     - Bugfix for legacy posf code in fwknop and variable in fwknop.conf.
333
334 fwknop-0.4 (09/10/2004):
335     - Added ability to specify multiple IPs/networks in a single SOURCE
336       definition.
337     - Better examples section in the fwknop manpage.
338     - Bugfix to make sure EMAIL_ADDRESSES variable does not contain commas
339       (any commas are translated into spaces).
340     - Added LICENSE file.
341
342 fwknop-0.3 (08/21/2004):
343     - Bugfix for tracking knock sequences by source IP address.
344     - Bugfix for knock sequence timeouts.
345     - Removed old passive OS fingerprinting code in favor of the p0f
346       strategy.
347     - Added support for taking encryption keys from a file specified on
348       the command line.
349     - Update to send "sequence decrypt failed" email message only if
350       decryption failed for all encrypt sequence SOURCE blocks.
351
352 fwknop-0.2 (07/31/2004):
353     - Implemented remote username checking in encrypted sequences.
354     - Added support for icmp in knock sequences.
355     - Added protocol rotation option for encrypted sequences.
356     - Added code for multiple SOURCE access blocks with the same source
357       net/IP.
358     - Added KNOCK_LIMIT access control variable to limit the number of
359       times a particular knock sequence is honored.
360     - Added email alerts.
361
362 fwknop-0.1 (07/08/2004):
363     - Initial release.
Note: See TracBrowser for help on using the browser.