-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCHANGELOG
More file actions
263 lines (212 loc) · 12 KB
/
Copy pathCHANGELOG
File metadata and controls
263 lines (212 loc) · 12 KB
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
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
/***********************************************************************
* *
* _ _____ ____ *
* /\ | | | __ \ /\ | _ \ /\ *
* / \ | | | | | | / \ | |_) | / \ *
* / /\ \ | | | | | | / /\ \ | _ < / /\ \ *
* / ____ \ | |___ | |__| / / ____ \ | |_) / / ____ \ *
* /_/ \_\ | ____| |_____/ /_/ \_\ |____/ /_/ \_\ *
* *
* *
* --[ALDABA CHANGELOG]-- *
* *
************************************************************************/
Version 0.2.2 Feb 23, 2014.
- Added the ability to accept incoming connections (after a successful
authentication) only for a period of time. By default new connections
from the authorized IPs are allowed for 120 seconds. After that,
the firewall rule is modified to only allow traffic for already
established connections. Aldaba Server now provides a new command
line switch (-o, --open-time) to tune such time interval.
This feature has been implemented by Sergio Ortega
(SergioOrtega89@gmail.com).
- Minor changes to avoid compiler warnings.
Version 0.2.1 Nov 20, 2010.
- Added support for IP address forwarding to the SPA protocol. This lets
Aldaba Server act as a NAT traversal facilitator. It should be noted that
this change breaks backward compatibility with the implementation of SPA
in release 0.2.0.
- Added support for configuration files in both client and server. Now
default config files are installed and read when running "aldaba start" or
"aldabad start". Also, custom config files may be supplied through the
command line using the --config parameter.
- Fixed a bug in verbosity level specification.
Version 0.2.0 Nov 15, 2010.
- Aldaba has been completly rewritten in C++.
- Full support for IPv6
- Flexible covert channel field specification.
- Improved crypto key generation.
- Improved SPA protocol.
- Added full protection against replay attacks.
- Improved documentation.
- Improved installation process.
Version 0.1.7 May 5, 2008.
- Client and Server have been merged into a single source package. This should
improve maintainability. No more copy & paste from one side to the other.
- There has been a little adjustment in server's version number. This version
should have been server's 0.1.5 but as from now on, client and server will
have the same version number, I've decided to "upgrade" the server to 0.1.7.
- Added additional instalation modes to Makefile
- Installation now makes a backup of configuration files and scripts before
overwritting.
- Little improvements in data wiping functions.
- Updated Aldaba tutorial.
- Fixed some errors in man pages.
+------------------------------------------------------------------------------+
| |
| Since version 0.1.7, Aldaba Client and Aldaba Server are distributed in a |
| single source package. The following changelogs correspond to old versions, |
| prior to the merge. |
| |
+------------------------------------------------------------------------------+
+-------------------------+
| ALDABA SERVER CHANGELOG |
+-------------------------+
Version 0.1.4 Apr 29, 2008.
- Fixed bug in file parser. Reported and fixed by Joshua Caster.
- Added code to wipe sensitive data (encryption keys, etc) before exiting
the application or when the SIGINT signal is delivered.
- Added code to test the correctness of crypto functions. Now, when the
program starts, ciphers and hash functions are tested against known
correct values.
Version 0.1.3 Dec 24, 2007.
- New checksum format. From now on, SPA packets will use SHA256 checksums as
MD5 is not secure anymore.
- SPA "command" field has been reduced from 200 bytes to 184 due to the use of
SHA256 checksums that take 16 bytes more than MD5.
- Added support for new encryption algorithms. Now, the following ciphers can
be used to encrypt/decrypt SPA packets:
- Rijndael (AES contest winner)
- Twofish (AES contest third position)
- Serpent (AES contest second position)
- Blowfish
Note that IP-Id technique needs to use blowfish because it needs ciphers
with a block size of 64bits or less.
- Fixed typo in --help output
Version 0.1.2 Nov 19, 2007.
- Added basic support for other data-link types than Ethernet. Currently
supported data-link types are: 802.3, 802.11, PPPoE, Loopback and FDDI.
- Fixed a possible buffer overflow while printing Ethernet headers.
- Added support for new version of Aldaba SPA Protocol. Currently this
protocol does the same as the previous one but it will support a lot of
interesting features in future releases. These include support for one time
passwords, challenge/response authentication, timestamp based authentication
remote command execution etc.
- Source files were completely reorganized.
- Minor bugfixes.
Version 0.1.1 Oct 11, 2007.
- Some functions were moved to different source files. (Mainly because it
did not make much sense to be where they used to.
- Output of --help changed. Now, instead of a big manpage a simple usage
message is displayed.
- Added support for configuration files. A config file parser was written
using a template created by tool GNU gengetopt.
- Minor changes in the argument parsing process were made.
- The "UDP technique" was renamed to "SPA technique". Many functions and
variable names were changed.
- Added option "start" that forces configuration to be read from file
/etc/aldabad/aldaba.conf
- Changed argparser: Now case is ignored when parsing long arg names.
- Minor change in the way encryption keys were being displayed in high
verbosity modes. Now only first and last 2 bytes are displayed, enough to
check for errors.
Version 0.1. Sep 30, 2007.
- The way blowfish encryption keys were being used has changed. Now the
encryption key is the MD5 hash of the user-supplied passphrase (salted with
a 4-byte value).
- Added --debug switch. It sets maximum verbosity and disables daemon mode.
- Added --quiet switch. It sets verbosity and logging levels to zero.
- Argparser rewritten. Added support for longer arg names like --interface.
Version 0.1.beta2. Sep 21, 2007.
- Fixed a bug in the parsing of the -t parameter. The number of supplied ports
was not being checked. Now exactly 4 ports must be supplied for the IP-Id
technique and up to ten ports for the UDP technique.
- Now when the parameter -t is supplied with only one port, the UDP technique
is assumed automatically.
- Changed Makefile. Now scripts are installed in mode 751 so regular users do
not have permissions to read their contents.
- Fixed a bug in the manpage and the --help output. Info about parameter -t
was missing.
- Fixed a bug in the execution of the open/close scripts. Added symbol "&" to
the system() call so scripts are executed in the background. Otherwise scripts
could hung the server if they do not return immediatly.
Version 0.1.beta1. Sep 4, 2007.
- Initial release.
+-------------------------+
| ALDABA CLIENT CHANGELOG |
+-------------------------+
Version 0.1.6 Apr 7, 2008.
- Added code to wipe sensitive data (encryption keys, etc) before exiting
the application or when the SIGINT signal is delivered.
- Added code to test the correctness of crypto functions. Now, when the
program starts, ciphers and hash functions are tested against known correct
values.
Version 0.1.5 Dec 24, 2007.
- New checksum format. From now on, SPA packets will use SHA256 checksums as
MD5 is not secure anymore.
- SPA "command" field has been reduced from 200 bytes to 184 due to the use of
SHA256 checksums that take 16 bytes more than MD5.
- Added support for new encryption algorithms. Now, the following ciphers can
be used to encrypt/decrypt SPA packets:
- Rijndael (AES contest winner)
- Twofish (AES contest third position)
- Serpent (AES contest second position)
- Blowfish
Note that IP-Id technique needs to use blowfish because it needs ciphers
with a block size of 64bits or less.
Version 0.1.4 Nov 19, 2007.
- Added option --dont-send. This option prevents Aldaba-client from actually
sending any packet. It simulates it does but no information is sent to
the network. Note that this option only disables Knock and SPA packets.
DNS lookups and HTTP requests for option --resolve-IP will still be sent.
- Added support for new version of Aldaba SPA Protocol. Currently this
protocol does the same as the previous one but it will support a lot of
interesting features in future releases. These include support for one time
passwords, challenge/response authentication, timestamp based authentication
remote command execution etc.
- Source files were completely reorganized.
- Minor bugfixes.
Version 0.1.3 Oct 31, 2007.
- Fixed a bug in the parser for args --knock-IP and --source-IP.
- Added support for noise packets. This is, extra packets sent to prevent
attackers with sniffing capabilities to guess the Knock sequence. A positive
integer may be specified using the --noise param.
- Changed the format IP-Id packets are displayed to stdout. Now they are
printed as rows of a table. Additional information is shown.
- Changed the way TCP/IP packets are crafted. Now there is a separate function
to do it, including computing checksum.
- Random number generator implemented. It is based on current pid, current
uid, current time and 4 random bytes read from /dev/random. This should be
enough for a port knocking client.
- Added support for decoys (additional IPs to send fake knocks from). This
adds some obscurity to the knocking process. This feature can be combined
with noise for extra effect.
- Added support for an external IP resolver. Now, the internet-side IP address
may be resolved using the service http://whatismyip.aldabaknocking.com.
This is useful in NATed networks where the knocking information should not
contain a local area network address but an external IP.
Version 0.1.2 Oct 11, 2007.
- Some functions were moved to different source files. (Mainly because it
did not make much sense to be where they used to.
- Output of --help changed. Now, instead of a big manpage a simple usage
message is displayed.
- Added support for config files. Because of this, the argparser was rewritten
to use separate functions to process each type of argument.
Config files can be specified using the --config="" parameter.
- Minor change in the way encryption keys were being displayed in high
verbosity modes. Now only first and last 2 bytes are displayed, enough to
check for errors.
Version 0.1.1 Sep 30, 2007.
- Fixed a bug in the computation of IP, TCP and UDP checksums.
- Now when the parameter -t is supplied with only one port, the UDP technique
is assumed automatically.
- Fixed a bug in the parsing of the -i parameter. Before, the user was being
completely ignored and the interface "eth0" was being used in all cases.
- Fixed a bug in the manpage and the --help output. Info about parameter -t
was missing.
- "Argparser rewritten. Added support for longer arg names like --source-IP.
- The way blowfish encryption keys were being used has changed. Now the
encryption key is the MD5 hash of the user-supplied passphrase (salted with
a 4-byte value).
Version 0.1
- Initial release.