Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] GIT changes to master grimoire by Arjan Bouter (07cb9c4ec70e8bd75b9277b9b127a19bc4c84171)

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: Arjan Bouter <scm AT sourcemage.org>
  • To: sm-commit AT lists.ibiblio.org
  • Subject: [SM-Commit] GIT changes to master grimoire by Arjan Bouter (07cb9c4ec70e8bd75b9277b9b127a19bc4c84171)
  • Date: Thu, 23 Apr 2009 17:31:03 -0500

GIT changes to master grimoire by Arjan Bouter <abouter AT sourcemage.org>:

ChangeLog | 4 +++
security/sara/BUILD | 9 ++++++++
security/sara/CONFIGURE | 1
security/sara/DEPENDS | 53
++++++++++++++++++++++++++++++++++++++++++++++++
security/sara/DETAILS | 13 +++++++++++
security/sara/HISTORY | 3 ++
security/sara/INSTALL | 9 ++++++++
7 files changed, 92 insertions(+)

New commits:
commit 07cb9c4ec70e8bd75b9277b9b127a19bc4c84171
Author: Arjan Bouter <abouter AT sourcemage.org>
Commit: Arjan Bouter <abouter AT sourcemage.org>

sara: new spell, security audit tool

commit d991f2cc4a0968edbf160126545ee08659f29c0d
Author: Arjan Bouter <abouter AT sourcemage.org>
Commit: Arjan Bouter <abouter AT sourcemage.org>

Changelog, forgot the entry for dvtm

diff --git a/ChangeLog b/ChangeLog
index c085f8a..fff6978 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2009-04-23 Arjan Bouter <abouter AT sourcemage.org>
+ * windowmanagers/dvtm: new spell, console window manager
+ * security/sara: new spell, security audit tool
+
2009-04-23 Julien "_kaze_" ROZO <julien AT rozo.org>
* x11-toolkits/efltk: new spell, extended FLTK library
* windowmanagers/ede: new spell, Equinox Desktop Environment
diff --git a/security/sara/BUILD b/security/sara/BUILD
new file mode 100755
index 0000000..ee4f903
--- /dev/null
+++ b/security/sara/BUILD
@@ -0,0 +1,9 @@
+./configure --prefix=${TRACK_ROOT}/opt \
+ --sysconfdir=${TRACK_ROOT}/etc \
+ --bindir=${TRACK_ROOT}/usr/bin \
+ --sbindir=${TRACK_ROOT}/usr/sbin \
+ --localstatedir=${TRACK_ROOT}/var \
+ --mandir=${TRACK_ROOT}/usr/share/man \
+ --infodir=${TRACK_ROOT}/usr/share/info \
+ $OPTS &&
+make
diff --git a/security/sara/CONFIGURE b/security/sara/CONFIGURE
new file mode 100755
index 0000000..5961874
--- /dev/null
+++ b/security/sara/CONFIGURE
@@ -0,0 +1 @@
+config_query_list SARA_TELNET "which telnet do you want to use?" none
telnet-bsd netkit-telnet
diff --git a/security/sara/DEPENDS b/security/sara/DEPENDS
new file mode 100755
index 0000000..3fa0922
--- /dev/null
+++ b/security/sara/DEPENDS
@@ -0,0 +1,53 @@
+depends nmap &&
+depends html-parser &&
+depends net-dns &&
+depends digest-hmac &&
+depends digest-sha1 &&
+optional_depends WEB-BROWSER \
+ "" \
+ "" \
+ "for interactive execution" &&
+optional_depends WEBSERVER \
+ "" \
+ "" \
+ "for Sara Self Scan, a webserver extension" &&
+optional_depends samba \
+ "" \
+ "" \
+ "for MS Windows scanning" &&
+optional_depends openssh \
+ "--with-ssh=yes" \
+ "--with-ssh=no" \
+ "for SSH password guessing" &&
+optional_depends rdesktop \
+ "--with-rdp=yes" \
+ "--with-rdp=no" \
+ "for RDP testing" &&
+optional_depends nfs-utils \
+ "" \
+ "" \
+ "for NFS testing" &&
+optional_depends netkit-tftp \
+ "" \
+ "" \
+ "for TFTP testing" &&
+optional_depends yp-tools \
+ "" \
+ "" \
+ "for NIS testing" &&
+optional_depends bsd-finger \
+ "" \
+ "" \
+ "for finger testing" &&
+optional_depends netkit-ftp \
+ "" \
+ "" \
+ "for FTP testing" &&
+optional_depends netkit-rsh \
+ "" \
+ "" \
+ "for RSH testing" &&
+case "${SARA_TELNET}" in
+ netkit-telnet) depends netkit-telnet ;;
+ telnet-bsd) depends telnet-bsd ;;
+esac
diff --git a/security/sara/DETAILS b/security/sara/DETAILS
new file mode 100755
index 0000000..4c03f8b
--- /dev/null
+++ b/security/sara/DETAILS
@@ -0,0 +1,13 @@
+ SPELL=sara
+ VERSION=7.8.4
+ SOURCE="${SPELL}-${VERSION}.tgz"
+ SOURCE_URL[0]=http://www-arc.com/${SPELL}/downloads/${SOURCE}
+
SOURCE_HASH=sha512:381983f1eae04646f9ab5f702c364c8b91841a515d2720500c0e7d832fd032b1c593d42517f0ca4f6891283a2f528aed5992852f671dbd2b07d8d541fa106464
+SOURCE_DIRECTORY="${BUILD_DIRECTORY}/${SPELL}-${VERSION}"
+ WEB_SITE="http://www-arc.com/sara/";
+ LICENSE[0]=SUS
+ ENTERED=20090423
+ SHORT="The Security Auditor's Research Assistant"
+cat << EOF
+The Security Auditor's Research Assistant (SARA) is a third generation
network security analysis tool
+EOF
diff --git a/security/sara/HISTORY b/security/sara/HISTORY
new file mode 100644
index 0000000..0f28fbc
--- /dev/null
+++ b/security/sara/HISTORY
@@ -0,0 +1,3 @@
+2009-04-23 Arjan Bouter <abouter AT sourcemage.org>
+ * BUILD, CONFIGURE, DEPENDS, DETAILS, INSTALL: spell created
+
diff --git a/security/sara/INSTALL b/security/sara/INSTALL
new file mode 100755
index 0000000..b915a6e
--- /dev/null
+++ b/security/sara/INSTALL
@@ -0,0 +1,9 @@
+default_install &&
+
+cat << EOF > sara.sh
+#!/bin/bash
+cd /opt/sara &&
+./sara
+EOF
+
+install -m 0775 ./sara.sh ${INSTALL_ROOT}/usr/bin/sara



  • [SM-Commit] GIT changes to master grimoire by Arjan Bouter (07cb9c4ec70e8bd75b9277b9b127a19bc4c84171), Arjan Bouter, 04/23/2009

Archive powered by MHonArc 2.6.24.

Top of Page