Changeset 562

Show
Ignore:
Timestamp:
06/03/06 17:02:55 (3 years ago)
Author:
oxff
Message:

nepenthes-experimental: patched in recent changes in trunk

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • nepenthes/branches/nepenthes-experimental/AUTHORS

    r321 r562  
    33Actual Development Team : 
    44* Paul Baecher  ( nepenthesdev at users dot sourceforge dot net ) 
    5 * Maximillian Dornseif ( dornseif@informatik.rwth-aachen.de ) 
    65* Markus Koetter ( nepenthesdev at users dot sourceforge dot net ) 
     6* Georg Wicherski ( georg-wicherski at pixel-house dot net ) 
    77 
    88Special thanks to: 
    99* Thorsten Holz 
    10  
     10* Maximillian Dornseif ( dornseif@informatik.rwth-aachen.de ) 
     11* Harald Lampesberger 
  • nepenthes/branches/nepenthes-experimental/configure.ac

    r536 r562  
    164164 
    165165 
     166# libadns  
     167AC_SUBST([LIB_ADNS]) 
     168 
     169# libpcre 
     170AC_SUBST([LIB_PCRE]) 
     171 
     172# libcurl 
     173AC_SUBST([LIB_CURL]) 
     174 
     175# libcapabilities 
     176AC_SUBST([LIB_CAP]) 
     177 
     178# libmagic 
     179AC_SUBST([LIB_MAGIC]) 
     180 
     181# libpq 
     182AC_SUBST([LIB_POSTGRES]) 
     183 
     184# libprelude 
     185AC_SUBST([LIB_PRELUDE]) 
     186AC_SUBST([LDFLAG_PRELUDE]) 
     187AC_SUBST([CPPFLAG_PRELUDE]) 
     188 
     189 
    166190dnl ************************************************** 
    167191dnl * debug logging                                  * 
     
    205229             [AC_DEFINE(HAVE_LIBCURL, 1, 
    206230                       [Define if you want to use libcurl]) 
    207               LIBS="-lcurl $LIBS"], 
     231             LIB_CURL="-lcurl"], 
    208232             [AC_MSG_ERROR([libcurl is missing - install it please]) 
    209233             ]) 
     
    240264             [AC_DEFINE(HAVE_LIBPCRE, 1, 
    241265                        [Define if you want to use libpcre]) 
    242               LIBS="-lpcre $LIBS"], 
     266              LIB_PCRE="-lpcre"], 
    243267             [AC_MSG_ERROR([libpcre is missing - install it please]) 
    244268             ]) 
     
    275299             [AC_DEFINE(HAVE_LIBMAGIC, 1, 
    276300                       [Define if you want to use libmagic]) 
    277               LIBS="-lmagic $LIBS"], 
     301              LIB_MAGIC="-lmagic"], 
    278302             [AC_MSG_ERROR([libmagic is missing - install it please]) 
    279303             ]) 
     
    340364  else 
    341365    AC_DEFINE(HAVE_LIBSSH,1,[Define wether we have libssh]) 
    342     LIBS="-lssh $LIBS
     366    LIB_SSH="-lssh
    343367  fi 
    344368   
     
    406430  else 
    407431    AC_DEFINE(HAVE_MYSQL, 1 , [Define if we have mysql client library]) 
    408     LIBS="-lmysqlclient $LIBS
     432    LIB_MYSQL="-lmysqlclient
    409433  fi 
    410434 
     
    475499  else 
    476500    AC_DEFINE(HAVE_POSTGRES, 1 , [Define if we have postgre client library]) 
    477     LIBS="-lpq $LIBS
     501    LIB_POSTGRES="-lpq
    478502  fi 
    479503 
     
    546570           [AC_DEFINE(HAVE_LIBADNS, 1, 
    547571                      [Define if you want to use adns]) 
    548             LIBS="-ladns $LIBS"], 
     572            LIB_ADNS="-ladns"], 
    549573     enable_dnsresolve_adns=no 
    550574   ) 
     
    611635        PRELUDE_CPPFLAGS=`$LIBPRELUDE_CONFIG --cflags` 
    612636         
    613         LIBS="$PRELUDE_LIBS $LIBS" 
    614         LDFLAGS="$PRELUDE_LDFLAGS $LDFLAGS" 
    615         CPPFLAGS="$PRELUDE_CPPFLAGS $CPPFLAGS" 
     637        LIB_PRELUDE="$PRELUDE_LIBS" 
     638        LDFLAG_PRELUDE="$PRELUDE_LDFLAGS" 
     639        CPPFLAG="$PRELUDE_CPPFLAGS" 
    616640         
    617641    fi 
     
    628652AC_ARG_ENABLE(capabilities, [  --enable-capabilities    Enable capabilities [default=auto]],  
    629653                   [enable_capabilities="$enableval"],  
    630                    [enable_capabilities="no"]) 
     654                   [enable_capabilities="yes"]) 
    631655 
    632656if test x$enable_capabilities = xno ; then 
     
    658682        [ 
    659683              AC_DEFINE(HAVE_LIBCAP, 1,[Define if libcap is available to restrict process capabilities]) 
    660                LIBS="$LIBS -lcap" 
     684               LIB_CAP="-lcap" 
    661685               enable_capabilities="yes" 
    662686        ],  
     
    743767                 modules/log-prelude/Makefile 
    744768                 modules/shellcode-signatures/Makefile            
     769                 modules/vuln-realvnc/Makefile 
    745770                 ]) 
    746771#                modules/log-prelude/Makefile 
  • nepenthes/branches/nepenthes-experimental/modules/dnsresolve-adns/Makefile.am

    r332 r562  
    77AM_CPPFLAGS = -I$(top_srcdir)/nepenthes-core/include -I$(top_srcdir)/nepenthes-core/src -pipe -D _GNU_SOURCE 
    88AM_CXXFLAGS = -Wall -Werror 
    9 AM_LDFLAGS = -ladns 
     9AM_LDFLAGS = $(LIB_ADNS) 
    1010 
    1111pkglib_LTLIBRARIES = dnsresolveadns.la 
  • nepenthes/branches/nepenthes-experimental/modules/download-creceive/CReceiveDialogue.cpp

    r332 r562  
    106106        logSpam("... DATA ... FIXME %i bytes \n",msg->getSize()); 
    107107        m_Download->getDownloadBuffer()->addData(msg->getMsg(),msg->getSize()); 
     108 
     109        if (m_Download->getDownloadBuffer()->getSize() > 1024 * 1024 * 4)       // hardcoded 4mb limit for now (tm) 
     110                return CL_DROP; 
     111 
    108112        return CL_ASSIGN; 
    109113} 
  • nepenthes/branches/nepenthes-experimental/modules/download-creceive/Makefile.am

    r321 r562  
    77AM_CPPFLAGS = -I$(top_srcdir)/nepenthes-core/include -I$(top_srcdir)/nepenthes-core/src -pipe -D _GNU_SOURCE 
    88AM_CXXFLAGS = -Wall -Werror 
    9 AM_LDFLAGS = -lpcre 
     9 
    1010 
    1111pkglib_LTLIBRARIES = downloadcreceive.la 
  • nepenthes/branches/nepenthes-experimental/modules/download-csend/Makefile.am

    r321 r562  
    77AM_CPPFLAGS = -I$(top_srcdir)/nepenthes-core/include -I$(top_srcdir)/nepenthes-core/src -pipe -D _GNU_SOURCE 
    88AM_CXXFLAGS = -Wall -Werror 
    9 AM_LDFLAGS = -module -no-undefined -avoid-version -lpcre 
     9 
    1010 
    1111pkglib_LTLIBRARIES = downloadcsend.la 
  • nepenthes/branches/nepenthes-experimental/modules/download-curl/Makefile.am

    r321 r562  
    77AM_CPPFLAGS = -I$(top_srcdir)/nepenthes-core/include -I$(top_srcdir)/nepenthes-core/src -pipe -D _GNU_SOURCE 
    88AM_CXXFLAGS = -Wall -Werror 
    9 AM_LDFLAGS = -lcurl 
     9AM_LDFLAGS = $(LIB_CURL) 
    1010 
    1111pkglib_LTLIBRARIES = downloadcurl.la 
  • nepenthes/branches/nepenthes-experimental/modules/download-ftp/FILEDialogue.cpp

    r543 r562  
    100100//      logSpam("Got %i bytes data\n",msg->getSize()); 
    101101        m_Download->getDownloadBuffer()->addData(msg->getMsg(),msg->getSize()); 
     102 
     103        if (m_Download->getDownloadBuffer()->getSize() > 1024 * 1024 * 4)       // hardcoded 4mb limit for now (tm) 
     104                return CL_DROP; 
     105 
    102106        return CL_ASSIGN; 
    103107} 
  • nepenthes/branches/nepenthes-experimental/modules/download-ftp/Makefile.am

    r343 r562  
    77AM_CPPFLAGS = -I$(top_srcdir)/nepenthes-core/include -I$(top_srcdir)/nepenthes-core/src -pipe -D _GNU_SOURCE 
    88AM_CXXFLAGS = -Wall -Werror 
    9 AM_LDFLAGS = -lpcre 
     9 
    1010 
    1111pkglib_LTLIBRARIES = downloadftp.la 
  • nepenthes/branches/nepenthes-experimental/modules/download-http/HTTPDialogue.cpp

    r503 r562  
    9393//      g_Nepenthes->getUtilities()->hexdump((byte *)msg->getMsg(),msg->getSize()); 
    9494        m_Download->getDownloadBuffer()->addData(msg->getMsg(),msg->getSize()); 
     95 
     96        if (m_Download->getDownloadBuffer()->getSize() > 1024 * 1024 * 4)       // hardcoded 4mb limit for now (tm) 
     97                return CL_DROP; 
     98 
    9599        return CL_ASSIGN; 
    96100} 
  • nepenthes/branches/nepenthes-experimental/modules/download-http/Makefile.am

    r332 r562  
    77AM_CPPFLAGS = -I$(top_srcdir)/nepenthes-core/include -I$(top_srcdir)/nepenthes-core/src -pipe -D _GNU_SOURCE 
    88AM_CXXFLAGS = -Wall -Werror 
    9 AM_LDFLAGS =  
     9 
    1010 
    1111pkglib_LTLIBRARIES = downloadhttp.la 
  • nepenthes/branches/nepenthes-experimental/modules/download-link/LinkDialogue.cpp

    r341 r562  
    132132        case LINK_FILE: 
    133133                m_Download->getDownloadBuffer()->addData(msg->getMsg(),msg->getSize()); 
     134                if( m_Download->getDownloadBuffer()->getSize() > 1024 * 1024 * 4 ) // hardcoded 4mb filesize limit for now (tm) 
     135                        return CL_DROP; 
    134136                break; 
    135137        } 
  • nepenthes/branches/nepenthes-experimental/modules/download-link/Makefile.am

    r321 r562  
    77AM_CPPFLAGS = -I$(top_srcdir)/nepenthes-core/include -I$(top_srcdir)/nepenthes-core/src -pipe -D _GNU_SOURCE 
    88AM_CXXFLAGS = -Wall -Werror 
    9 AM_LDFLAGS = -lpcre 
     9 
    1010 
    1111pkglib_LTLIBRARIES = downloadlink.la 
  • nepenthes/branches/nepenthes-experimental/modules/download-rcp/Makefile.am

    r341 r562  
    77AM_CPPFLAGS = -I$(top_srcdir)/nepenthes-core/include -I$(top_srcdir)/nepenthes-core/src -pipe -D _GNU_SOURCE 
    88AM_CXXFLAGS = -Wall -Werror 
    9 AM_LDFLAGS = -module -no-undefined -avoid-version 
     9 
    1010 
    1111pkglib_LTLIBRARIES = downloadrcp.la 
  • nepenthes/branches/nepenthes-experimental/modules/download-rcp/RCPDialogue.cpp

    r543 r562  
    3030#include <sys/types.h> 
    3131#include <netinet/in.h> 
     32#include <ctype.h> 
    3233 
    3334#include "RCPDialogue.hpp" 
     
    203204                { 
    204205                        m_Download->getDownloadBuffer()->addData(msg->getMsg(),msg->getSize()); 
     206                        if ( m_Download->getDownloadBuffer()->getSize() > 1024 * 1024 * 4)      // hardcoded 4mb limit for now (tm) 
     207                        { 
     208                                return CL_DROP; 
     209                        } 
    205210                } 
    206211                break; 
  • nepenthes/branches/nepenthes-experimental/modules/download-tftp/Makefile.am

    r321 r562  
    77AM_CPPFLAGS = -I$(top_srcdir)/nepenthes-core/include -I$(top_srcdir)/nepenthes-core/src -pipe -D _GNU_SOURCE 
    88AM_CXXFLAGS = -Wall -Werror 
    9 AM_LDFLAGS = -module -no-undefined -avoid-version -lpcre 
     9 
    1010 
    1111pkglib_LTLIBRARIES = downloadtftp.la 
  • nepenthes/branches/nepenthes-experimental/modules/download-tftp/TFTPDialogue.cpp

    r341 r562  
    161161                                msg->getSocket()->getNepenthes()->getSubmitMgr()->addSubmission(m_Download); 
    162162                m_Socket->setStatus(SS_CLOSED); 
     163                        }else 
     164                        { 
     165                                if( m_Download->getDownloadBuffer()->getSize() > 1024 * 1024 * 4 ) // hardcoded 4mb limit for now (tm) 
     166                                { 
     167                                        return CL_DROP; 
     168                                } 
    163169                        } 
    164170                } 
  • nepenthes/branches/nepenthes-experimental/modules/log-download/Makefile.am

    r321 r562  
    77AM_CPPFLAGS = -I$(top_srcdir)/nepenthes-core/include -I$(top_srcdir)/nepenthes-core/src -pipe -D _GNU_SOURCE 
    88AM_CXXFLAGS = -Wall -Werror 
    9 AM_LDFLAGS = -lpcre 
     9 
    1010 
    1111pkglib_LTLIBRARIES = logdownload.la 
  • nepenthes/branches/nepenthes-experimental/modules/log-irc/IrcDialogue.cpp

    r549 r562  
    439439        if ( m_LogIrc->getIrcPass().size() > 0 ) 
    440440        { 
    441                 string pass = "PASS " + m_LogIrc->getIrcPass() + pass + "\r\n"; 
     441                string pass = "PASS " + m_LogIrc->getIrcPass() + "\r\n"; 
    442442                m_Socket->doRespond((char *) pass.data(), pass.size()); 
    443443        } 
  • nepenthes/branches/nepenthes-experimental/modules/log-irc/Makefile.am

    r321 r562  
    77AM_CPPFLAGS = -I$(top_srcdir)/nepenthes-core/include -I$(top_srcdir)/nepenthes-core/src -pipe -D _GNU_SOURCE 
    88AM_CXXFLAGS = -Wall -Werror 
    9 AM_LDFLAGS = -lpcre 
     9 
    1010 
    1111pkglib_LTLIBRARIES = logirc.la 
  • nepenthes/branches/nepenthes-experimental/modules/log-surfnet/Makefile.am

    r332 r562  
    77AM_CPPFLAGS = -I$(top_srcdir)/nepenthes-core/include -I$(top_srcdir)/nepenthes-core/src -I/usr/include/postgresql -pipe -D _GNU_SOURCE 
    88AM_CXXFLAGS = -Wall -Werror 
    9 #AM_LDFLAGS = -lpq 
     9AM_LDFLAGS = $(LIB_POSTGRES) 
    1010 
    1111pkglib_LTLIBRARIES = logsurfnet.la 
  • nepenthes/branches/nepenthes-experimental/modules/module-bridge/Makefile.am

    r343 r562  
    77AM_CPPFLAGS = -I$(top_srcdir)/nepenthes-core/include -I$(top_srcdir)/nepenthes-core/src -pipe -D _GNU_SOURCE 
    88AM_CXXFLAGS = -Wall -Werror 
    9 AM_LDFLAGS = -lpcre 
     9 
    1010 
    1111pkglib_LTLIBRARIES = modulebridge.la 
  • nepenthes/branches/nepenthes-experimental/modules/module-portwatch/Makefile.am

    r321 r562  
    77AM_CPPFLAGS = -I$(top_srcdir)/nepenthes-core/include -I$(top_srcdir)/nepenthes-core/src -pipe -D _GNU_SOURCE 
    88AM_CXXFLAGS = -Wall -Werror 
    9 AM_LDFLAGS = -lpcre 
     9 
    1010 
    1111pkglib_LTLIBRARIES = moduleportwatch.la 
  • nepenthes/branches/nepenthes-experimental/modules/shellcode-generic/Makefile.am

    r372 r562  
    77AM_CPPFLAGS = -I$(top_srcdir)/nepenthes-core/include -I$(top_srcdir)/nepenthes-core/src -pipe -D _GNU_SOURCE 
    88AM_CXXFLAGS = -Wall -Werror 
    9 AM_LDFLAGS = -lpcre 
     9AM_LDFLAGS = $(LIB_PCRE) 
    1010 
    1111pkglib_LTLIBRARIES = shellcodegeneric.la 
  • nepenthes/branches/nepenthes-experimental/modules/shellcode-generic/sch_generic_wget.cpp

    r543 r562  
    3939 */ 
    4040 
     41#include <ctype.h> 
    4142 
    4243  
  • nepenthes/branches/nepenthes-experimental/modules/shellcode-signatures/Makefile.am

    r529 r562  
    88AM_CXXFLAGS = -Wall -Werror 
    99AM_CFLAGS = -Wall 
    10 AM_LDFLAGS = -lpcre 
     10AM_LDFLAGS = $(LIB_PCRE) 
    1111 
    1212pkglib_LTLIBRARIES = shellcodesignatures.la 
  • nepenthes/branches/nepenthes-experimental/modules/shellemu-winnt/Makefile.am

    r341 r562  
    77AM_CPPFLAGS = -I$(top_srcdir)/nepenthes-core/include -I$(top_srcdir)/nepenthes-core/src -pipe -D _GNU_SOURCE 
    88AM_CXXFLAGS = -Wall -Werror 
    9 AM_LDFLAGS = -lpcre 
     9 
    1010 
    1111pkglib_LTLIBRARIES = shellemuwinnt.la 
  • nepenthes/branches/nepenthes-experimental/modules/shellemu-winnt/VFSCommandFTP.cpp

    r543 r562  
    111111        string host = "nohostyet"; 
    112112        string port = "21"; 
    113         string user = "anonymous"; 
    114         string pass = "guest"; 
     113        string user = "nouseryet"; 
     114        string pass = "nopassyet"; 
    115115        string getfile = "nofileyet"; 
    116116        string path = ""; 
     117 
     118        string filename = ""; 
    117119        uint8_t downloadflags=0; 
    118120 
     
    146148                if (strncmp(&*it->c_str(),"-s:",3) == 0) 
    147149                { 
    148                         string filename = it->substr(3,it->size()-2); 
     150                        filename = it->substr(3,it->size()-2); 
     151                }else 
     152        if (strncmp(&*it->c_str(),"-A",2) == 0) // anonymous login 
     153                { 
     154                        anonymouslogin = true; 
     155                        user = "anonymous"; 
     156                        pass = "guest"; 
     157                } 
     158                else 
     159                        host = *it; 
     160        } 
     161 
     162        if (filename != "" ) 
     163        { 
    149164                        logDebug("Filenameis %s\n",filename.c_str()); 
    150165                        VFSFile *file = m_VFS->getCurrentDir()->getFile((char *)filename.c_str()); 
     
    370385 
    371386                        } 
    372                 }else 
    373         if (strncmp(&*it->c_str(),"-A",2) == 0) // anonymous login 
    374                 { 
    375                         anonymouslogin = true; 
    376                 } 
    377                 else 
    378                         host = *it; 
     387 
    379388        } 
    380389    return 0; 
  • nepenthes/branches/nepenthes-experimental/modules/shellemu-winnt/VFSCommandSTART.cpp

    r339 r562  
    141141        logPF(); 
    142142        vector <string> params = *paramlist; 
    143       vector <string>::iterator it,jt; 
     143//    vector <string>::iterator it,jt; 
    144144 
    145145        uint32_t i; 
  • nepenthes/branches/nepenthes-experimental/modules/submit-file/Makefile.am

    r321 r562  
    77AM_CPPFLAGS = -I$(top_srcdir)/nepenthes-core/include -I$(top_srcdir)/nepenthes-core/src -pipe -D _GNU_SOURCE 
    88AM_CXXFLAGS = -Wall -Werror 
    9 AM_LDFLAGS = -lpcre 
     9 
    1010 
    1111pkglib_LTLIBRARIES = submitfile.la 
  • nepenthes/branches/nepenthes-experimental/modules/submit-gotek/Makefile.am

    r370 r562  
    77AM_CPPFLAGS = -I$(top_srcdir)/nepenthes-core/include -I$(top_srcdir)/nepenthes-core/src -pipe -D _GNU_SOURCE 
    88AM_CXXFLAGS = -Wall -Werror 
    9 AM_LDFLAGS = -lpcre 
     9 
    1010 
    1111pkglib_LTLIBRARIES = submitgotek.la 
  • nepenthes/branches/nepenthes-experimental/modules/submit-norman/Makefile.am

    r321 r562  
    77AM_CPPFLAGS = -I$(top_srcdir)/nepenthes-core/include -I$(top_srcdir)/nepenthes-core/src -pipe -D _GNU_SOURCE 
    88AM_CXXFLAGS = -Wall -Werror 
    9 AM_LDFLAGS = -lpcre 
     9AM_LDFLAGS = $(LIB_CURL) 
    1010 
    1111pkglib_LTLIBRARIES = submitnorman.la 
  • nepenthes/branches/nepenthes-experimental/modules/vuln-asn1/Makefile.am

    r439 r562  
    77AM_CPPFLAGS = -I$(top_srcdir)/nepenthes-core/include -I$(top_srcdir)/nepenthes-core/src -pipe -D _GNU_SOURCE 
    88AM_CXXFLAGS = -Wall -Werror 
    9 AM_LDFLAGS = -lpcre 
     9 
    1010 
    1111pkglib_LTLIBRARIES = vulnasn1.la 
  • nepenthes/branches/nepenthes-experimental/modules/vuln-dameware/Makefile.am

    r330 r562  
    77AM_CPPFLAGS = -I$(top_srcdir)/nepenthes-core/include -I$(top_srcdir)/nepenthes-core/src -pipe -D _GNU_SOURCE 
    88AM_CXXFLAGS = -Wall -Werror 
    9 AM_LDFLAGS = -lpcre 
     9 
    1010 
    1111pkglib_LTLIBRARIES = vulndameware.la 
  • nepenthes/branches/nepenthes-experimental/modules/vuln-dcom/Makefile.am

    r439 r562  
    77AM_CPPFLAGS = -I$(top_srcdir)/nepenthes-core/include -I$(top_srcdir)/nepenthes-core/src -pipe -D _GNU_SOURCE 
    88AM_CXXFLAGS = -Wall -Werror 
    9 AM_LDFLAGS = -lpcre 
     9 
    1010 
    1111pkglib_LTLIBRARIES = vulndcom.la 
  • nepenthes/branches/nepenthes-experimental/modules/vuln-ftpd/Makefile.am

    r345 r562  
    77AM_CPPFLAGS = -I$(top_srcdir)/nepenthes-core/include -I$(top_srcdir)/nepenthes-core/src -pipe -D _GNU_SOURCE 
    88AM_CXXFLAGS = -Wall -Werror 
    9 AM_LDFLAGS = -lpcre 
     9 
    1010 
    1111pkglib_LTLIBRARIES = vulnftpd.la 
  • nepenthes/branches/nepenthes-experimental/modules/vuln-iis/Makefile.am

    r439 r562  
    77AM_CPPFLAGS = -I$(top_srcdir)/nepenthes-core/include -I$(top_srcdir)/nepenthes-core/src -pipe -D _GNU_SOURCE 
    88AM_CXXFLAGS = -Wall -Werror 
    9 AM_LDFLAGS = -lpcre 
     9 
    1010 
    1111pkglib_LTLIBRARIES = vulniis.la 
  • nepenthes/branches/nepenthes-experimental/modules/vuln-kuang2/Makefile.am

    r321 r562  
    77AM_CPPFLAGS = -I$(top_srcdir)/nepenthes-core/include -I$(top_srcdir)/nepenthes-core/src -pipe -D _GNU_SOURCE 
    88AM_CXXFLAGS = -Wall -Werror 
    9 AM_LDFLAGS = -lpcre 
     9 
    1010 
    1111pkglib_LTLIBRARIES = vulnkuang2.la 
  • nepenthes/branches/nepenthes-experimental/modules/vuln-lsass/Makefile.am

    r439 r562  
    77AM_CPPFLAGS = -I$(top_srcdir)/nepenthes-core/include -I$(top_srcdir)/nepenthes-core/src -pipe -D _GNU_SOURCE 
    88AM_CXXFLAGS = -Wall -Werror 
    9 AM_LDFLAGS = -lpcre 
     9 
    1010 
    1111pkglib_LTLIBRARIES = vulnlsass.la 
  • nepenthes/branches/nepenthes-experimental/modules/vuln-msdtc/Makefile.am

    r339 r562  
    77AM_CPPFLAGS = -I$(top_srcdir)/nepenthes-core/include -I$(top_srcdir)/nepenthes-core/src -pipe -D _GNU_SOURCE 
    88AM_CXXFLAGS = -Wall -Werror 
    9 AM_LDFLAGS = -lpcre 
     9 
    1010 
    1111pkglib_LTLIBRARIES = vulnmsdtc.la 
  • nepenthes/branches/nepenthes-experimental/modules/vuln-msmq/Makefile.am

    r439 r562  
    77AM_CPPFLAGS = -I$(top_srcdir)/nepenthes-core/include -I$(top_srcdir)/nepenthes-core/src -pipe -D _GNU_SOURCE 
    88AM_CXXFLAGS = -Wall -Werror 
    9 AM_LDFLAGS = -lpcre 
     9 
    1010 
    1111pkglib_LTLIBRARIES = vulnmsmq.la 
  • nepenthes/branches/nepenthes-experimental/modules/vuln-mssql/Makefile.am

    r321 r562  
    77AM_CPPFLAGS = -I$(top_srcdir)/nepenthes-core/include -I$(top_srcdir)/nepenthes-core/src -pipe -D _GNU_SOURCE 
    88AM_CXXFLAGS = -Wall -Werror 
    9 AM_LDFLAGS = -lpcre 
    109 
    1110pkglib_LTLIBRARIES = vulnmssql.la 
  • nepenthes/branches/nepenthes-experimental/modules/vuln-mydoom/Makefile.am

    r321 r562  
    77AM_CPPFLAGS = -I$(top_srcdir)/nepenthes-core/include -I$(top_srcdir)/nepenthes-core/src -pipe -D _GNU_SOURCE 
    88AM_CXXFLAGS = -Wall -Werror 
    9 AM_LDFLAGS = -lpcre 
     9 
    1010 
    1111pkglib_LTLIBRARIES = vulnmydoom.la 
  • nepenthes/branches/nepenthes-experimental/modules/vuln-mydoom/MydoomDialogue.cpp

    r538 r562  
    131131                { 
    132132                        m_Download->getDownloadBuffer()->addData((char *)msg->getMsg(),msg->getSize()); 
    133                         return CL_ASSIGN_AND_DONE
     133                        return CL_ASSIGN
    134134                } 
    135135                break; 
  • nepenthes/branches/nepenthes-experimental/modules/vuln-netbiosname/Makefile.am

    r321 r562  
    77AM_CPPFLAGS = -I$(top_srcdir)/nepenthes-core/include -I$(top_srcdir)/nepenthes-core/src -pipe -D _GNU_SOURCE 
    88AM_CXXFLAGS = -Wall -Werror 
    9 AM_LDFLAGS = -lpcre 
     9 
    1010 
    1111pkglib_LTLIBRARIES = vulnnetbiosname.la 
  • nepenthes/branches/nepenthes-experimental/modules/vuln-netdde/Makefile.am

    r439 r562  
    77AM_CPPFLAGS = -I$(top_srcdir)/nepenthes-core/include -I$(top_srcdir)/nepenthes-core/src -pipe -D _GNU_SOURCE 
    88AM_CXXFLAGS = -Wall -Werror 
    9 AM_LDFLAGS = -lpcre 
     9 
    1010 
    1111pkglib_LTLIBRARIES = vulnnetdde.la 
  • nepenthes/branches/nepenthes-experimental/modules/vuln-optix/Makefile.am

    r321 r562  
    77AM_CPPFLAGS = -I$(top_srcdir)/nepenthes-core/include -I$(top_srcdir)/nepenthes-core/src -pipe -D _GNU_SOURCE 
    88AM_CXXFLAGS = -Wall -Werror 
    9 AM_LDFLAGS = -lpcre 
     9AM_LDFLAGS = $(LIB_PCRE) 
    1010 
    1111pkglib_LTLIBRARIES = vulnoptix.la