update to 0.1.7, from maintainer

This commit is contained in:
jolan 2006-04-26 19:06:17 +00:00
parent e9ed72448e
commit f2f8b8f7a4
8 changed files with 66 additions and 37 deletions

View File

@ -1,9 +1,9 @@
# $OpenBSD: Makefile,v 1.1.1.1 2006/04/14 17:08:25 jolan Exp $
# $OpenBSD: Makefile,v 1.2 2006/04/26 19:06:17 jolan Exp $
SHARED_ONLY= Yes
COMMENT= "determine the malware activity on a network"
DISTNAME= nepenthes-0.1.6
DISTNAME= nepenthes-0.1.7
CATEGORIES= net
HOMEPAGE= http://nepenthes.mwcollect.org/

View File

@ -1,4 +1,4 @@
MD5 (nepenthes-0.1.6.tar.gz) = 317afd3dc86d57a22570632bdf839ef2
RMD160 (nepenthes-0.1.6.tar.gz) = 61cd0ffae12750970c813d42732b10b645d83d3b
SHA1 (nepenthes-0.1.6.tar.gz) = 847a37b220676c34e0b461e518bf3622c3a7fcc0
SIZE (nepenthes-0.1.6.tar.gz) = 794938
MD5 (nepenthes-0.1.7.tar.gz) = 799c671b3aaef58087f635064b6acd61
RMD160 (nepenthes-0.1.7.tar.gz) = 847309634b8a1bbad75e8d43f5110e9ae83b1fb7
SHA1 (nepenthes-0.1.7.tar.gz) = ab3d8fe00128b34deff3d31ae578c8aeedb49231
SIZE (nepenthes-0.1.7.tar.gz) = 840661

View File

@ -1,13 +1,30 @@
$OpenBSD: patch-Makefile_in,v 1.1.1.1 2006/04/14 17:08:25 jolan Exp $
--- Makefile.in.orig Sun Jan 15 16:46:20 2006
+++ Makefile.in Wed Apr 5 03:32:42 2006
@@ -686,12 +686,6 @@ install-data-local:
$OpenBSD: patch-Makefile_in,v 1.2 2006/04/26 19:06:17 jolan Exp $
--- Makefile.in.orig Wed Apr 26 18:47:56 2006
+++ Makefile.in Wed Apr 26 18:49:51 2006
@@ -198,7 +198,7 @@ AUTOMAKE_OPTIONS = foreign
SUBDIRS = nepenthes-core modules
#tools
EXTRA_DIST = configure.ac CHANGES doc/README.VFS doc/logo-shaded.svg doc/nepenthes.8 conf/nepenthes.conf.dist
-docdir = $(prefix)/share/doc
+docdir = $(prefix)/share/doc/nepenthes
doc_DATA = doc/README.VFS doc/logo-shaded.svg
#sysconf_DATA = conf/nepenthes.conf.dist
@@ -691,19 +691,9 @@ install-data-local:
$(mkinstalldirs) $(DESTDIR)$(mandir)
$(mkinstalldirs) $(DESTDIR)$(mandir)/man8
$(INSTALL_DATA) $(srcdir)/doc/nepenthes.8 $(DESTDIR)$(mandir)/man8/nepenthes.8;
- $(mkinstalldirs) $(DESTDIR)$(localstatedir)/cache
- $(mkinstalldirs) $(DESTDIR)$(localstatedir)/cache/nepenthes
- $(mkinstalldirs) $(DESTDIR)$(localstatedir)/cache/nepenthes/geolocation
- $(mkinstalldirs) $(DESTDIR)$(localstatedir)/cache/nepenthes/signatures
- $(INSTALL_DATA) modules/shellcode-signatures/shellcode-signatures.sc $(DESTDIR)$(localstatedir)/cache/nepenthes/signatures
+ $(INSTALL_DATA) modules/shellcode-signatures/shellcode-signatures.sc $(DESTDIR)$(prefix)/share/examples/nepenthes/shellcode-signatures.sc
- $(mkinstalldirs) $(DESTDIR)$(localstatedir)/spool
- $(mkinstalldirs) $(DESTDIR)$(localstatedir)/spool/nepenthes
- $(mkinstalldirs) $(DESTDIR)$(localstatedir)/spool/nepenthes/gotek
- $(mkinstalldirs) $(DESTDIR)$(localstatedir)/log
- $(mkinstalldirs) $(DESTDIR)$(localstatedir)/binaries
- $(mkinstalldirs) $(DESTDIR)$(localstatedir)/hexdumps

