diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..820c72a --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +unicornscan-0.4.7-2.tar.bz2 diff --git a/dead.package b/dead.package deleted file mode 100644 index ab7426e..0000000 --- a/dead.package +++ /dev/null @@ -1 +0,0 @@ -Retired: Long term failure to build diff --git a/sources b/sources new file mode 100644 index 0000000..e397b21 --- /dev/null +++ b/sources @@ -0,0 +1 @@ +4c5f272eb38c333c0094c32317edf758 unicornscan-0.4.7-2.tar.bz2 diff --git a/unicornscan-0.4.7-config.patch b/unicornscan-0.4.7-config.patch new file mode 100644 index 0000000..1bc02ad --- /dev/null +++ b/unicornscan-0.4.7-config.patch @@ -0,0 +1,56 @@ +--- unicornscan-0.4.7/etc/modules.conf 2006-10-18 18:57:05.000000000 +0200 ++++ unicornscan-0.4.7/etc/modules.conf.config 2009-12-05 20:34:31.000000000 +0100 +@@ -1,16 +1,9 @@ + + module "pgsqldb" { +- dbconf: "user=scan password=scanit! host=localhost dbname=scan"; ++ dbconf: "user=unicornscan password=scanit! host=localhost dbname=unicornscan"; + logpacket: "true"; + }; + +-module "mysqldb" { +- username: "scan"; +- password: "scanit!"; +- hostname: "localhost"; +- dbname: "foo"; +-}; +- + module "osdetect" { + /* Stim TCPFLG TTL DF WS TOS Misc */ + /* tcpopts type desc */ +--- unicornscan-0.4.7/www-front-end/config.php 2007-11-27 11:23:35.000000000 +0100 ++++ unicornscan-0.4.7/www-front-end/config.php.config 2009-12-05 20:35:13.000000000 +0100 +@@ -4,16 +4,16 @@ + define("config_master_include", 1); + + // Web Server location stuff +- $PHPLIB["uri_base"]="http://localhost/unicornscan/"; // http://vhost.domain.tld/something/ ++ $PHPLIB["uri_base"]="/unicornscan/"; // http://vhost.domain.tld/something/ + +- $PHPLIB["filesystem_base"]="/var/www/htdocs/unicornscan/"; // Base directory content is in +- $PHPLIB["filesystem_phplib"]="/var/www/htdocs/unicornscan/lib/"; // Where phplib is +- $PHPLIB["filesystem_temporary"]="/tmp/"; // Where can i write files to? ++ $PHPLIB["filesystem_base"]="/usr/share/unicornscan/"; // Base directory content is in ++ $PHPLIB["filesystem_phplib"]="/usr/share/unicornscan/lib/"; // Where phplib is ++ $PHPLIB["filesystem_temporary"]="/var/lib/unicornscan/web/"; // Where can i write files to? + + // DataBase Variables +- $PHPLIB["database_name"]="scan"; // change this for sure , its the database name +- $PHPLIB["database_type"]="pgsql"; // pgsql, mysql, youll need the right class though +- $PHPLIB["database_username"]="scan"; ++ $PHPLIB["database_name"]="unicornscan"; // change this for sure , its the database name ++ $PHPLIB["database_type"]="pgsql"; // and something else isn't supported right now ++ $PHPLIB["database_username"]="unicornscan"; + $PHPLIB["database_password"]="scanit!"; + $PHPLIB["database_host"]="127.0.0.1"; + $PHPLIB["database_db"]["default"]=""; +@@ -24,6 +24,9 @@ + // formclass2.php stuff + $PHPLIB["formclass_warnimage"]="exl.gif"; // warning image for invalid forms + ++ // No PHP error reporting ++ error_reporting(0); ++ + } // Double Inclusion detection + + require("./lib/connect_todb.php"); diff --git a/unicornscan-0.4.7-gcc5.patch b/unicornscan-0.4.7-gcc5.patch new file mode 100644 index 0000000..9ba28b8 --- /dev/null +++ b/unicornscan-0.4.7-gcc5.patch @@ -0,0 +1,51 @@ +Patch by Robert Scheck for unicornscan >= 0.4.7 to avoid +build failures with GCC 5.x such as "unicornscan-0.4.7/src/unilib/tsc.c:163: +undefined reference to `get_tsc'" (occurring in some different source code lines). + +--- unicornscan-0.4.7/src/unilib/tsc.c 2006-10-18 18:57:05.000000000 +0200 ++++ unicornscan-0.4.7/src/unilib/tsc.c.gcc5 2015-06-20 19:57:35.000000000 +0200 +@@ -30,7 +30,7 @@ + return 1; + } + +-inline tsc_t get_tsc(void) { ++tsc_t get_tsc(void) { + tsc_t j; + asm volatile ( "pause\n" + "nop\n" +@@ -52,7 +52,7 @@ + * by Matteo Frigo + */ + +-inline tsc_t get_tsc(void) { ++tsc_t get_tsc(void) { + uint32_t tbl, tbu0, tbu1; + + asm volatile("nop"); +@@ -75,7 +75,7 @@ + return 1; + } + +-inline tsc_t get_tsc(void) { ++tsc_t get_tsc(void) { + tsc_t j; + + asm volatile ( +@@ -96,7 +96,7 @@ + return 1; + } + +-inline tsc_t get_tsc(void) { ++tsc_t get_tsc(void) { + uint32_t j; + + /* +@@ -144,7 +144,7 @@ + return 0; + } + +-inline tsc_t get_tsc(void) { ++tsc_t get_tsc(void) { + PANIC("Your CPU is not supported by the `tsc' delay, use -d2 or -d3 or edit your config file to use gtod or sleep"); + } + diff --git a/unicornscan-0.4.7-geoip.patch b/unicornscan-0.4.7-geoip.patch new file mode 100644 index 0000000..2ba6941 --- /dev/null +++ b/unicornscan-0.4.7-geoip.patch @@ -0,0 +1,31 @@ +Patch by Robert Scheck for unicornscan >= 0.4.7, which adds the +standard location of GeoIP data at Fedora in front of the original opening try. Unicornscan +upstream is expecting /etc/unicornscan/GeoIP.dat instead of /usr/share/GeoIP/GeoIP.dat by +default. This patch is looking for the existence of /usr/share/GeoIP/GeoIP.dat, otherwise +/etc/unicornscan/GeoIP.dat will be used to not break the standards from upstream, if patch +gets applied for a future unicornscan release. + +--- unicornscan-0.4.7/src/scan_progs/report.c 2006-10-18 18:57:05.000000000 +0200 ++++ unicornscan-0.4.7/src/scan_progs/report.c.geoip 2009-11-17 13:16:04.000000000 +0100 +@@ -68,9 +68,18 @@ + report_t=rbinit(123); + + #ifdef HAVE_LIBGEOIP +- gi=GeoIP_open(CONF_DIR "/GeoIP.dat", GEOIP_MEMORY_CACHE); +- if (gi == NULL) { +- ERR("error opening geoip database `%s/%s': %s", CONF_DIR, "/GeoIP.dat", strerror(errno)); ++ ++ if (access("/usr/share/GeoIP/GeoIP.dat", F_OK) == 0) { ++ gi=GeoIP_open("/usr/share/GeoIP/GeoIP.dat", GEOIP_MEMORY_CACHE); ++ if (gi == NULL) { ++ ERR("error opening geoip standard database `/usr/share/GeoIP/GeoIP.dat': %s", strerror(errno)); ++ } ++ } ++ else { ++ gi=GeoIP_open(CONF_DIR "/GeoIP.dat", GEOIP_MEMORY_CACHE); ++ if (gi == NULL) { ++ ERR("error opening geoip database `%s/%s': %s", CONF_DIR, "/GeoIP.dat", strerror(errno)); ++ } + } + + #endif diff --git a/unicornscan-0.4.7-ldflags.patch b/unicornscan-0.4.7-ldflags.patch new file mode 100644 index 0000000..28888b7 --- /dev/null +++ b/unicornscan-0.4.7-ldflags.patch @@ -0,0 +1,23 @@ +Patch by Robert Scheck for unicornscan >= 0.4.7 to add missing linking +to -lGeoIP, see also https://bugzilla.redhat.com/show_bug.cgi?id=1623468 for details. Build errors +without this patch: + + /usr/bin/ld: /builddir/build/BUILD/unicornscan-0.4.7/src/scan_progs/.libs/libscan.a(report.o): in function `fmtcat': + /builddir/build/BUILD/unicornscan-0.4.7/src/scan_progs/report.c:530: undefined reference to `GeoIP_country_code_by_addr' + /usr/bin/ld: /builddir/build/BUILD/unicornscan-0.4.7/src/scan_progs/.libs/libscan.a(report.o): in function `report_init': + /builddir/build/BUILD/unicornscan-0.4.7/src/scan_progs/report.c:73: undefined reference to `GeoIP_open' + /usr/bin/ld: /builddir/build/BUILD/unicornscan-0.4.7/src/scan_progs/report.c:79: undefined reference to `GeoIP_open' + /usr/bin/ld: /builddir/build/BUILD/unicornscan-0.4.7/src/scan_progs/.libs/libscan.a(report.o): in function `report_destroy': + /builddir/build/BUILD/unicornscan-0.4.7/src/scan_progs/report.c:118: undefined reference to `GeoIP_delete' + +--- unicornscan-0.4.7/src/scan_progs/Makefile.in 2007-12-18 17:02:36.000000000 +0100 ++++ unicornscan-0.4.7/src/scan_progs/Makefile.in.ldflags 2018-10-11 22:30:32.216692350 +0200 +@@ -23,7 +23,7 @@ + all: $(L_LIBNAME) @sendername@ @listenername@ + + $(LS_LIBNAME): $(LS_OBJS) $(LS_HDRS) +- $(LIBTOOL) --mode=link $(CC) $(CFLAGS) -o $(LS_LIBNAME) $(LS_OBJS) ++ $(LIBTOOL) --mode=link $(CC) $(CFLAGS) -o $(LS_LIBNAME) $(LS_OBJS) $(LDFLAGS) + + @sendername@: $(S_OBJS) $(LS_LIBNAME) $(S_HDRS) ../unilib/libunilib.la ../parse/libparse.la $(ENTRY) + $(LIBTOOL) --mode=clean rm -f $(ENTRY:.c=.lo) diff --git a/unicornscan-0.4.7-lib64.patch b/unicornscan-0.4.7-lib64.patch new file mode 100644 index 0000000..bbfaa37 --- /dev/null +++ b/unicornscan-0.4.7-lib64.patch @@ -0,0 +1,47 @@ +Patch by Robert Scheck for unicornscan >= 0.4.7, which +adds support for x86_64, ppc64 or other 64 bit architectures using /usr/lib64 for +their libraries. Having lib64 in front of lib is mandatory, as 64 bit systems are +likely to run with multi-lib, that means 32 bit libraries are parallel in use. If +you apply this patch, don't run autoconf > 2.6.3, as it will break, because whole +autotools stuff from upstream is unfortunately a bit broken. + +--- unicornscan-0.4.7/configure.ac 2007-11-29 15:51:20.000000000 +0100 ++++ unicornscan-0.4.7/configure.ac.lib64 2009-11-16 23:32:27.000000000 +0100 +@@ -269,7 +269,7 @@ + AC_MSG_RESULT(no) + fi + else +- for i in lib lib/mysql; do ++ for i in lib64 lib lib64/mysql lib/mysql; do + str="$MYSQL_DIR/$i/libmysqlclient.*" + for j in `echo $str`; do + if test -r $j; then +@@ -331,7 +331,7 @@ + AC_MSG_RESULT(no) + fi + else +- for i in lib lib/postgresql; do ++ for i in lib64 lib lib64/postgresql lib/postgresql; do + str="$PGSQL_DIR/$i/libpq.*" + for j in `echo $str`; do + if test -r $j; then +--- unicornscan-0.4.7/configure 2007-12-18 16:26:12.000000000 +0100 ++++ unicornscan-0.4.7/configure.lib64 2009-12-05 12:04:32.000000000 +0100 +@@ -26275,7 +26275,7 @@ + echo "${ECHO_T}no" >&6; } + fi + else +- for i in lib lib/mysql; do ++ for i in lib64 lib lib64/mysql lib/mysql; do + str="$MYSQL_DIR/$i/libmysqlclient.*" + for j in `echo $str`; do + if test -r $j; then +@@ -26438,7 +26438,7 @@ + echo "${ECHO_T}no" >&6; } + fi + else +- for i in lib lib/postgresql; do ++ for i in lib64 lib lib64/postgresql lib/postgresql; do + str="$PGSQL_DIR/$i/libpq.*" + for j in `echo $str`; do + if test -r $j; then diff --git a/unicornscan-README.fedora b/unicornscan-README.fedora new file mode 100644 index 0000000..1b6663d --- /dev/null +++ b/unicornscan-README.fedora @@ -0,0 +1,81 @@ +Unicornscan and PostgreSQL +-------------------------- + +1. The PostgreSQL service has to be up and running. Depending on the exact + version of Fedora or Red Hat Enterprise Linux, on the first PostgreSQL + startup, a "service postgresql initdb" is maybe required for initializing. + + [root@tux ~]# service postgresql start + Starting postgresql service: [ OK ] + [root@tux ~]# + +2. Switch to the PostgreSQL user. + + [root@tux ~]# su - postgres + -bash-4.0$ + +3. Create an own PostgreSQL database user for unicornscan. Don't forget to set + a password, e.g. "scanit!" as it is used in all examples. + + -bash-4.0$ createuser --no-superuser --no-createrole --no-createdb --pwprompt unicornscan + Enter password for new role: + Enter it again: + -bash-4.0$ + +4. Create an own PostgreSQL database for unicornscan linked with the previous + generated database user for unicornscan. + + -bash-4.0$ createdb --owner unicornscan unicornscan + -bash-4.0$ + +5. Switch back to the root user. + + -bash-4.0$ exit + exit + [root@tux ~]# + +6. Edit PostgreSQL client authentication file /var/lib/pgsql/data/pg_hba.conf + file with a text editor, insert the following lines before the other already + existing rules. + + # TYPE DATABASE USER CIDR-ADDRESS METHOD + local unicornscan unicornscan md5 + host unicornscan unicornscan 127.0.0.1/32 md5 + host unicornscan unicornscan ::1/128 md5 + +7. Edit PostgreSQL server configuration in /var/lib/pgsql/data/postgresql.conf + and set the configuration variable as follows: + + escape_string_warning = off + +8. Restart the PostgreSQL service to enable the previous performed changes. + + [root@tux ~]# service postgresql restart + Stopping postgresql service: [ OK ] + Starting postgresql service: [ OK ] + [root@tux ~]# + +9. Create the required tables for unicornscan inside of PostgreSQL database, + there will be some error messages displayed after entering the password for + psql. These error messages are normal and expected, because the SQL dump + contains a SQL DROP of all tables before the SQL CREATE is performed. + + [root@tux ~]# psql --username unicornscan --password unicornscan < /usr/share/doc/unicornscan-0.*/pgsql_schema.sql + Password for user unicornscan: + [...] + [root@tux ~]# + +10. Edit the unicornscan configuration file /etc/unicornscan/modules.conf and + check or correct the PostgreSQL database connection settings. + + module "pgsqldb" { + dbconf: "user=unicornscan password=scanit! host=localhost dbname=unicornscan"; + logpacket: "true"; + }; + +11. Perform a small sample scan and write the output to PostgreSQL database. + + [root@tux ~]# unicornscan www.google.com -e pgsqldb + TCP open http[ 80] from 209.85.129.104 ttl 52 + TCP open https[ 443] from 209.85.129.104 ttl 52 + [root@tux ~]# diff --git a/unicornscan-web-README.fedora b/unicornscan-web-README.fedora new file mode 100644 index 0000000..3199fb2 --- /dev/null +++ b/unicornscan-web-README.fedora @@ -0,0 +1,45 @@ +Unicornscan and PostgreSQL +-------------------------- + +1. Follow the /usr/share/doc/unicornscan-0.*/README.fedora file, so that the + PostgreSQL service is up and running already. + +2. Start (or restart) the Apache HTTP webserver, to ensure that configuration + file for Apache gets active. + + [root@tux ~]# service httpd start + Starting httpd: [ OK ] + [root@tux ~]# + +3. Create the required tables for unicornscan inside of PostgreSQL database, + there will be some error messages displayed after entering the password for + psql. These error messages are normal and expected, because the SQL dump + contains a SQL DROP of all tables before the SQL CREATE is performed. + + [root@tux ~]# psql --username unicornscan --password unicornscan < /usr/share/doc/unicornscan-web-0.*/session.sql + Password for user unicornscan: + [...] + [root@tux ~]# + +4. If you've got SELinux enabled, make sure, that SELinux allows Apache/PHP to + connect to the PostgreSQL database. If you don't have SELinux enabled, just + skip this step. + + setsebool -P httpd_can_network_connect_db=1 + +5. Edit the unicornscan configuration file /etc/unicornscan/web.php and check + or correct the PostgreSQL database connection settings. + + $PHPLIB["database_name"]="unicornscan"; + $PHPLIB["database_username"]="unicornscan"; + $PHPLIB["database_password"]="scanit!"; + $PHPLIB["database_host"]="127.0.0.1"; + +6. Perform a small sample scan and write the output to PostgreSQL database. + + [root@tux ~]# unicornscan www.google.com -e pgsqldb + TCP open http[ 80] from 209.85.129.104 ttl 52 + TCP open https[ 443] from 209.85.129.104 ttl 52 + [root@tux ~]# + +7. Open a webbrowser and switch to: http://localhost/unicornscan/ diff --git a/unicornscan.conf b/unicornscan.conf new file mode 100644 index 0000000..dbafb87 --- /dev/null +++ b/unicornscan.conf @@ -0,0 +1,5 @@ +# +# Scalable, accurate, flexible and efficient network probing +# + +Alias /unicornscan /usr/share/unicornscan diff --git a/unicornscan.spec b/unicornscan.spec new file mode 100644 index 0000000..2ceee18 --- /dev/null +++ b/unicornscan.spec @@ -0,0 +1,210 @@ +Summary: Scalable, accurate, flexible and efficient network probing +Name: unicornscan +Version: 0.4.7 +Release: 21%{?dist} +License: GPLv2+ +URL: http://www.unicornscan.org/ +Source0: http://www.unicornscan.org/releases/%{name}-%{version}-2.tar.bz2 +Source1: unicornscan.conf +Source2: unicornscan-README.fedora +Source3: unicornscan-web-README.fedora +Patch0: unicornscan-0.4.7-lib64.patch +Patch1: unicornscan-0.4.7-geoip.patch +Patch2: unicornscan-0.4.7-config.patch +Patch3: unicornscan-0.4.7-gcc5.patch +Patch4: unicornscan-0.4.7-ldflags.patch +Requires(pre): shadow-utils +BuildRequires: gcc-c++ +BuildRequires: flex, bison, libpcap-devel, libtool-ltdl-devel +BuildRequires: libdnet-devel, GeoIP-devel, libpq-devel + +%description +Unicornscan is an attempt at a user-land distributed TCP/IP stack. It is +intended to provide a researcher a superior interface for introducing a +stimulus into and measuring a response from a TCP/IP enabled device or +network. Although it currently has hundreds of individual features, a main +set of abilities include: Asynchronous stateless TCP scanning with all +variations of TCP flags, asynchronous stateless TCP banner grabbing, +asynchronous protocol specific UDP scanning (sending enough of a signature +to elicit a response), active and passive remote OS, application and +component identification by analyzing responses, PCAP file logging and +filtering, relational database output, custom module support, customized +data-set views. + +%package web +Summary: Web-based front-end for unicornscan database results +Requires: %{name} = %{version}-%{release}, php-pgsql, httpd +BuildArch: noarch + +%description web +Unicornscan provides support to write results into a database. And with the +web-based front-end for unicornscan, which is written in PHP, these results +can be easily interpreted and visualized. + +%prep +%setup -q +%patch0 -p1 -b .lib64 +%patch1 -p1 -b .geoip +%patch2 -p1 -b .config +%patch3 -p1 -b .gcc5 +%patch4 -p1 -b .ldflags + +cp -pf %{SOURCE2} README.fedora +cp -pf %{SOURCE3} www-front-end/README.fedora + +%build +# - _GNU_SOURCE is required for "ucred" from via +# - Use classical non-SELinux permission schema once SELinux Reference Policy is +# including unicornscan support directly, maybe with Fedora 13 and/or RHEL 6 +# - MySQL support is only available in ./configure as inside broken and disabled +export CFLAGS="$RPM_OPT_FLAGS -D_GNU_SOURCE" +%configure --localstatedir=%{_localstatedir}/lib --with-pgsql --with-listen-user=%{name} +%make_build + +%install +%make_install + +# Remove the static library files +rm -f $RPM_BUILD_ROOT%{_libdir}/%{name}/modules/*.a + +# Correct permissions and timestamps +chmod 644 $RPM_BUILD_ROOT%{_sysconfdir}/%{name}/* +touch -c -r etc/modules.conf.config $RPM_BUILD_ROOT%{_sysconfdir}/%{name}/modules.conf + +# Install web files into destination +cp -af www-front-end $RPM_BUILD_ROOT%{_datadir}/%{name}/ +rm -rf $RPM_BUILD_ROOT%{_datadir}/%{name}/attic +rm -f $RPM_BUILD_ROOT%{_datadir}/%{name}/{config.php.config,README.fedora,TODO} +rm -f $RPM_BUILD_ROOT%{_datadir}/%{name}/lib/{session.sql,.htaccess} + +# Move configuration file to its place +mv -f $RPM_BUILD_ROOT%{_datadir}/%{name}/config.php $RPM_BUILD_ROOT%{_sysconfdir}/%{name}/web.php +touch -c -r www-front-end/config.php.config $RPM_BUILD_ROOT%{_sysconfdir}/%{name}/web.php +ln -sf ../../..%{_sysconfdir}/%{name}/web.php $RPM_BUILD_ROOT%{_datadir}/%{name}/config.php + +# Install the apache configuration file +mkdir -p $RPM_BUILD_ROOT%{_sysconfdir}/httpd/conf.d/ +install -p -m 644 %{SOURCE1} $RPM_BUILD_ROOT%{_sysconfdir}/httpd/conf.d/%{name}.conf + +# Create temporary directory for packaging +mkdir -p $RPM_BUILD_ROOT%{_localstatedir}/lib/%{name}/web/ + +%pre +getent group %{name} > /dev/null || %{_sbindir}/groupadd -r %{name} +getent passwd %{name} > /dev/null || %{_sbindir}/useradd -r -g %{name} -d %{_localstatedir}/lib/%{name} -s /sbin/nologin -c "Unicornscan User" %{name} +exit 0 + +%files +%license LICENSE +%doc AUTHORS README README.database README.fedora README.security +%doc THANKS TODO UDP_PAYLOADS_NEEDED docs/Unicornscan-Getting_Started.pdf +%doc src/output_modules/database/sql/pgsql_schema.sql src/parse/example_confs +%dir %{_sysconfdir}/%{name} +%config(noreplace) %attr(0640,%{name},%{name}) %{_sysconfdir}/%{name}/modules.conf +%config(noreplace) %{_sysconfdir}/%{name}/oui.txt +%config(noreplace) %{_sysconfdir}/%{name}/payloads.conf +%config(noreplace) %{_sysconfdir}/%{name}/ports.txt +%config(noreplace) %{_sysconfdir}/%{name}/unicorn.conf +%{_bindir}/fantaip +%{_bindir}/unibrow +%{_bindir}/unicfgtst +%{_bindir}/%{name} +%{_bindir}/us +%dir %{_libdir}/%{name} +%dir %{_libdir}/%{name}/modules +# *.la files are referenced by the shared objects and required +%{_libdir}/%{name}/modules/httpexp.la +%{_libdir}/%{name}/modules/httpexp.so +%{_libdir}/%{name}/modules/http.la +%{_libdir}/%{name}/modules/http.so +%{_libdir}/%{name}/modules/ntalk.la +%{_libdir}/%{name}/modules/ntalk.so +%{_libdir}/%{name}/modules/osdetect.la +%{_libdir}/%{name}/modules/osdetect.so +%{_libdir}/%{name}/modules/pgsqldb.la +%{_libdir}/%{name}/modules/pgsqldb.so +%{_libdir}/%{name}/modules/rdns.la +%{_libdir}/%{name}/modules/rdns.so +%{_libdir}/%{name}/modules/sip.la +%{_libdir}/%{name}/modules/sip.so +%{_libdir}/%{name}/modules/upnp.la +%{_libdir}/%{name}/modules/upnp.so +%dir %{_libexecdir}/%{name} +%{_libexecdir}/%{name}/unilisten +%{_libexecdir}/%{name}/unisend +%{_mandir}/man1/%{name}.1* +%dir %{_localstatedir}/lib/%{name} + +%files web +%doc www-front-end/README.fedora www-front-end/lib/session.sql +%config(noreplace) %{_sysconfdir}/httpd/conf.d/%{name}.conf +%config(noreplace) %attr(640,apache,apache) %{_sysconfdir}/%{name}/web.php +%{_datadir}/%{name} +%attr(-,apache,apache) %dir %{_localstatedir}/lib/%{name}/web + +%changelog +* Fri Jan 31 2020 Fedora Release Engineering - 0.4.7-21 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild + +* Sat Jul 27 2019 Fedora Release Engineering - 0.4.7-20 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild + +* Sun Feb 03 2019 Fedora Release Engineering - 0.4.7-19 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild + +* Thu Oct 11 2018 Robert Scheck 0.4.7-18 +- Add missing linking to -lGeoIP (#1623468) + +* Sat Jul 14 2018 Fedora Release Engineering - 0.4.7-17 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild + +* Fri Feb 09 2018 Fedora Release Engineering - 0.4.7-16 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild + +* Thu Aug 03 2017 Fedora Release Engineering - 0.4.7-15 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild + +* Thu Jul 27 2017 Fedora Release Engineering - 0.4.7-14 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild + +* Sat Feb 11 2017 Fedora Release Engineering - 0.4.7-13 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild + +* Fri Feb 05 2016 Fedora Release Engineering - 0.4.7-12 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild + +* Sat Jun 20 2015 Robert Scheck 0.4.7-11 +- Added patch to make rebuilding with GCC 5 working + +* Fri Jun 19 2015 Fedora Release Engineering - 0.4.7-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild + +* Mon Aug 18 2014 Fedora Release Engineering - 0.4.7-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild + +* Sun Jun 08 2014 Fedora Release Engineering - 0.4.7-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild + +* Sun Aug 04 2013 Fedora Release Engineering - 0.4.7-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild + +* Fri Feb 15 2013 Fedora Release Engineering - 0.4.7-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild + +* Sun Jul 22 2012 Fedora Release Engineering - 0.4.7-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild + +* Sat Jan 14 2012 Fedora Release Engineering - 0.4.7-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild + +* Mon Feb 07 2011 Fedora Release Engineering - 0.4.7-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild + +* Sat Dec 05 2009 Robert Scheck 0.4.7-2 +- Added unicornscan-web subpackage (#538190 #c3, Robert E. Lee) +- Updated the patch for 64 bit support in configure (#538190 #c6) + +* Tue Nov 17 2009 Robert Scheck 0.4.7-1 +- Upgrade to 0.4.7 +- Initial spec file for Fedora and Red Hat Enterprise Linux (spec + file is based on a try by Robert E. Lee and Manuel Wolfshant)