"Fossies" - the Fresh Open Source Software Archive 
Member "authforce-0.9.9/authforce.spec" (13 May 2007, 1845 Bytes) of package /linux/www/old/authforce-0.9.9.tar.gz:
As a special service "Fossies" has tried to format the requested source page into HTML format using (guessed) RPM Spec source code syntax highlighting (style:
standard) with prefixed line numbers.
Alternatively you can here
view or
download the uninterpreted source code file.
1 %define name authforce
2 %define version 0.9.9
3 %define release 1
4 Name: %{name}
5 Version: %{version}
6 Release: %{release}
7 Summary: HTTP authentication brute forcer
8 Source: %{name}-%{version}.tar.gz
9 URL: http://divineinvasion.net/authforce
10 Group: Networking/WWW
11 BuildRoot: %{_tmppath}/%{name}-buildroot
12 Copyright: GPL
13 Packager: Panagiotis Issaris <takis@lumumba.luc.ac.be>
14 Prefix: %{_prefix}
15
16 %description
17 Authforce is an HTTP authentication brute forcer. Using various methods,
18 it attempts brute force username and password pairs for a site. It has
19 the ability to try common username and passwords, username derivations,
20 and common username/password pairs. It is used to both test the security
21 of your site and to prove the insecurity of HTTP authentication based on
22 the fact that users just don't pick good passwords.
23
24 %description -l nl
25 Authforce is een programma dat HTTP authenticatie probeert te verkrijgen
26 door brute kracht. Op verschillende methoden probeert het paren gebruikersnamen
27 en toegangswoorden uit op een site. Het geeft de mogelijkheid gebruik
28 te maken van veelgebruikte gebruikersnamen en toegangswoorden, veelgebruikte
29 paren van gebruikersnamen en toegangswoorden en toegangswoorden afgeleid van
30 de gebruikersnaam. Het wordt gebruikt om de veiligheid van uw site te testen
31 en de onveiligheid van HTTP authenticatie aan te tonen gebaseerd op het feit
32 dat gebruikers simpelweg geen goede toegangswoorden kiezen.
33
34 %prep
35 %setup
36
37 %build
38 CFLAGS="-O2"
39 %ifarch i586
40 CFLAGS="-O2 -mpentium -march=pentium"
41 %endif
42 %ifarch i686
43 CFLAGS="-O2 -mpentiumpro -march=pentiumpro"
44 %endif
45
46 %configure
47
48 %make
49
50 %install
51 rm -rf $RPM_BUILD_ROOT
52
53 %makeinstall
54
55 %clean
56 rm -rf $RPM_BUILD_ROOT
57
58 %files
59 %defattr(-,root,root,0755)
60 %doc ABOUT-NLS README NEWS COPYING AUTHORS ChangeLog TODO THANKS authforcerc.sample
61 %{prefix}/bin/authforce
62 %{prefix}/share/*/*