rpms/medusa/devel import.log, NONE, 1.1 medusa-1.5-configure.patch, NONE, 1.1 medusa.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2

Jan F. Chadima jfch2222 at fedoraproject.org
Fri Apr 10 09:13:01 UTC 2009


Author: jfch2222

Update of /cvs/pkgs/rpms/medusa/devel
In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15932/devel

Modified Files:
	.cvsignore sources 
Added Files:
	import.log medusa-1.5-configure.patch medusa.spec 
Log Message:
Initial import



--- NEW FILE import.log ---
medusa-1_5-5_fc12:HEAD:medusa-1.5-5.fc12.src.rpm:1239354437

medusa-1.5-configure.patch:

--- NEW FILE medusa-1.5-configure.patch ---
--- medusa-1.5/configure.in.jfch	2009-02-09 18:02:09.000000000 +0100
+++ medusa-1.5/configure.in	2009-03-16 10:50:24.999005882 +0100
@@ -43,7 +43,7 @@ fi
 
 CFLAGS="$CFLAGS -fPIC"
 CFLAGS="$CFLAGS -I/usr/local/include -I/usr/local/ssl/include -I${subversion_prefix}/include/subversion-1 \
-$(apr-config --includes --cppflags) -I${postgresql_prefix}/include/postgresql -I${afpfsng_prefix}/include/afpfs-ng"
+-I/usr/include/apr-1 -I/usr/include/apr-0 -I${postgresql_prefix}/include/postgresql -I${afpfsng_prefix}/include/afpfs-ng"
 
 AC_CHECKING([for pthread support])
 AC_CHECK_LIB(pthread, main, [], [AC_MSG_ERROR([ *** Application requires pthread support *** ])])
@@ -520,7 +520,7 @@ AC_CHECK_HEADER([apr-0/apr_tables.h], 
     [AC_DEFINE(HAVE_LIBSVN_CLIENT_1, 1, [Found SVN Library]) MODULE_LDFLAGS="$MODULE_LDFLAGS -lsvn_client-1" check_module_svn="true"],
     [AC_MSG_WARN([ *** LIBSVN library required for SVN module. *** ])]
   )],
-  [AC_CHECK_HEADER([apr-1.0/apr_tables.h],
+  [AC_CHECK_HEADER([apr-1/apr_tables.h],
     [AC_CHECK_LIB(svn_client-1, main,
       [AC_DEFINE(HAVE_LIBSVN_CLIENT_1, 1, [Found SVN Library]) MODULE_LDFLAGS="$MODULE_LDFLAGS -lsvn_client-1" check_module_svn="true"],
       [AC_MSG_WARN([ *** LIBSVN library required for SVN module. *** ])]


--- NEW FILE medusa.spec ---
# Afpfs is not yet in fedora
%define _with_afpfs 0

Summary: Parallel brute forcing password cracker
Name: medusa
Version: 1.5
Release: 5%{?dist}
License: GPLv2
Group: Applications/System
URL: http://www.foofus.net/jmk/medusa/medusa.html
Source0: http://www.foofus.net/jmk/tools/%{name}-%{version}.tar.gz
Patch1: medusa-1.5-configure.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
BuildRequires: autoconf, automake, libtool, openssl-devel, apr-devel, ncpfs-devel, libssh2-devel, subversion-devel, postgresql-devel
%if %{_with_afpfs}
BuildRequires: afpfs-ng-devel
%define _afp_module yes
%else
%define _afp_module no
%endif

%description
Medusa is a speedy, massively parallel, modular,
login brute-forcer for network services.
Some of the key features of Medusa are:

    * Thread-based parallel testing. Brute-force
      testing can be performed against multiple hosts,
      users or passwords concurrently.
    * Flexible user input. Target information
      (host/user/password) can be specified in a variety of ways.
      For example, each item can be either a single
      entry or a file containing multiple entries.
      Additionally, a combination file format allows
      the user to refine their target listing.
    * Modular design. Each service module exists
      as an independent .mod file.
      This means that no modifications are necessary
      to the core application in order to extend
      the supported list of services for brute-forcing.

%prep
%setup -q
%patch1 -p1 -b .configure

%build
aclocal
autoheader
libtoolize --automake
automake --add-missing
autoconf
# required type off64_t is not available under all environments, ugly hack for ugly system heasders
export CPPFLAGS="-Doff64_t=__off64_t %{optflags}" ; export CFLAGS="-Doff64_t=__off64_t %{optflags}"
%{configure} --enable-module-afp=%{_afp_module}
make %{?_smp_mflags}

%install
rm -rf %{buildroot}
make DESTDIR=%{buildroot} install
 
%clean
rm -rf %{buildroot}

%files
%defattr(-,root,root,-)
%doc AUTHORS COPYING ChangeLog README TODO
%{_bindir}/*
%{_mandir}/man1/*
%dir %{_libdir}/medusa
%{_libdir}/medusa/*

%changelog
* Tue Mar 24 2009 Jan F. Chadima <jchadima at redhat.com> - 10.5-5
- drop empty NEWS file

* Thu Mar 20 2009 Jan F. Chadima <jchadima at redhat.com> - 10.5-4
- fix license type
- fix description

* Thu Mar 20 2009 Jan F. Chadima <jchadima at redhat.com> - 10.5-3
- add missing build reqs

* Thu Mar 19 2009 Jan F. Chadima <jchadima at redhat.com> - 10.5-2
- repair summary and url according to recomendations
- switch afp support off by default

* Mon Mar 16 2009 Jan F. Chadima <jchadima at redhat.com> - 10.5-1
- initial build


Index: .cvsignore
===================================================================
RCS file: /cvs/pkgs/rpms/medusa/devel/.cvsignore,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- .cvsignore	3 Apr 2009 20:45:41 -0000	1.1
+++ .cvsignore	10 Apr 2009 09:12:31 -0000	1.2
@@ -0,0 +1 @@
+medusa-1.5.tar.gz


Index: sources
===================================================================
RCS file: /cvs/pkgs/rpms/medusa/devel/sources,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- sources	3 Apr 2009 20:45:41 -0000	1.1
+++ sources	10 Apr 2009 09:12:31 -0000	1.2
@@ -0,0 +1 @@
+82f884666161af80f8cee7a7d5c7554d  medusa-1.5.tar.gz




More information about the scm-commits mailing list