]> git.pld-linux.org Git - packages/ettercap6.git/blob - ettercap6.spec
- need STBR due security (smb check and do it)
[packages/ettercap6.git] / ettercap6.spec
1 # TODO:
2 #  - make GTK work
3 #  - need STBR due http://security.gentoo.org/glsa/glsa-200506-07.xml
4 #
5 Summary:        ettercap - a ncurses-based sniffer/interceptor utility
6 Summary(pl):    ettercap - oparte o ncurses narzêdzie do sniffowania/przechwytywania
7 Summary(pt_BR): ettercap e um interceptador/sniffer paseado em ncurses
8 Name:           ettercap
9 Version:        0.7.3
10 Release:        0.1
11 Epoch:          1
12 License:        GPL
13 Group:          Networking/Utilities
14 Source0:        http://dl.sourceforge.net/ettercap/%{name}-NG-%{version}.tar.gz
15 # Source0-md5:  28fb15cd024162c55249888fe1b97820
16 Patch1:         %{name}-ncurses.patch
17 Patch2:         %{name}-plugin_dir.patch
18 Patch3:         %{name}-kernel_version.patch
19 URL:            http://ettercap.sourceforge.net/
20 BuildRequires:  autoconf
21 BuildRequires:  automake
22 BuildRequires:  ncurses-ext-devel
23 BuildRequires:  openssl-devel >= 0.9.7d
24 BuildRequires:  libnet-devel >= 1.1.2.1
25 BuildRequires:  libltdl-devel
26 BuildRequires:  libpcap-devel
27 BuildRequires:  pcre-devel
28 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
29
30 %define         specflags       -fomit-frame-pointer
31
32 %description
33 ettercap is a network sniffer/interceptor/logger for ethernet LANs
34 (both switched or not). It supports active and passive dissection of
35 many protocols (even ciphered ones, like SSH and HTTPS). Data
36 injection in an established connection and filtering (substitute or
37 drop a packet) on the fly is also possible, keeping the connection
38 synchronized. Many sniffing modes were implemented to give you a
39 powerful and complete sniffing suite. Plugins are supported. It has
40 the ability to check whether you are in a switched LAN or not, and to
41 use OS fingerprints (active or passive) to let you know the geometry
42 of the LAN. The passive scan of the LAN retrieves infos about: hosts
43 in the lan, open ports, services version, type of the host (gateway,
44 router or simple host) and extimated distance in hop.
45
46 %description -l pl
47 ettercap jest wieloczynno¶ciowym snifferem/przechwytywaczem/loggerem
48 dla sieci LAN (opartych na switchach lub hubach). Obs³uguje aktywn± i
49 pasywn± analizê wielu protoko³ów (nawet szyfrowanych, jak SSH czy
50 HTTPS). Mo¿liwe jest tak¿e wstrzykiwanie lub filtrowanie danych
51 (podmiana lub usuniêcie pakietu) w locie, przy podtrzymaniu
52 synchronizacji po³±czenia. Program ma zaimplementowane wiele trybów
53 sniffowania, aby daæ potê¿ne i kompletne narzêdzie. Obs³ugiwane s±
54 wtyczki. Program ma mo¿liwo¶æ sprawdzania, czy pracuje w sieci ze
55 switchami oraz u¿ywania odcisków systemów (aktywnego lub pasywnego)
56 do poznania geometrii sieci. Pasywne skanowanie sieci uzyskuje
57 informacje o: hostach w sieci, otwartych portach, wersjach us³ug,
58 rodzajach hostów (bramki, routery lub zwyk³e komputery) oraz
59 przybli¿onych odleg³o¶ciach (w hopach).
60
61 %description -l pt_BR
62 ettercap é um sniffer/interceptor/logger de rede para redes locais
63 (com uso de switches ou não). Suporta operações ativas e passivas de
64 vários protocolos (mesmo os criptografados, como SSH e HTTPS). Também
65 é possível injeção de dados em uma conexão estabelecida e filtragem
66 (substituição ou descarte de um pacote) em tempo real mantendo a
67 conexão sincronizada. Muitos modos de sniffing foram implementadas
68 para proporcionar a você um completo conjunto de sniffing. Plugins são
69 suportados. Tem a habilidade de verificar se você está em uma rede
70 local com switches ou não. Utiliza fingerprints do Sistema Operacional
71 (ativo ou passivo) para permitir que você conheça a geometria da rede
72 local. A varredura passiva da rede local obtém informações sobre:
73 hosts na rede local, portas abertas, versão de serviços, tipo de host
74 (gateway, router ou um computador) e a distância estimada no hop.
75
76 %prep
77 %setup -q -n %{name}-NG-%{version}
78 #%patch1 -p0
79 #%patch2 -p1
80 #%patch3 -p1
81
82 %build
83 #cp -f /usr/share/automake/config.sub .
84 #%{__aclocal}
85 #%{__autoconf}
86 #%{__autoheader}
87 CFLAGS="%{rpmcflags} -I/usr/include/ncurses"
88 %configure \
89         --enable-devel \
90         --enable-ncurses \
91         --disable-gtk \
92         --%{!?debug:dis}%{?debug:en}able-debug \
93         --enable-plugins \
94         --enable-https \
95         --enable-gtk
96 %{__make}
97
98 %install
99 rm -rf $RPM_BUILD_ROOT
100
101 %{__make} install \
102         DESTDIR=$RPM_BUILD_ROOT
103
104 %clean
105 rm -rf $RPM_BUILD_ROOT
106
107 %files
108 %defattr(644,root,root,755)
109 %doc README CHANGELOG AUTHORS TODO doc/*
110 %doc THANKS README.BUGS
111 %attr(755,root,root) %{_bindir}/*
112 %{_libdir}/ettercap
113 %{_datadir}/ettercap
114 %{_mandir}/man8/*
115 %{_mandir}/man5/*
116 %config(noreplace) %verify(not size mtime md5) %{_sysconfdir}/etter.conf
This page took 0.027872 seconds and 3 git commands to generate.