View File

@ -0,0 +1,12 @@
$OpenBSD: patch-modules_shellcode-signatures_shellcode-signatures_cpp,v 1.1 2006/04/26 19:06:17 jolan Exp $
--- modules/shellcode-signatures/shellcode-signatures.cpp.orig Tue Apr 25 16:17:31 2006
+++ modules/shellcode-signatures/shellcode-signatures.cpp Tue Apr 25 16:17:52 2006
@@ -80,7 +80,7 @@ bool SignatureShellcodeHandler::Init()
m_ModuleManager = m_Nepenthes->getModuleMgr();
g_Nepenthes->getShellcodeMgr()->registerShellcodeHandler(new EngineUnicode());
- return loadSignaturesFromFile(string("var/cache/nepenthes/signatures/shellcode-signatures.sc"));
+ return loadSignaturesFromFile(string("/var/nepenthes/cache/nepenthes/signatures/shellcode-signatures.sc"));
}
bool SignatureShellcodeHandler::Exit()

View File

@ -1,11 +0,0 @@
--- modules/x-8/x-8.cpp.orig Mon Oct 31 09:47:19 2005
+++ modules/x-8/x-8.cpp Wed Apr 5 03:16:56 2006
@@ -315,7 +315,7 @@ void X8Dialogue::locationSuccess(GeoLoca
reply += "\n";
reply += "\t Context: ";
- sprintf(ctx,"%x",(uint32_t)result->getObject());
+ sprintf(ctx,"%x",(uint32_t)((intptr_t)result->getObject()));
reply += ctx;
reply += "\n";

View File

@ -9,12 +9,3 @@
#include <sys/socket.h>
#include <netinet/in.h>
#include <arpa/inet.h>
@@ -371,7 +371,7 @@ bool GeoLocationManager::Init()
*/
bool GeoLocationManager::Exit()
{
-
+ return true;
}

View File

@ -1,4 +1,4 @@
@comment $OpenBSD: PFRAG.shared,v 1.1.1.1 2006/04/14 17:08:25 jolan Exp $
@comment $OpenBSD: PFRAG.shared,v 1.2 2006/04/26 19:06:17 jolan Exp $
lib/nepenthes/dnsresolveadns.so
lib/nepenthes/downloadcreceive.so
lib/nepenthes/downloadcsend.so
@ -14,11 +14,14 @@ lib/nepenthes/geolocationhostip.so
lib/nepenthes/geolocationip2location.so
lib/nepenthes/logdownload.so
lib/nepenthes/logirc.so
lib/nepenthes/logprelude.so
lib/nepenthes/logsurfnet.so
lib/nepenthes/moduleportwatch.so
lib/nepenthes/shellcodegeneric.so
lib/nepenthes/shellcodesignatures.so
lib/nepenthes/shellemuwinnt.so
lib/nepenthes/submitfile.so
lib/nepenthes/submitgotek.so
lib/nepenthes/submitnepenthes.so
lib/nepenthes/submitnorman.so
lib/nepenthes/submitxmlrpc.so
@ -27,6 +30,7 @@ lib/nepenthes/vulnasn1.so
lib/nepenthes/vulnbagle.so
lib/nepenthes/vulndameware.so
lib/nepenthes/vulndcom.so
lib/nepenthes/vulnftpd.so
lib/nepenthes/vulniis.so
lib/nepenthes/vulnkuang2.so
lib/nepenthes/vulnlsass.so
@ -50,5 +54,4 @@ lib/nepenthes/x3.so
lib/nepenthes/x4.so
lib/nepenthes/x5.so
lib/nepenthes/x6.so
lib/nepenthes/x7.so
lib/nepenthes/x8.so

View File

@ -1,4 +1,4 @@
@comment $OpenBSD: PLIST,v 1.1.1.1 2006/04/14 17:08:25 jolan Exp $
@comment $OpenBSD: PLIST,v 1.2 2006/04/26 19:06:17 jolan Exp $
%%SHARED%%
bin/nepenthes
lib/nepenthes/
@ -17,11 +17,14 @@ lib/nepenthes/geolocationhostip.la
lib/nepenthes/geolocationip2location.la
lib/nepenthes/logdownload.la
lib/nepenthes/logirc.la
lib/nepenthes/logprelude.la
lib/nepenthes/logsurfnet.la
lib/nepenthes/moduleportwatch.la
lib/nepenthes/shellcodegeneric.la
lib/nepenthes/shellcodesignatures.la
lib/nepenthes/shellemuwinnt.la
lib/nepenthes/submitfile.la
lib/nepenthes/submitgotek.la
lib/nepenthes/submitnepenthes.la
lib/nepenthes/submitnorman.la
lib/nepenthes/submitxmlrpc.la
@ -30,6 +33,7 @@ lib/nepenthes/vulnasn1.la
lib/nepenthes/vulnbagle.la
lib/nepenthes/vulndameware.la
lib/nepenthes/vulndcom.la
lib/nepenthes/vulnftpd.la
lib/nepenthes/vulniis.la
lib/nepenthes/vulnkuang2.la
lib/nepenthes/vulnlsass.la
@ -53,18 +57,19 @@ lib/nepenthes/x3.la
lib/nepenthes/x4.la
lib/nepenthes/x5.la
lib/nepenthes/x6.la
lib/nepenthes/x7.la
lib/nepenthes/x8.la
@man man/man8/nepenthes.8
share/doc/README
share/doc/README.VFS
share/doc/logo-shaded.svg
share/doc/nepenthes/
share/doc/nepenthes/README.VFS
share/doc/nepenthes/logo-shaded.svg
@sample ${SYSCONFDIR}/nepenthes/
share/examples/nepenthes/
share/examples/nepenthes/download-csend.conf
@sample ${SYSCONFDIR}/nepenthes/download-csend.conf
share/examples/nepenthes/download-curl.conf
@sample ${SYSCONFDIR}/nepenthes/download-curl.conf
share/examples/nepenthes/download-ftp.conf
@sample ${SYSCONFDIR}/nepenthes/download-ftp.conf
share/examples/nepenthes/download-link.conf
@sample ${SYSCONFDIR}/nepenthes/download-link.conf
share/examples/nepenthes/download-nepenthes.conf
@ -77,6 +82,8 @@ share/examples/nepenthes/log-download.conf
@sample ${SYSCONFDIR}/nepenthes/log-download.conf
share/examples/nepenthes/log-irc.conf
@sample ${SYSCONFDIR}/nepenthes/log-irc.conf
share/examples/nepenthes/log-prelude.conf
@sample ${SYSCONFDIR}/nepenthes/log-prelude.conf
share/examples/nepenthes/log-surfnet.conf
@sample ${SYSCONFDIR}/nepenthes/log-surfnet.conf
share/examples/nepenthes/module-portwatch.conf
@ -88,6 +95,8 @@ share/examples/nepenthes/shellcode-generic.conf
@sample ${SYSCONFDIR}/nepenthes/shellcode-generic.conf
share/examples/nepenthes/submit-file.conf
@sample ${SYSCONFDIR}/nepenthes/submit-file.conf
share/examples/nepenthes/submit-gotek.conf
@sample ${SYSCONFDIR}/nepenthes/submit-gotek.conf
share/examples/nepenthes/submit-nepenthes.conf
@sample ${SYSCONFDIR}/nepenthes/submit-nepenthes.conf
share/examples/nepenthes/submit-norman.conf
@ -102,6 +111,8 @@ share/examples/nepenthes/vuln-dameware.conf
@sample ${SYSCONFDIR}/nepenthes/vuln-dameware.conf
share/examples/nepenthes/vuln-dcom.conf
@sample ${SYSCONFDIR}/nepenthes/vuln-dcom.conf
share/examples/nepenthes/vuln-ftpd.conf
@sample ${SYSCONFDIR}/nepenthes/vuln-ftpd.conf
share/examples/nepenthes/vuln-iis.conf
@sample ${SYSCONFDIR}/nepenthes/vuln-iis.conf
share/examples/nepenthes/vuln-kuang2.conf
@ -144,5 +155,11 @@ share/examples/nepenthes/x-2.conf
@sample /var/nepenthes/cache/
@sample /var/nepenthes/cache/nepenthes/
@sample /var/nepenthes/cache/nepenthes/geolocation/
@sample /var/nepenthes/cache/nepenthes/signatures/
share/examples/nepenthes/shellcode-signatures.sc
@sample /var/nepenthes/cache/nepenthes/signatures/shellcode-signatures.sc
@sample /var/nepenthes/hexdumps/
@sample /var/nepenthes/log/
@sample /var/nepenthes/spool/
@sample /var/nepenthes/spool/nepenthes/
@sample /var/nepenthes/spool/nepenthes/gotek/