forked from greenbone/openvas-smb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ChangeLog
528 lines (355 loc) · 16.6 KB
/
ChangeLog
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
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
2017-01-10 Hani Benhabiles <[email protected]>
* wmi/openvas_smb_interface.h (SMB_HANDLE): Define to long int.
2017-01-06 Michael Wiegand <[email protected]>
Use pkg-config for finding heimdal-gssapi and popt instead of custom
CMake modules, this enables us to set minimum required versions.
Setting required version of heimdal-gssapi to >= 1.6.0 based on report
from Dale Whitesell. Improve documentation of prerequisites and
required versions.
* CMakeLists.txt: Removed 'cmake/' directory from CMake module path.
Remove usage of 'FindPopt' and 'FindGSSAPI' modules and use
pkg_check_modules instead.
* INSTALL: Itemize prerequisites and note minimum required versions
where they are known.
* samba/CMakeLists.txt: Use variable set by pkg_check_modules for
include_directories. Use static GSSAPI flags for linking samba-static.
* winexe/CMakeLists.txt: Removed redundant find_package for GnuTLS.
Remove redundant use of GSSAPI libraries in linker command since they
are already passed to the linker via the samba-static target.
* wmi/CMakeLists.txt: Removed redundant use of GSSAPI libraries in
linker command since they are already passed to the linker via the
samba-static target.
* cmake/FindGSSAPI.cmake: Removed now obsolete CMake module.
* cmake/FindPopt.cmake: Removed now obsolete CMake module.
* cmake/: Remove directory.
2017-01-03 Hani Benhabiles <[email protected]>
* samba/lib/tls/tls.c (tls_init_client): Fix build warnings on recent
gnutls versions due to usage of deprecated types.
2017-01-03 Hani Benhabiles <[email protected]>
* samba/lib/tls/tls.c (tls_init_client): Remove superfluous call to
deprecated gnutls_certificate_type_set_priority() as gnutls_set_default_priority()
is already called. Fixes build with recent gnutls versions.
2016-12-19 Michael Wiegand <[email protected]>
* INSTALL: Use more appropriate package in 'apt-get' line.
2016-11-25 Michael Wiegand <[email protected]>
Streamline handling of version information.
* CMakeLists.txt: Raise minimum required CMake version to 3.0 to make
setting the project version with the PROJECT command available. Set
project version using PROJECT command. Set project language properly.
Check parent directory when setting SVN_EXECUTABLE, because since 1.7
svn has a single .svn directory. Set project version independently of
CPack configuration. Make switching between beta and stable version
schemes easier. Use version string with possible SVN revision suffix
for the CPack package version. Do not set LIBOPENVASCONFIG_VERSION and
OPENVASLIB_VERSION since both are unused.
* winexe/CMakeLists.txt: Set SOVERSION from PROJECT_VERSION_MAJOR
instead of CPACK_PACKAGE_VERSION_MAJOR.
* wmi/CMakeLists.txt: Set SOVERSION from PROJECT_VERSION_MAJOR
instead of CPACK_PACKAGE_VERSION_MAJOR.
2016-11-09 Michael Wiegand <[email protected]>
Post release version bump.
* CMakeLists.txt: Updated version to 1.0.3.
2016-11-09 Michael Wiegand <[email protected]>
Preparing the openvas-smb 1.0.2 release.
* CHANGES: Updated.
2016-09-21 Christian Fischer <[email protected]>
* samba/pidl/pidl (process_file): Removed deprecated
defined call on array. Patch by Sebastien Aucouturier.
2016-09-21 Christian Fischer <[email protected]>
* INSTALL: Added missing install prerequisites on debian.
2016-06-30 Jan-Oliver Wagner <[email protected]>
* doc/winexe.1.xml: New. Man page for winexe.
* doc/wmic.1.xml: New. Man page for wmic.
* doc/winexe.1, doc/winexe.html: New. Generated from
winexe.1.xml.
* doc/wmic.1, doc/wmic.html: New. Generated from
wmic.1.xml.
* doc/CMakeLists.txt: Add subdirectory "doc" and define
DATADIR to make man page installation happy.
2016-06-14 Jan-Oliver Wagner <[email protected]>
* CMakeLists.txt: Imcrease dependency for gnutls from 2.12 to
3.2.15 in order to enforce the presence of newer (more secure)
TLS and ciphers.
2016-04-18 Michael Wiegand <[email protected]>
* CMakeLists.txt: Simplify CPACK_SOURCE_IGNORE_FILES by ignoring the
entire build directory.
2016-04-08 Michael Wiegand <[email protected]>
* INSTALL: Update reference system and add apt-get line suggested by
Christian Fischer.
2016-01-11 Michael Wiegand <[email protected]>
Make a better distinction between hardening flags for compiling and
for linking to avoid using flags in a context where they make no
sense.
* CMakeLists.txt: Separate linker hardening flags from compiler
hardening flags.
* winexe/CMakeLists.txt, wmi/CMakeLists.txt: Use linker hardening
flags when linking.
2015-08-24 Michael Wiegand <[email protected]>
* winexe/CMakeLists.txt, wmi/CMakeLists.txt: Add .map files as library
sources and not as dependency between targets since the files are
static and there is no target providing the files.
2015-08-24 Michael Wiegand <[email protected]>
* winexe/CMakeLists.txt: Add proper checks and flags for glib usage.
2015-08-24 Michael Wiegand <[email protected]>
* winexe/wincmd.c: Include glib.h since g_malloc0 is used.
2015-08-24 Michael Wiegand <[email protected]>
* winexe/CMakeLists.txt, wmi/CMakeLists.txt: Remove superfluous
linking against libresolv.
* CMakeLists.txt: Use SEND_ERROR instead of FATAL_ERROR for
consistency.
2015-07-30 Sven Haardiek <[email protected]>
* CMakeLists.txt: Change non release version style to fit better to debian
2015-07-13 Michael Wiegand <[email protected]>
* samba/auth/auth_sam_reply.c (auth_convert_server_info_sambaseinfo):
Correct redundant assignment as suggested by Miguel Angel Cabrera
Moya.
2015-04-15 Andre Heinecke <[email protected]>
Fix heimdal detection for RHEL Systems.
* cmake/FindGSSAPI.cmake: Check for heimdal-krb5-config.
2015-03-16 Andre Heinecke <[email protected]>
Use mv -f to move generated tables file to tables.c
* samba/CMakeLists.txt: Use mv -f.
2015-03-13 Michael Wiegand <[email protected]>
Post release version bump.
* CMakeLists.txt: Updated version to 1.0.2.
2015-03-13 Michael Wiegand <[email protected]>
Preparing the openvas-smb 1.0.1 release.
* CHANGES: Updated.
2015-03-13 Benoît Allard <[email protected]>
* winexe/CMakeLists.txt, INSTALL: Make it compile on jessie.
2015-02-24 Andre Heinecke <[email protected]>
Enable building with ninja. Improve buildsystem.
This also solves an issue that some source files were compiled
more then once.
* wmi/CMakeLists.txt: Do not use samba source directly.
* samba/CMakeLists.txt: Fix generator command outputs.
Add files needed by wmi. sort -u.
2015-02-23 Andre Heinecke <[email protected]>
Hide private wincmd symbols.
* winexe/wincmd.map: New.
* winexe/CMakeLists.txt: Use symbol map.
2015-02-23 Andre Heinecke <[email protected]>
Hide private wmiclient symbols.
* wmi/wmiclient.map: New.
* wmi/CMakeLists.txt: Use symbol map. Split out common src.
2015-02-23 Benoît Allard <[email protected]>
Fix small typos in texts.
* winexe/winexe.c, winexe/wincmd.c, samba/auth/kerberos/kerberos_util.c,
samba/auth/credentials/credentials_krb5.c: Updated
2015-02-11 Andre Heinecke <[email protected]>
* wmi/CMakeLists.txt, winexe/CMakeLists.txt: Link used libraries
explicitly.
2015-02-11 Michael Wiegand <[email protected]>
* samba/lib/tls/tls.c (tls_init_server, tls_init_client): Remove calls
to gnutls_transport_set_lowat (). It is no longer necessary with the
supported GnuTLS >= 2.12 and is deprecated in GnuTLS 3.
2015-02-10 Andre Heinecke <[email protected]>
Add includedir to pkg-config.
* libopenvas_wmiclient.pc.in, libopenvas_wincmd.pc.in:
Add include directory to CFLAGS.
2015-02-10 Andre Heinecke <[email protected]>
Install public headers
* CMakeLists.txt: Set includedir similar to openvas-libaries.
* wmi/CMakeLists.txt: Install public headers.
2015-02-09 Michael Wiegand <[email protected]>
Post release version bump.
* CMakeLists.txt: Updated version to 1.0.1.
2015-02-09 Michael Wiegand <[email protected]>
Preparing the openvas-smb 1.0.0 release.
* CHANGES: Updated.
* CMakeLists.txt: Switch version scheme, set version to 1.0.0.
2015-01-29 Andre Heinecke <[email protected]>
Remove duplicated rpc interface inclusion.
* samba/CMakeLists.txt (RPC_GEN_SRC): sort -u
* samba/CMakeLists.txt (RPC_GEN_HEADERS): Filter out
headers for sources with _c.c suffix.
2015-01-28 Andre Heinecke <[email protected]>
Add WMI command line tool.
* wmi/wmic.c: New. From wmi-1.3.14.
* wmi/CMakeLists.txt: Build and install wmic.
2015-01-28 Andre Heinecke <[email protected]>
Add support for additional rpc interfaces.
* samba/lib/compression/mszip.c: New. From wmi-1.3.14.
* samba/CMakeLists.txt: Extend generated idl
tables. Add additional files.
* samba/librpc/rpc/table.c (idl_iface_by_name),
(idl_iface_by_uuid): Add warning if lookup fails.
2015-01-26 Andre Heinecke <[email protected]>
* winexe/winexe.c (main), winexe/wincmd.c (wincmd):
Disable ntlmv2 if requested.
* samba/param/loadparm.c (init_globals): Make ntlmv2
client auth default.
2015-01-26 Andre Heinecke <[email protected]>
* winexe/winexe.c (parse_args),
winexe/wincmd.c (parse_args): Add ntlmv1 option.
* winexe/wincmd.c (wincmd),
winexe/winexe.c (main): Enable ntlmv2 authentication
by default.
2015-01-26 Andre Heinecke <[email protected]>
* winexe/winexesvc_exe.c: Removed. This file is generated.
2015-01-23 Andre Heinecke <[email protected]>
* samba/CMakeLists.txt: Clear up comments.
* wmi/CMakeLists.txt: Remove obsolete include dirs.
* winexe/CMakeLists.txt: Find gnutls dynamically.
2015-01-22 Andre Heinecke <[email protected]>
* samba/CMakeLists.txt: Configure dynconfig.c.in
* samba/dynconfig.c: Renable to dynconfig.c.in
2015-01-22 Andre Heinecke <[email protected]>
* winexe/wincmd.c(on_io_pipe_read, on_err_pipe_read): Limit
output length to avoid overflow in result buffer.
2015-01-22 Andre Heinecke <[email protected]>
* cmake/FindGSSAPI.cmake: Remove MIT detection.
Enable multidev detection.
* INSTALL: Mention the multidev alternative.
2015-01-21 Andre Heinecke <[email protected]>
* winexe/wincmd.c (smb_close): Remove and replace
by direct usage of talloc_free.
2015-01-21 Andre Heinecke <[email protected]>
* winexe/wincmd.c (on_ctrl_pipe_error, on_ctrl_pipe_read)
(on_ctrl_pipe_close): Fix pipe name.
2015-01-21 Andre Heinecke <[email protected]>
* samba/include/config.h: Remove unused / wrong size macros.
* samba/lib/replace/replace.c (rep_strtoll, rep_strtoull):
Remove unused portability code.
2015-01-21 Andre Heinecke <[email protected]>
* CMakeLists.txt: Disable strict-aliasing again.
2015-01-21 Andre Heinecke <[email protected]>
* CMakeLists.txt: Fix check for heimdal flavor.
2015-01-20 Andre Heinecke <[email protected]>
* winexe/CMakeLists.txt, samba/CMakeLists.txt: Remove
unused include dir.
* samba/torture: Remove recursively.
2015-01-20 Andre Heinecke <[email protected]>
Remove included popt code and use system libray
* INSTALL: Note down depedency.
* cmake/FindPopt.cmake: New.
* samba/lib/popt: Removed recursively.
* CMakeLists.txt: Find popt.
* winexe/CMakeLists.txt: Link / include popt.
* samba/CMakeLists.txt: Include popt headers.
2015-01-20 Andre Heinecke <[email protected]>
* samba/FindGSSAPI.cmake: Add BSD license terms.
2015-01-20 Andre Heinecke <[email protected]>
Removal of included heimdal code. Using system heimdal libraries now.
* CMakeLists.txt: Add lookup for GSSAPI. For now force heimdal.
* CMakeLists.txt (CMAKE_C_FLAGS): Use strict-aliasing rules.
Ignore unused return values.
* cmake/FindGSSAPI.cmake: New.
* samba/auth/kerberos/krb5_init_context.c (smb_krb5_init_context): Fix
use of internal API. Forced timeout to 3s set krb5_context differently.
* dsdb/samdb/ldb_modules/password_hash.c (setup_kerberos_keys): Fix
call signature of hdb_generate_key_set_password.
* samba/CMakeLists.txt: Remove heimdal code.
* winexe/CMakeLists.txt: Link gssapi libraries.
* INSTALL: Note heimdal-dev dependency.
* samba/auth/credentials/credentials_krb5.h,
samba/auth/kerberos/clikrb5.c,
samba/auth/kerberos/krb5_init_context.c,
samba/kdc/kdc.h,
samba/lib/replace/system/kerberos.h:
* samba/lib/crypto/md5.c (_Samba_MD5Final): Disable
strict-aliasing for a segment.
* samba/dsdb/samdb/cracknames.c (DsCrackNameSPNAlias),
samba/auth/gensec/gensec_gssapi.c (gensec_gssapi_session_info): Fix
usage of old macro name.
* samba/heimdal, samba/heimdal_build: Removed recursively.
2015-01-15 Michael Wiegand <[email protected]>
* CMakeLists.txt: Remove meaningless REQUIRED from include.
2015-01-14 Michael Wiegand <[email protected]>
Post release version bump.
* CMakeLists.txt: Updated version to 1.0+beta2.
2015-01-14 Michael Wiegand <[email protected]>
Preparing the openvas-smb 1.0+beta1 release.
* CHANGES: New.
* CMakeLists.txt: Set version to 1.0+beta1.
2015-01-14 Andre Heinecke <[email protected]>
* samba/CMakeLists.txt: Remove accidental dependency to configure
file.
* samba/heimdal/cf/check-var.m4,
samba/heimdal/cf/find-func-no-libs.m4,
samba/heimdal/cf/find-func-no-libs2.m4,
samba/heimdal/cf/find-func.m4,
samba/heimdal/cf/resolv.m4,
samba/lib/json/configure,
samba/lib/ldb/aclocal.m4,
samba/lib/ldb/autogen.sh,
samba/lib/ldb/config.guess,
samba/lib/ldb/config.sub,
samba/lib/ldb/configure.ac,
samba/lib/ldb/docs/builddocs.sh,
samba/lib/ldb/docs/design.txt,
samba/lib/ldb/docs/installdocs.sh,
samba/lib/ldb/install-sh,
samba/lib/ldb/ldb.pc,
samba/lib/ldb/ldb.pc.in,
samba/lib/ldb/ldb_sqlite3/schema,
samba/lib/ldb/man,
samba/lib/ldb/man/ad2oLschema.1.xml,
samba/lib/ldb/man/ldbsearch.1.xml,
samba/lib/ldb/man/oLschema2ldif.1.xml,
samba/lib/ldb/standalone.sh,
samba/lib/ldb/tests,
samba/lib/ldb/tests/init_slapd.sh,
samba/lib/ldb/tests/kill_slapd.sh,
samba/lib/ldb/tests/ldapi_url.sh,
samba/lib/ldb/tests/photo.ldif,
samba/lib/ldb/tests/schema-tests,
samba/lib/ldb/tests/schema-tests/schema-add-test.ldif,
samba/lib/ldb/tests/schema-tests/schema-mod-test-1.ldif,
samba/lib/ldb/tests/schema-tests/schema-mod-test-2.ldif,
samba/lib/ldb/tests/schema-tests/schema-mod-test-3.ldif,
samba/lib/ldb/tests/schema-tests/schema-mod-test-4.ldif,
samba/lib/ldb/tests/schema-tests/schema-mod-test-5.ldif,
samba/lib/ldb/tests/schema-tests/schema.ldif,
samba/lib/ldb/tests/slapd.conf,
samba/lib/ldb/tests/start_slapd.sh,
samba/lib/ldb/tests/test-config.ldif,
samba/lib/ldb/tests/test-default-config.ldif,
samba/lib/ldb/tests/test-extended.sh,
samba/lib/ldb/tests/test-generic.sh,
samba/lib/ldb/tests/test-ldap.sh,
samba/lib/ldb/tests/test-schema.sh,
samba/lib/ldb/tests/test-sqlite3.sh,
samba/lib/ldb/tests/test-tdb-features.sh,
samba/lib/ldb/tests/test-tdb.sh,
samba/lib/ldb/tests/test-wildcard.ldif,
samba/lib/ldb/tests/testsearch.txt,
samba/lib/replace/system/config.m4,
samba/lib/tdb/aclocal.m4,
samba/lib/tdb/autogen.sh,
samba/lib/tdb/config.guess,
samba/lib/tdb/config.sub,
samba/lib/tdb/configure.ac,
samba/lib/tdb/docs/tdb.magic,
samba/lib/tdb/install-sh,
samba/lib/tdb/tdb.pc,
samba/lib/tdb/tdb.pc.in,
samba/librpc/dcerpc.pc,
samba/librpc/ndr.pc,
samba/librpc/ndr_compression.pc: Remove obviously
obsolete files.
2015-01-14 Andre Heinecke <[email protected]>
* wmi/winsmb.c: Remove uneccessary include to readline.h.
* samba/lib/replace/system/readline.h: Remove unused wrapper.
2015-01-14 Andre Heinecke <[email protected]>
* winexe/CMakeLists.txt, wmi/CMakeLists.txt:
Include internal popt directory.
2015-01-14 Andre Heinecke <[email protected]>
* samba/heimdal/lib/des/hcrypto: Remove symlink
* samba/heimdal/lib/des/dh.h,
samba/heimdal/lib/des/dsa.h,
samba/heimdal/lib/des/engine.h,
samba/heimdal/lib/des/evp.h,
samba/heimdal/lib/des/hcrypto,
samba/heimdal/lib/des/hmac.h,
samba/heimdal/lib/des/pkcs12.h,
samba/heimdal/lib/des/rand.h,
samba/heimdal/lib/des/rsa.h: Fix includes not to need hcyrpto dir.
2015-01-14 Michael Wiegand <[email protected]>
* winexe/CMakeLists.txt: Use SEND_ERROR instead of FATAL_ERROR for
consistency.
2015-01-14 Michael Wiegand <[email protected]>
* README: Fix typo.
2015-01-14 Michael Wiegand <[email protected]>
Initial commit of openvas-smb module code, prepared by Andre Heinecke
and Jan-Oliver Wagner. Starting ChangeLog.