root/fwknop/tags/fwknop-1.8.3/ChangeLog

Revision 809, 23.7 kB (checked in by mbr, 2 years ago)

fwknop-1.8.3 release

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