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 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363
|
2008-06-30 Michael Wiegand <michael.wiegand@intevation.de>
Doing the 1.0.2 release.
* VERSION: Set to 1.0.2.
* CHANGES: Updated.
2008-06-27 Jan-Oliver Wagner <jan-oliver.wagner@intevation.de>
* libopenvas-config.in: fix variable replacement problems.
Original problem report and initial patch supplied by
Ales Nosek.
2008-06-25 Jan-Oliver Wagner <jan-oliver.wagner@intevation.de>
Simplify handling of libopenvas-config: The two-step
method is not necessary.
* libopenvas-config.pre.in: Removed. Renamed to
libopenvas-config.in.
* libopenvas-config.in: New. Former libopenvas-config.pre.in.
* configure.in: Process libopenvas-config.in instead of
libopenvas-config.pre.in.
* Makefile: Removed any processing of libopenvas-config.
* configure: Updated.
* MANIFEST: Updated.
2008-06-25 Jan-Oliver Wagner <jan-oliver.wagner@intevation.de>
Removing handling of "CIPHER" information because
the client-server communication is always encrypted.
* configure.in: Removed handling of "cipher_cflags"
and "use_cipher". This means the option --enable-cipher
is not available anymore.
* libopenvas-config.pre.in: Removed handling of CIPHER and
CIPHER_CFLAGS.
* openvas-libraries.tmpl.in: Removed handling of
USE_CIPHER and CIPHER_CFLAGS.
* INSTALL_README: only slightly improved. Now does
not mention anymore --enable-cipher option.
* configure: Updated.
2008-06-20 Tim Brown <timb@nth-dimension.org.uk>
* libopenvas/hlst.c (sort_hlst): Avoid sorting an hlst if it has no
entries since that will lead to an emalloc issue under certain
conditions.
2008-06-12 Michael Wiegand <michael.wiegand@intevation.de>
* libopenvas/store_internal.h: Increased MAGIC number to reflect
changes as suggested by Bernhard Herzog. Deleting
/lib/openvas/plugins/.desc/* is no longer neccessary.
2008-06-12 Michael Wiegand <michael.wiegand@intevation.de>
Increased the space available to plugins for preferences
storage. This resolves an issue with plugins with a large
number of radio button options, as they need to store the
text for all options in the name field.
IMPORTANT: You need to delete the server plugin cache in
/lib/openvas/plugins/.desc/* to force the server to create
a new cache after compiling with this change. Otherwise the
server will send wrong plugin information to the client,
resulting in missing options in the preferences.
* libopenvas/store_internal.h: Increased size of name field
in pprefs struct to allow for plugins with many preferences.
2008-05-06 Jan-Oliver Wagner <jan-oliver.wagner@intevation.de>
* libopenvas/store_internal.h: Increased MAGIC number, lowered size
of oid vom 1024 bytes to 100.
2008-05-06 Jan-Oliver Wagner <jan-oliver.wagner@intevation.de>
* libopenvas/ntp.h: New. Contains the definition for ntp_caps (taken
from comm.h) and the makros for NTP protocol IDs (taken
from ntp.h of package openvas-server)
* libopenvas/comm.h: Removed definition of ntp_caps and cleaned up.
* Makefile: Install ntp.h as well.
* MANIFEST: Updated.
2008-05-06 Jan-Oliver Wagner <jan-oliver.wagner@intevation.de>
* include/nessus-devel.h: Removed. It wasn't included anywhere in OpenVAS.
* MANIFEST: Updated.
2008-05-02 Javier Fernndez-Sanguino Pea <jfs@computer.org>
* libopenvas/Makefile, libopenvas_hg/Makefile, openvas-libraries.tmpl.in:
Fix the build process to get the libraries to include
their linked libraries.
* packaging/debian/control, packaging/debian/changelog: New package
version, fixing build-dep
2008-05-02 Jan-Oliver Wagner <jan-oliver.wagner@intevation.de>
* libopenvas/Makefile: Fixed all dependencies on header files. Removed
non-existing module "ptycall".
* libopenvas/kb.c: Fixed include method.
* libopenvas/store_internal.h: Added missing proto for store_fetch_oid()
2008-04-30 Tim Brown <timb@nth-dimension.org.uk>
* libopenvas/comm.h, libopenvas/plugutils.c, libopenvas/store_internal.h,
libopenvas/plugutils.h, libopenvas/plugutils_internal.h,
libopenvas/store.c: Preliminary support for script_oid function.
* packaging/debian/control, packaging/debian/copyright: Minor updates to
control and copyright file to fix issues highlighted by jfs in regard to
the priority and copyright of the packaging respectively.
* packaging/debian/control: Minor update to control to fix differing
dependency between openvas-libraries and openvas-libnasl as
highlighted by jfs.
2008-04-18 Jan-Oliver Wagner <jan-oliver.wagner@intevation.de>
* packaging/fedora: New. Directory for Fedora RPM files.
* fedora/openvas-libraries-1.0.1-1.fc8.openvas.spec,
fedora/openvas-libraries-1.0.1-hg-Makefile.diff
fedora/openvas-libraries-1.0.1-Makefile.diff: New.
* MANIFEST.
2008-04-16 Jan-Oliver Wagner <jan-oliver.wagner@intevation.de>
* packaging/opensuse: New. Directory for OpenSUSE RPM files.
* packaging/opensuse/openvas-libraries-1.0.1-1.suse102.openvas.spec,
packaging/opensuse/openvas-libraries-1.0.1-Makefile.diff,
packaging/opensuse/openvas-libraries-1.0.1-hg-Makefile.diff: New.
2008-04-16 Jan-Oliver Wagner <jan-oliver.wagner@intevation.de>
* libopenvas/network.c (open_socket): Fixed makro name for SSL debugging
and thus reactived code execute for debug-ssl mode.
2008-04-16 Jan-Oliver Wagner <jan-oliver.wagner@intevation.de>
* Makefile, libopenvas_hg/Makefile: Add missing DESTDIR for install
targets.
2008-04-16 Jan-Oliver Wagner <jan-oliver.wagner@intevation.de>
* INSTALL_README: Remove note about bison as it is not needed anymore.
2008-04-16 Tim Brown <timb@nth-dimension.org.uk>
* packaging/debian/*: Minor fixes, now lintian clean.
2008-04-02 Tim Brown <timb@nth-dimension.org.uk>
* packaging/debian/changelog: Updated for new upstream release
2008-04-01 Jan-Oliver Wagner <jan-oliver.wagner@intevation.de>
* VERSION: post-release version bump to 1.0.2.SVN
2008-04-01 Jan-Oliver Wagner <jan-oliver.wagner@intevation.de>
Doing the release 1.0.1.
* VERSION: Set to 1.0.1.
* CHANGES: Updated.
2008-03-27 Jan-Oliver Wagner <jan-oliver.wagner@intevation.de>
* TODO: Added item about Makefile improvements.
* MANIFEST: Fixed.
2008-03-27 Jan-Oliver Wagner <jan-oliver.wagner@intevation.de>
* include/libopenvas.h: Removed various declarations
that do not appear anywhere else in OpenVAS.
2008-03-27 Jan-Oliver Wagner <jan-oliver.wagner@intevation.de>
* include/libopenvas.h: Moved some declarations for module plugutils
to libopenvas/plugutils.h.
* libopenvas/plugutils.h: Added some declarations from
include/libopenvas.h.
2008-03-27 Jan-Oliver Wagner <jan-oliver.wagner@intevation.de>
* libopenvas/services.c, libopenvas/network.c: Removed
"ExtFunc" declarations.
2008-03-27 Jan-Oliver Wagner <jan-oliver.wagner@intevation.de>
* include/libopenvas.h: Removed Windows-Specific ifdef's.
* include/includes.h: Removed "ExtFunc".
* TODO: Changed entry about include/includes.h
2008-03-26 Jan-Oliver Wagner <jan-oliver.wagner@intevation.de>
* libopenvas/getopt1.c: Add inclusion of config.h
to have openvas-libnasl compile again.
2008-03-26 Jan-Oliver Wagner <jan-oliver.wagner@intevation.de>
* libopenvas/popen.h: Fixed proto.
2008-03-26 Jan-Oliver Wagner <jan-oliver.wagner@intevation.de>
* libopenvas/kb.h, libopenvas/store.h,
libopenvas/services1.h, libopenvas/system.h,
libopenvas/plugutils.h, libopenvas/arglists.h,
libopenvas/network.h, libopenvas/bpf_share.h,
libopenvas/share_fd.h, libopenvas/pcap_openvas.h,
libopenvas/popen.h, libopenvas/www_funcs.h:
Changed Author and Copyright to the contents of
include/libopenvas.h which is the origin of most
of the contents of the new header files.
2008-03-26 Tim Brown <timb@nth-dimension.org.uk>
* configure.in: Fix up resolv checks as dn_expand is only
a weak alias to __dn_expand. resolv.h #define's it but
autoconf never #includes that when making the check.
* configure: Updated.
2008-03-26 Jan-Oliver Wagner <jan-oliver.wagner@intevation.de>
* include/libopenvas.h: Fix up some includes.
* Makefile: Don't install includes.h, no one external
should be in need of this.
2008-03-26 Jan-Oliver Wagner <jan-oliver.wagner@intevation.de>
* libopenvas/getopt.c: Replaced inclusion of includes.h
by config.h which appears sufficient.
2008-03-26 Jan-Oliver Wagner <jan-oliver.wagner@intevation.de>
* include/getopt.h: Moved to libopenvas/
* libopenvas/getopt.h: New. Previous include/getopt.h.
* libopenvas/getopt1.c: Removed includes.h and adapted
according to move of getopt.h
* MANIFEST: Updated.
* Makefile: Reflected location change of getopt.h.
2008-03-26 Jan-Oliver Wagner <jan-oliver.wagner@intevation.de>
* libopenvas/ids_send.c: Removed inclusion of includes.h
and added FIX() definition from there.
2008-03-26 Jan-Oliver Wagner <jan-oliver.wagner@intevation.de>
* libopenvas/hlst.c: replace inlusion of "includes.h" by
respective single includes.
2008-03-24 Jan-Oliver Wagner <jan-oliver.wagner@intevation.de>
Made openvas-libraries compile after a "make clean".
* include/libopenvas.h: Moved various defines to
libopenvas/ids_send.h.
* libopenvas/ids_send.h: Added some defines moved
from libopenvas.h.
* libopenvas/plugutils.c: Added missing include.
* libopenvas/network.c: replace inlusion of "includes.h" by
respective single includes.
* libopenvas/ids_send.c: replace inlusion of "includes.h" by
respective single includes except that includes.h
remains were it is for a missing define ("FIX()").
Removed ExtFunc.
* libopenvas/ftp_funcs.h: Added missing include.
* TODO: Removed resolved entry.
2008-03-24 Jan-Oliver Wagner <jan-oliver.wagner@intevation.de>
Cleanup for module store.
* libopenvas/store.c: replace inlusion of "includes.h" by
respective single includes. Replaced PATH_MAX by MAXPATHLEN.
* libopenvas/store.h: New. Contains declarations
for module "store" (extracted from libopenvas.h)
* include/libopenvas.h: Removed declarations for store
and replaced by include of store.h.
* Makefile: Install libopenvas/store.h.
* MANIFEST: Updated.
2008-03-24 Jan-Oliver Wagner <jan-oliver.wagner@intevation.de>
* libopenvas/store.h: Renamed to store_internal.h.
* libopenvas/store_internal.h: New. Former store.h.
* libopenvas/plugutils.c: Reflect renaming of store.h to
store_internal.h.
* libopenvas/store.c: Reflect renaming of store.h to
store_internal.h and added missing includes.
* MANIFEST: Updated.
2008-03-24 Jan-Oliver Wagner <jan-oliver.wagner@intevation.de>
Cleanup for module share_fd.
* libopenvas/share_fd.c: removed inlusion of "includes.h".
* libopenvas/share_fd.h: New. Contains declarations
for module "share_fd" (extracted from libopenvas.h)
* include/libopenvas.h: Removed declarations for share_fd
and replaced by include of share_fd.
* Makefile: Install libopenvas/share_fd.h.
* MANIFEST: Updated.
2008-03-23 Jan-Oliver Wagner <jan-oliver.wagner@intevation.de>
Cleanup for modules services and services1.
* libopenvas/services.c: replace inlusion of "includes.h" by
respective single includes.
* libopenvas/services1.c: replace inlusion of "includes.h" by
respective single includes.
* libopenvas/services1.h: New. Contains declarations
for module "services1" (extracted from libopenvas.h)
* libopenvas/services.h: Moved declarations of services1 to
services1.h.
* include/libopenvas.h: Removed declarations for services1
and replaced by include of services1.
* include/popen.h: Added missing include for stdio.h.
* Makefile: Install libopenvas/services1.h.
* MANIFEST: Updated.
2008-03-23 Jan-Oliver Wagner <jan-oliver.wagner@intevation.de>
Cleanup for module scanners_utils.
* libopenvas/scanners_utils.c: replace inlusion of "includes.h" by
respective single includes. Removed ExtFunc.
* include/libopenvas.h: Removed declarations for scanners_utils
and replaced by include of scanners_utils.
* include/comm.h: Added missing include for arglists.h.
* Makefile: Install libopenvas/scanners_utils.h.
2008-03-23 Jan-Oliver Wagner <jan-oliver.wagner@intevation.de>
Cleanup for module rand.
* libopenvas/rand.c: replace inlusion of "includes.h" by
respective single includes.
* include/libopenvas.h: Removed declarations for rand
and replaced by include of proctitle.
* Makefile: Install libopenvas/rand.h.
2008-03-23 Jan-Oliver Wagner <jan-oliver.wagner@intevation.de>
Cleanup for module proctitle.
* libopenvas/proctitle.c: replace inlusion of "includes.h" by
respective single includes.
* include/libopenvas.h: Removed declarations for proctitle
and replaced by include of proctitle. The declarations were
not identical but similar enough.
* Makefile: Install libopenvas/proctitle.h.
2008-03-23 Jan-Oliver Wagner <jan-oliver.wagner@intevation.de>
* libopenvas/scanners_utils.c (qsort_compar): Made static.
2008-03-22 Jan-Oliver Wagner <jan-oliver.wagner@intevation.de>
Cleanup for module popen.
* libopenvas/popen.h: New. Contains declarations
for module "popen" (extracted from libopenvas.h)
* libopenvas/popen.c: replace inlusion of "includes.h" by
respective single includes.
* include/libopenvas.h: Moved any popen declarations
to popen.h.
* libopenvas/scanner_utils.h: Added missing include.
* Makefile: Install libopenvas/popen.h.
* MANIFEST: Updated.
2008-03-22 Jan-Oliver Wagner <jan-oliver.wagner@intevation.de>
Cleanup for module www_funcs.
* libopenvas/www_funcs.h: New. Contains declarations
for module "www_funcs" (extracted from libopenvas.h)
* libopenvas/www_funcs.c: replace inlusion of "includes.h" by
respective single includes.
* include/libopenvas.h: Moved any www_funcs declarations
to www_funcs.h.
* libopenvas/plugutils.h: Added missing include.
* Makefile: Install libopenvas/plugutils.h.
* MANIFEST: Updated.
2008-03-21 Jan-Oliver Wagner <jan-oliver.wagner@intevation.de>
Cleanup for module plugutils.
* libopenvas/plugutils.h: New. Contains declarations
for module "plugutils" (extracted from libopenvas.h)
* libopenvas/plugutils.c: replace inlusion of "includes.h" by
respective single includes. Removed "ExtFunc".
* include/libopenvas.h: Moved any plugutils declarations
to plugutils.h.
* libopenvas/comm.h, libopenvas/services.h,
libopenvas/scanners_utils.h: Remove "ExtFunc" declaration.
* Makefile: Install libopenvas/plugutils.h.
* MANIFEST: Updated.
2008-03-20 Jan-Oliver Wagner <jan-oliver.wagner@intevation.de>
* libopenvas/plugutils.h: Renamed to plugutils_internal.h.
* libopenvas/plugutils_internal.h: New. Former plugutils.h.
* libopenvas/store.c: Reflect renaming of plugutils.h to
plugutils_internal.h.
(store_get_plugin_f): Made static.
2008-03-20 Jan-Oliver Wagner <jan-oliver.wagner@intevation.de>
Cleanup for module system.
* libopenvas/system.h: New. Contains declarations
for module "system" (extracted from libopenvas.h)
* libopenvas/system.c: replace inlusion of "includes.h" by
respective single includes. Removed empty "ExtFunc".
* include/libopenvas.h: Moved any system declarations
to system.h.
* Makefile: Install libopenvas/system.h.
* MANIFEST: Updated.
2008-03-20 Jan-Oliver Wagner <jan-oliver.wagner@intevation.de>
* libopenvas/system.h: Renamed to system_internal.h
* libopenvas/system_internal.h: New. Previous system.h.
* libopenvas/harglists.c, libopenvas/pcap.c,
libopenvas/system.c, libopenvas/arglists.c,
libopenvas/Makefile, libopenvas/kb.c,
MANIFEST: Reflect name change from
system.h to system_internal.h.
2008-03-20 Jan-Oliver Wagner <jan-oliver.wagner@intevation.de>
Cleanup for module pcap.
* libopenvas/pcap_openvas.h: New. Contains declarations
for module "pcap_openvas" (extracted from libopenvas.h)
* libopenvas/pcap.c: replace inlusion of "includes.h" by
respective single includes.
* include/libopenvas.h: Moved any pcap declarations
to pcap_openvas.h.
* Makefile: Install libopenvas/pcap_openvas.h.
* MANIFEST: Updated.
2008-03-20 Jan-Oliver Wagner <jan-oliver.wagner@intevation.de>
Cleanup for module kb.
* libopenvas/kb.h: New. Contains declarations
for module "kb" (extracted from libopenvas.h)
* libopenvas/kb.c: replace inlusion of "includes.h" by
respective single includes.
* include/libopenvas.h: Moved any kb declarations
to kb.h.
* Makefile: Install libopenvas/kb.h.
* MANIFEST: Updated.
2008-03-20 Jan-Oliver Wagner <jan-oliver.wagner@intevation.de>
* include/harglists.h: Removed. Moved to libopenvas/harglists.h.
* libopenvas/harglists.h: New. Former include/harglists.h.
* Makefile: Reflect move of harglists.h.
* libopenvas/harglists.c: replace inlusion of "includes.h"
separate ones for the only needed declarations.
* MANIFEST: Updated.
2008-03-20 Jan-Oliver Wagner <jan-oliver.wagner@intevation.de>
* libopenvas_hg/Makefile: Added path to libopenvas/ for
include files. This make the library to build again.
2008-03-17 Jan-Oliver Wagner <jan-oliver.wagner@intevation.de>
Cleanup for module bpf_share.
* libopenvas/bpf_share.h: New. Contains declarations
for module "bpf_share". (extracted from libopenvas.h and removed
ExtFunc while we are at it)
* libopenvas/bpf_share.c: replace inlusion of "includes.h" by
"pcap.h" which is already sufficient.
* include/libopenvas.h: Moved any bpf_share declarations
to bpf_share.h.
* Makefile: Install libopenvas/bpf_share.h.
* MANIFEST: Updated.
2008-03-17 Jan-Oliver Wagner <jan-oliver.wagner@intevation.de>
Implementing OpenVAS Change Request #5: Remove BPF sharing feature
* configure.in: Remove option "--enable-bpf-sharing" and adapt
corresponding messages.
* configure: updated.
* README.BPF: Renamed Nessus to OpenVAS, added note that there
once was a feature for bpf-sharing.
* libopenvas/bpf_share.c: Removed the whole alternative
block for "HAVE_DEV_BPFN".
(main): Also removed the now useless=empty test frame.
* libopenvas/Makefile: bpf_sharing does not need to know
about the StateDir anymore.
* TODO: Removed entry about BPF sharing.
2008-03-17 Jan-Oliver Wagner <jan-oliver.wagner@intevation.de>
* TODO: Added entry describing how the cleanup re header files
should be continued.
2008-03-14 Jan-Oliver Wagner <jan-oliver.wagner@intevation.de>
* libopenvas/network.h: New. Contains external header information
for module "network". (extracted from libopenvas.h)
* libopenvas/ftp_funcs.h: Updated header for OpenVAS, removed
"ExtFunc".
* libopenvas/ftp_funcs.c: Updated header for OpenVASremoved "ExtFunc",
replaced includes.h by actually required includes.
* include/libopenvas.h: Moved any ftp_funcs declarations
to ftp_funcs.h. Moved most network declarations to network.h.
* Makefile: Install libopenvas/network.h and libopenvas/ftp_funcs.h.
* libopenvas/arglists.h: Added forgotten ifdef.
* MANIFEST: Updated.
2008-03-14 Jan-Oliver Wagner <jan-oliver.wagner@intevation.de>
Removing unsused module "data". It was meant as a future
replacement of arglists. However, it does only try the same
philosophy with some improvments whereas it makes more
sense to leave optimized handling to specialists like glib.
* libopenvas/data.c, include/data.h: Removed.
* TODO: Removed enty about data.c.
* MANIFEST: updated.
2008-03-14 Jan-Oliver Wagner <jan-oliver.wagner@intevation.de>
A sample cleanup for header files.
* libopenvas/arglists.h: New. Contains external header information
for module "arglists". (extracted from libopenvas.h)
* Makefile: Install libopenvas/arglists.h.
* include/libopenvas.h: Converted header block to standard one.
Removed any arglists definitions and instead includes arglists.h.
* libopenvas/arglists.c: Replace generic include of includes.h
by respective required single include statements.
Removed any use of "ExtFunc" declaration which is empty anyway.
2008-03-14 Jan-Oliver Wagner <jan-oliver.wagner@intevation.de>
* libopenvas/plugutils.c: Removed include for diff.h.
2008-03-14 Jan-Oliver Wagner <jan-oliver.wagner@intevation.de>
* include/libopenvas.h: Annotated module names, some lines reordered,
removed W32 conditional.
2008-03-14 Jan-Oliver Wagner <jan-oliver.wagner@intevation.de>
* TODO: Added entry about data.c
2008-03-13 Jan-Oliver Wagner <jan-oliver.wagner@intevation.de>
* libopenvas/Makefile: Removed handling of module "diff".
* libopenvas/diff.c, libopenvas/diff.h: Removed as the
only method "banner_diff" isn't used anywhere in OpenVAS.
* MANIFEST: updated.
2008-03-10 Jan-Oliver Wagner <jan-oliver.wagner@intevation.de>
Removing the apparently unused module "snprintf". There exists
no corresponding proto and thus it could never be used without
occuring warnings during compilation. snprintf is part of C99.
* libopenvas/Makefile: Remove handling of snprintf module.
* MANIFEST: Updated.
* libopenvas/snprintf.c: Removed.
2008-03-03 Laban Mwangi <labeneator@gmail.com>
* libopenvas/plugutils.c, libopenvas/proctitle.c,
libopenvas/store.c, libopenvas/www_funcs.c:
Adding FlawFinder ignores to various string operations
as discussed on the Mailing List.
2008-02-16 Laban Mwangi <labeneator@gmail.com>
* libopenvas/hlst.c (flush_hlst, make_hlst, sort_hlst, unsort_hlst),
libopenvas/hlst.h (_hlst): Fixing flawfinder l4 warnings
related to flawfinder thinking that a ptr in a linkedlist called
access is = the call access(2)
2008-02-15 Bernhard Herzog <bh@intevation.de>
* libopenvas/store.c (safe_copy): Cast return value strlen to
match format string. Silences a compiler warning
2008-02-15 Bernhard Herzog <bh@intevation.de>
* libopenvas/www_funcs.c (http11_get_head): Removed this unused
function. Silences a compiler warning.
2008-02-15 Bernhard Herzog <bh@intevation.de>
* libopenvas_hg/hg_dns_axfr.c (hg_dns_axfr_add_host)
(hg_dns_read_ns_from_answer, hg_dns_axfr_query): Use ns_get16
instead of _getshort. _getshort is defined in glibc but not
declared in any headerfile. ns_get16 is a newer API but should be
widely available, too.
2008-02-15 Bernhard Herzog <bh@intevation.de>
* libopenvas/hlst.c (copy_hlst): Fix Flawfinder issue.
2008-02-15 Bernhard Herzog <bh@intevation.de>
* libopenvas/harglists.c (say_creating): Fix format string to
match the types that will actually be used
(say_closing, message): Fix Flawfinder issues
(do_printf): Fix flawfinder issues. Fix gcc warnings about
fprintf args, adapting a format string to better match the purpose
of printing the value of a pointer.
2008-02-15 Jan-Oliver Wagner <jan-oliver.wagner@intevation.de>
Removal of Flawfinder issues.
* libopenvas/system.c (emalloc): replace usleep() by nanosleep().
(estrdup): Set two Flawfinder: ignore, one reported path can not
happen (now documented) and whether to use strlen() is a more general
question.
2008-02-15 Jan-Oliver Wagner <jan-oliver.wagner@intevation.de>
* libopenvas/system.c, libopenvas/system.h: Applied standard header,
added comments on unclear things.
2008-02-15 Jan-Oliver Wagner <jan-oliver.wagner@intevation.de>
* libopenvas/system.c (emalloc, erealloc): Added type cast to get rid of
compiler warning.
2008-02-12 Laban Mwangi <labeneator@gmail.com>
* INSTALL_README: Added dependent libraries (bug
fix for aid #591)
2008-02-12 Tim Brown <timb@nth-dimension.org.uk>
* packaging/debian/*: Minor fixes, now includes scripts to
allow dependents to build. Also fixed minor typo in
packaging/debian/copyright.
2008-02-05 Tim Brown <timb@nth-dimension.org.uk>
* packaging/debian/*: Minor changes, now builds lintian clean.
* packaging/debian/copyright: More information in the copyright,
including a detailed account of holders.
2007-11-07 Tim Brown <timb@nth-dimension.org.uk>
* packaging/debian/control, packaging/debian/copyright: Minor
changes to fix Homepage and Copyright directives.
2007-10-31 Jan-Oliver Wagner <jan-oliver.wagner@intevation.de>
* MANIFEST: Updated.
2007-10-31 Tim Brown <timb@nth-dimension.org.uk>
* packaging, packaging/debian: New directories.
* packaging/debian/control, packaging/debian/libopenvas.dirs,
packaging/debian/compat, packaging/debian/libopenvas-dev.install,
packaging/debian/changelog, packaging/debian/libopenvas.install,
packaging/debian/copyright, packaging/debian/rules,
packaging/debian/libopenvas-dev.dirs: New. The debian packaging files.
2007-10-12 Jan-Oliver Wagner <jan-oliver.wagner@intevation.de>
* VERSION: post-release version bump to 1.0.1.SVN
2007-10-12 Jan-Oliver Wagner <jan-oliver.wagner@intevation.de>
* MANIFEST: Updated.
2007-10-12 Jan-Oliver Wagner <jan-oliver.wagner@intevation.de>
Doing the release 1.0.0.
* VERSION: Set to 1.0.0.
* CHANGES: Updated.
2007-10-11 Jan-Oliver Wagner <jan-oliver.wagner@intevation.de>
* README.HPUX: Removed. This information seem to be a leftover
from stoneage time.
* TODO: More things noted.
2007-10-08 Jan-Oliver Wagner <jan-oliver.wagner@intevation.de>
Some code cleanups.
* libopenvas/plugutils(plug_get_fresh_key): Fixed wrong number of
arguments for fprintf call.
* libopenvas/harglists.c(harg_addt, harg_set_valuet, harg_renamet): Add
more ()s to make clear && is to be evaluated before ||. This was
suggested by gcc.
* libopenvas/www_funcs.c(http_get, http_head, httpver, http10_head, http10_get,
http10_get_head, http11_head, http11_get): Removed. These functions have never been used.
2007-10-08 Bernhard Herzog <bh@intevation.de>
* libopenvas_hg/Makefile: Install hosts_gatherer.h and hg_utils.h
into ${includedir}/openvas. They contain declarations needed by
openvas-server and openvas-libnasl
2007-09-25 Tim Brown <timb@nth-dimension.org.uk>
Patch to fix two "implicit declaration" gcc-warnings submitted
by Hanno Bck on openvas-devel.
* include/includes.h: Add include of fnmatch.h.
* include/libopenvas.h: Added proto for kb_item_rm_all().
2007-09-13 Jan-Oliver Wagner <jan-oliver.wagner@intevation.de>
* VERSION: bumped to 0.9.2.SVN
2007-09-13 Jan-Oliver Wagner <jan-oliver.wagner@intevation.de>
Doing the release 0.9.1.
* VERSION: Set to 0.9.1.
* CHANGES: Updated.
2007-09-13 Jan-Oliver Wagner <jan-oliver.wagner@intevation.de>
* TODO: Removed the entry about separate versioning (it is
done now). Also removed the entry about reviewing the Debian patches
to nessus-libraries (done).
* libopenvas/bpf_share.c, libopenvas/services.h: Fixed paths to
state dir to LFSH standard. This make the current Debian patch
to the according Makefile in nessus-libraries unnecessary.
2007-08-03 Jan-Oliver Wagner <jan-oliver.wagner@intevation.de>
* configure.in, openvas-libraries.tmpl.in, include/libvers.h.in,
libopenvas/plugutils.c: Replaced NESSUS_MAJOR etc. by
OPENVASLIBS_MAJOR etc. as well as NL_MAJOR etc. by
OPENVASLIBS_MAJOR etc.
* configure: updated.
2007-08-02 Jan-Oliver Wagner <jan-oliver.wagner@intevation.de>
* libopenvas/plugutils.c, libopenvas/scanners_utils.c,
libopenvas/store.c: Removed unused variables.
2007-08-02 Jan-Oliver Wagner <jan-oliver.wagner@intevation.de>
* libopenvas_hg/Makefile: Fix dependencies for target test.
* libopenvas_hg/hosts_gatherer.h: Add missing proto
for hg_test_syntax().
* libopenvas_hg/test.c (main): Fix return type.
2007-08-02 Jan-Oliver Wagner <jan-oliver.wagner@intevation.de>
* VERSION: bumped to 0.9.1.SVN
* CHANGES: updated.
* libopenvas_hg/hg_dns_axfr.c: Removed CYGWIN
part which was not implemented anyway (just a stub).
* libopenvas/getopt1.c, libopenvas/getopt.c,
libopenvas/harglists.c, libopenvas/hlst.c: Removed
handling of _WIN32.
* Makefile: Removed target win32.
2007-08-02 Jan-Oliver Wagner <jan-oliver.wagner@intevation.de>
* libhosts_gatherer, libopenvas_hg: renamed
libhosts_gatherer to libopenvas_hg.
* Makefile: renamed libhosts_gatherer to libopenvas_hg.
* MANIFEST: updated.
2007-08-02 Jan-Oliver Wagner <jan-oliver.wagner@intevation.de>
* libopenvas-config.pre.in, libhosts_gatherer/Makefile,
libhosts_gatherer/test.c: Renamed libhost_gatherer
by libopenvas_hg.
2007-08-01 Jan-Oliver Wagner <jan-oliver.wagner@intevation.de>
Removed strange handling of CWARN which tries to collect
a number of warning wishes for compilation. It didn't
really work anyway.
Replaced this by: allways give all warnings (-Wall).
* configure.in, openvas-libraries.tmpl.in: Removed handling
of CWARN[01234] and CWALL.
* configure: updated.
* libopenvas/Makefile, libhosts_gatherer/Makefile: Added
-Wall as compile flag.
2007-07-26 Jan-Oliver Wagner <jan-oliver.wagner@intevation.de>
* CHANGES: Set release date to 27.7.2007
2007-07-26 Jan-Oliver Wagner <jan-oliver.wagner@intevation.de>
Doing the release 0.9.0.
* VERSION: Set to 0.9.0.
2007-07-25 Jan-Oliver Wagner <jan-oliver.wagner@intevation.de>
* libopenvas/proctitle.c (setproctitle):
Change name of daemon from nessusd to openvasd.
* include/config.h.in: Removed NESSUSD_USERNAME which is not
used anywhere.
* libopenvas/services.h: Changed paths from nessus to openvas.
2007-07-25 Jan-Oliver Wagner <jan-oliver.wagner@intevation.de>
* configure.in: replaced AC_HAVE_LIBRARY by AC_CHECK_LIB for
gnutls, resolve and pcap and emit error when not found.
Also replaced the not-so-helpful message after running
configure with some more useful.
* configure: updated.
* libopenvas/Makefile: Fixed dependencies reg. network.h.
2007-07-25 Jan-Oliver Wagner <jan-oliver.wagner@intevation.de>
* MANIFEST: updated.
2007-07-25 Bernhard Herzog <bh@intevation.de>
* libopenvas/network.h: Removed. Everything declared in network.h
is also declared in libopenvas.h
* libopenvas/pcap.c, libopenvas/network.c, libopenvas/ids_send.c:
Remove includes of network.h
2007-07-24 Bernhard Herzog <bh@intevation.de>
* libopenvas/network.c (ovas_server_context_attach)
(read_stream_connection_unbuffered)
(write_stream_connection4, internal_send, internal_recv): Remove
unused variables
2007-07-24 Bernhard Herzog <bh@intevation.de>
* libopenvas/network.c: Add missing include of <gnutls/x509.h>
2007-07-24 Bernhard Herzog <bh@intevation.de>
* libopenvas/network.c (verify_peer_certificate): Make status an
unsigned int so that it matches the signature of
gnutls_certificate_verify_peers2
2007-07-24 Bernhard Herzog <bh@intevation.de>
* libopenvas/network.c (set_gnutls_priorities)
(set_gnutls_protocol): Renamed set_gnutls_priorities to
set_gnutls_protocol
(open_SSL_connection, ovas_server_context_attach): Updated because
of set_gnutls_priorities renaming
(set_gnutls_priorities): New function that sets the priorities of
a session from a bunch of int arrays and handles errors
(set_gnutls_sslv23, set_gnutls_sslv3, set_gnutls_tlsv1): Use
set_gnutls_priorities to set the priorities instead of calling the
gnutls functions directly. Also return an error code properly.
2007-07-24 Bernhard Herzog <bh@intevation.de>
* libopenvas/network.c (nessus_SSL_init): Return a value (0) if
already initialized
2007-07-24 Bernhard Herzog <bh@intevation.de>
* libopenvas/network.c (nessus_SSL_init): Make sure
gnutls_global_init is only called once even if nessus_SSL_init is
called multiple times.
2007-07-24 Bernhard Herzog <bh@intevation.de>
* libopenvas/network.c (load_file, unload_file): Use emalloc and
efree to be consistent with the rest of the libopenvas code
2007-07-20 Jan-Oliver Wagner <jan-oliver.wagner@intevation.de>
* libopenvas/services.h: Fixed location of openvas-services.
2007-07-19 Jan-Oliver Wagner <jan-oliver.wagner@intevation.de>
* openvas-libraries.tmpl.in: Removed remains for libcap-nessus
and PCAP_-variables
2007-07-19 Jan-Oliver Wagner <jan-oliver.wagner@intevation.de>
First preparations for release.
* include/libopenvas.h, include/config.h.in: Removed last occurances of HAVE_SSL.
* MANIFEST: updated.
* CHANGES: New. Describes Changes for users.
* Makefile: No sbin required for installation of this package.
* TODO: Removed item about libpcap which indeed has been removed
meanwhile.
* INSTALL_README: Added a warning that these instructions might
not be uptodate.
2007-07-18 Bernhard Herzog <bh@intevation.de>
* include/includes.h: Remove openssl includes
2007-07-18 Bernhard Herzog <bh@intevation.de>
* include/libopenvas.h: Removed the declaration of
nessus_register_connection that uses a SSL* as the second
parameter. The void* variant is still there.
2007-07-17 Bernhard Herzog <bh@intevation.de>
* libopenvas/network.h, include/libopenvas.h: Remove declarations
of unused and unimplemented functions:
stream_get_server_certificate
stream_get_ascii_server_certificate
2007-07-17 Bernhard Herzog <bh@intevation.de>
* libopenvas/network.c (nessus_install_passwd_cb, sslerror)
(sslerror2): Removed. They are no longer used anywhere.
(stream_get_ssl): Change the return type to void* so that we no
longer need openssl.h
* include/libopenvas.h: Remove declaration of
nessus_install_passwd_cb and sslerror. Update declaration of
stream_get_ssl
2007-07-02 Bernhard Herzog <bh@intevation.de>
* libopenvas/network.c (verify_peer_certificate): If the peer
did not send a certificate, treat it as valid.
2007-07-02 Bernhard Herzog <bh@intevation.de>
* libopenvas/network.c (OVAS_CONNECTION_FROM_FD): New. Macro to
determine the nessus_connection* given a nessus file descriptor
(nessus_register_connection, ovas_allocate_connection): Most of
nessus_register_connection is now in the new function
ovas_allocate_connection.
(set_gnutls_priorities): New. Frontend for the other set_gnutls_*
functions.
(verify_peer_certificate): New. Function to verify the peer
certificate
(open_SSL_connection): Use set_gnutls_priorities.
(ovas_server_context_new): New. Function to allocate an
ovas_server_context_t
(ovas_server_context_free): New. Function to free an
ovas_server_context_t
(ovas_server_context_attach): New. Functin to set up SSL/TLS on a
socket with parameters from a ovas_server_context_t
* include/libopenvas.h: Add declarations for the new functions and
types. Always declare nessus_SSL_init.
2007-06-26 Jan-Oliver Wagner <jan-oliver.wagner@intevation.de>
* libhosts_gatherer/hg_add_hosts.c: Backported patch from original
nessus-libraries branch NESSUS_2_2 as committed by Renaud Deraison
June, 25 2007. Original commit message there: "bugfix".
2007-06-22 Bernhard Herzog <bh@intevation.de>
* libopenvas/network.c (nessus_SSL_password_cb): Removed because
it's not used anymore.
2007-06-22 Bernhard Herzog <bh@intevation.de>
* libopenvas/network.c (nessus_SSL_init): Handle errors.
2007-06-22 Bernhard Herzog <bh@intevation.de>
* libopenvas-config.pre.in: remove the @pcap_flag@ substitution
from the --libs output. The pcap options are now in EXTRA anyway
and @pcap_flag@ is no longer substituted.
2007-06-21 Jan-Oliver Wagner <jan-oliver.wagner@intevation.de>
Removed local copy of pcap library.
* configure.in, Makefile, libopenvas-config.pre.in:
Removed any handling of libpcap-nessus
* configure: updated with new autoconf version as of Debian etch
* libpcap-nessus/: Removed entire directory.
2007-06-21 Bernhard Herzog <bh@intevation.de>
* libopenvas/network.c (nessus_install_passwd_cb): Use correct
function name in error message
2007-06-21 Bernhard Herzog <bh@intevation.de>
* libopenvas/network.c (sslerror2, sslerror)
(nessus_install_passwd_cb): Get rid of the last actual OpenSSL
calls. The implementations now simply print an error message and
do nothing.
2007-06-20 Bernhard Herzog <bh@intevation.de>
* libopenvas/network.c (open_SSL_connection): Better error
handling for the gnutls function calls.
2007-06-20 Bernhard Herzog <bh@intevation.de>
* libopenvas/network.c: Keep a pointer to the gnutls credentials
struct so that it can be freed properly:
(struct nessus_connection): New member tls_cred
(release_connection_fd): Free tls_cred
(open_SSL_connection): Store the credentials in the tls_cred
member
2007-06-20 Bernhard Herzog <bh@intevation.de>
* libopenvas/network.c (load_file, unload_file): New. Helper
functions to load certificates and keys.
(load_cert_and_key): New. Loads certificate and key files into
the gnuTLS credentials object. This function supports decryption
of private keys.
(open_SSL_connection): use load_cert_and_key to load the
certificate and key. Remove the warnign about unsupported key
decryption. Load the CA files if given.
2007-06-14 Bernhard Herzog <bh@intevation.de>
First step in the code to move from OpenSSL to GnuTLS. The code
in network.c now uses GnuTLS instead of OpenSSL for stream
connections. There are still a few remnants of the OpenSSL code,
though and code using the library will still need to link -lssl.
* libopenvas/network.c (struct nessus_connection)
(release_connection_fd, nessus_register_connection, sslerror)
(nessus_SSL_init, open_SSL_connection, open_stream_connection)
(open_stream_connection_unknown_encaps5)
(read_stream_connection_unbuffered, write_stream_connection4)
(stream_pending): Use GnuTLS instead of OpenSSL.
(stream_get_ssl): Now always returns NULL since there's no SSL*
associated with a stream anymore. See the comments in the code
for some of the implications of this.
(tlserror, set_gnutls_sslv23, set_gnutls_sslv3, set_gnutls_tlsv1):
New functions for the GnuTLS support.
2007-06-04 Bernhard Herzog <bh@intevation.de>
* libopenvas/network.c (struct nessus_connection)
(open_SSL_connection, write_stream_connection4): Remove
nessus_connection member last_ssl_err because it's only assigned
to, but never used.
2007-05-25 Jan-Oliver Wagner <jan-oliver.wagner@intevation.de>
* VERSION: Renamed from CVS to SVN.
* TODO: Some more open questions.
* include/includes.h: Removed a nessus header file.
2007-05-23 Bernhard Herzog <bh@intevation.de>
* libopenvas/network.c (data_left): Removed. The function was
commented out and never used.
2007-05-14 Jan-Oliver Wagner <jan-oliver.wagner@intevation.de>
* libopenvas/network.c: Renamed all closesocket() to close().
closesocket() was a remain from trying to be NT compatible.
2007-05-14 Jan-Oliver Wagner <jan-oliver.wagner@intevation.de>
* configure: updated.
2007-05-14 Jan-Oliver Wagner <jan-oliver.wagner@intevation.de>
* Makefile: Fixed dependencies for target install. This
way now also libopenvas-config gets created during install
from libopenvas-config.tmpl which wasn't the case before.
2007-05-14 Jan-Oliver Wagner <jan-oliver.wagner@intevation.de>
* Makefile: Fixed name for libopenvas-config man page for installation.
2007-05-14 Jan-Oliver Wagner <jan-oliver.wagner@intevation.de>
* Makefile: installation target for headerfiles renamed from
nessus to openvas.
2007-05-09 Jan-Oliver Wagner <jan-oliver.wagner@intevation.de>
Introduce "make dist" to create a tar-ball.
* VERSION: Set to .CVS.
* MANIFEST: New. List of source files for dist.
* Makefile: New target "dist".
2007-05-09 Jan-Oliver Wagner <jan-oliver.wagner@intevation.de>
* nessus-config.pre.in: Removed.
* libopenvas-config.pre.in: New. Replaces nessus-config.pre.in.
* nessus-config.1: Removed.
* libopenvas-config.1: New. Replaces nessus-config.1.
* configure.in, Makefile: Replace nessus-config by libopenvas-config.
2007-05-09 Jan-Oliver Wagner <jan-oliver.wagner@intevation.de>
* nessus-config.pre.in, Makefile: Removed DESTDIR. It looks
pretty useless as it needs to be set in the shell.
It was introduced in Nessus 1.3.1.
2007-05-09 Jan-Oliver Wagner <jan-oliver.wagner@intevation.de>
* libopenvas/plugutils.c: Removed any conditional alternatives
for HAVE_SSL (ssl is mandatory now)
2007-05-09 Jan-Oliver Wagner <jan-oliver.wagner@intevation.de>
First, intermediate step of migrating from OpenSSL to GNUTLS:
Remove the all old stuff at the configure-level.
* configure.in: Removed any handling of OpenSSL and the
conditional handling of SSL support. Inserterted mandatory
requirement of GNUTLS.
* configure: Updated.
* openvas-libraries.tmpl.in, nessus-config.pre.in: Removed
any OpenSSL handling.
2007-04-26 Jan-Oliver Wagner <jan-oliver.wagner@intevation.de>
* configure.in: Removed cygwin stuff.
2007-04-24 Jan-Oliver Wagner <jan-oliver.wagner@intevation.de>
* configure.in, Makefile, INSTALL_README: Removed handling of "uninstall-nessus".
* uninstall-nessus.in: Removed.
2007-04-12 Jan-Oliver Wagner <jan-oliver.wagner@intevation.de>
Removing various Windows related files.
* README.WINDOWS, nmake.w32, nmake.bat, nessus.def,
include/config.w32, include/ntcompat.h: Removed.
* include/includes.h: Removed some W32-specific elements.
2007-03-29 Jan-Oliver Wagner <jan-oliver.wagner@intevation.de>
* Makefile, libopenvas/Makefile: Renaming libnessus to libopenvas.
Fixing header from GPL to LGPL.
* libopenvas/store.c, libopenvas/plugutils.c, libopenvas/ids_send.c,
libopenvas/arglists.c, libopenvas/data.c, libopenvas/network.c,
libopenvas/services.c, uninstall-nessus.in, include/includes.h:
Added header. Renaming libnessus to libopenvas.
* include/libnessus.h: Renamed to libopenvas.h.
* include/libopenvas.h: New. Former libnessus.h.
2007-03-29 Jan-Oliver Wagner <jan-oliver.wagner@intevation.de>
* libnessus: Renamed to libopenvas.
* libopenvas: New. Former libnessus.
2007-03-28 Jan-Oliver Wagner <jan-oliver.wagner@intevation.de>
* TODO: New. Keep a list of issues/ideas/plans for this module.
2007-03-28 Jan-Oliver Wagner <jan-oliver.wagner@intevation.de>
* openvas-libraries.tmpl.in: Added header.
* Makefile, libhosts_gatherer/Makefile, libnessus/Makefile: Added header.
Renamed nessus.tmpl to openvas-libraries.tmpl.
* libpcap-nessus/Makefile.in: Renamed nessus.tmpl to openvas-libraries.tmpl.
* configure: updated.
2007-03-28 Jan-Oliver Wagner <jan-oliver.wagner@intevation.de>
* nessus.tmpl.in: Removed (replaced by openvas-libraries.tmpl.in)
* openvas-libraries.tmpl.in: Former nessus.tmpl
* configure.in: Name change for .tmpl file.
2007-03-28 Jan-Oliver Wagner <jan-oliver.wagner@intevation.de>
* configure.in: Added header information.
* ChangeLog: New. Summary of changes.
2007-03-28 Jan-Oliver Wagner <jan-oliver.wagner@intevation.de>
* VERSION: Changed version number to 0.9.0 to not confuse with nessus
versioning and to make clear that for OpenVAS this is not yet stable.
|