<86>Nov 2 08:37:55 userdel[16499]: delete user 'rooter' <86>Nov 2 08:37:55 userdel[16499]: removed group 'rooter' owned by 'rooter' <86>Nov 2 08:37:55 userdel[16499]: removed shadow group 'rooter' owned by 'rooter' <86>Nov 2 08:37:55 groupadd[16505]: group added to /etc/group: name=rooter, GID=603 <86>Nov 2 08:37:55 groupadd[16505]: group added to /etc/gshadow: name=rooter <86>Nov 2 08:37:55 groupadd[16505]: new group: name=rooter, GID=603 <86>Nov 2 08:37:55 useradd[16509]: new user: name=rooter, UID=603, GID=603, home=/root, shell=/bin/bash <86>Nov 2 08:37:55 userdel[16517]: delete user 'builder' <86>Nov 2 08:37:55 userdel[16517]: removed group 'builder' owned by 'builder' <86>Nov 2 08:37:55 userdel[16517]: removed shadow group 'builder' owned by 'builder' <86>Nov 2 08:37:55 groupadd[16523]: group added to /etc/group: name=builder, GID=604 <86>Nov 2 08:37:55 groupadd[16523]: group added to /etc/gshadow: name=builder <86>Nov 2 08:37:55 groupadd[16523]: new group: name=builder, GID=604 <86>Nov 2 08:37:55 useradd[16528]: new user: name=builder, UID=604, GID=604, home=/usr/src, shell=/bin/bash warning: user hacker does not exist - using root warning: group hacker does not exist - using root warning: user hacker does not exist - using root warning: group hacker does not exist - using root warning: user hacker does not exist - using root warning: group hacker does not exist - using root warning: user hacker does not exist - using root warning: group hacker does not exist - using root <13>Nov 2 08:37:58 rpmi: liblz4-1:1.9.2-alt1 sisyphus+238585.100.2.2 1570066927 installed <13>Nov 2 08:37:58 rpmi: libgpg-error-1.36-alt1 sisyphus+225621.300.1.1 1553521082 installed <13>Nov 2 08:37:58 rpmi: libgcrypt20-1.8.5-alt3 sisyphus+239622.100.1.1 1571746654 installed <13>Nov 2 08:37:58 rpmi: libsystemd-1:243-alt3 sisyphus+239239.100.1.1 1571079040 installed <13>Nov 2 08:37:58 rpmi: libdbus-1.12.12-alt2 sisyphus+221234.100.1.2 1549918047 installed <13>Nov 2 08:37:58 rpmi: libpcap0.8-2:1.9.0-alt2 sisyphus+225217.100.2.1 1552930671 installed <13>Nov 2 08:37:58 rpmi: libpcap-devel-2:1.9.0-alt2 sisyphus+225217.100.2.1 1552930671 installed Building target platforms: i586 Building for target i586 Wrote: /usr/src/in/nosrpm/ipband-0.8.1-alt1.nosrc.rpm Installing ipband-0.8.1-alt1.src.rpm Building target platforms: i586 Building for target i586 Executing(%prep): /bin/sh -e /usr/src/tmp/rpm-tmp.32523 + umask 022 + /bin/mkdir -p /usr/src/RPM/BUILD + cd /usr/src/RPM/BUILD + cd /usr/src/RPM/BUILD + rm -rf ipband-0.8.1 + echo 'Source #0 (ipband-0.8.1.tgz):' Source #0 (ipband-0.8.1.tgz): + /bin/gzip -dc /usr/src/RPM/SOURCES/ipband-0.8.1.tgz + /bin/tar -xf - + cd ipband-0.8.1 + /bin/chmod -c -Rf u+rwX,go-w . + exit 0 Executing(%build): /bin/sh -e /usr/src/tmp/rpm-tmp.45619 + umask 022 + /bin/mkdir -p /usr/src/RPM/BUILD + cd /usr/src/RPM/BUILD + cd ipband-0.8.1 + make -j8 make: Entering directory '/usr/src/RPM/BUILD/ipband-0.8.1' gcc -Wall -I/usr/include/pcap -c -o main.o main.c main.c: In function 'main': main.c:40:10: warning: variable 'raw_pkt_save' set but not used [-Wunused-but-set-variable] 40 | U_CHAR *raw_pkt_save = NULL; | ^~~~~~~~~~~~ make: Leaving directory '/usr/src/RPM/BUILD/ipband-0.8.1' make: Entering directory '/usr/src/RPM/BUILD/ipband-0.8.1' gcc -Wall -I/usr/include/pcap -c -o utils.o utils.c make: Leaving directory '/usr/src/RPM/BUILD/ipband-0.8.1' make: Entering directory '/usr/src/RPM/BUILD/ipband-0.8.1' gcc -Wall -I/usr/include/pcap -c -o error.o error.c make: Leaving directory '/usr/src/RPM/BUILD/ipband-0.8.1' make: Entering directory '/usr/src/RPM/BUILD/ipband-0.8.1' gcc -Wall -I/usr/include/pcap -c -o packets.o packets.c packets.c: In function 'storepkt': packets.c:61:10: warning: pointer targets in passing argument 1 of 'sprintf' differ in signedness [-Wpointer-sign] 61 | sprintf(key_src,"%08x",ip_src); | ^~~~~~~ | | | unsigned char * In file included from ipband.h:31, from packets.c:22: /usr/include/stdio.h:320:38: note: expected 'char * restrict' but argument is of type 'unsigned char *' 320 | extern int sprintf (char *__restrict __s, | ~~~~~~~~~~~~~~~~~^~~ packets.c:62:10: warning: pointer targets in passing argument 1 of 'sprintf' differ in signedness [-Wpointer-sign] 62 | sprintf(key_dst,"%08x",ip_dst); | ^~~~~~~ | | | unsigned char * In file included from ipband.h:31, from packets.c:22: /usr/include/stdio.h:320:38: note: expected 'char * restrict' but argument is of type 'unsigned char *' 320 | extern int sprintf (char *__restrict __s, | ~~~~~~~~~~~~~~~~~^~~ packets.c: In function 'proc_aggr': packets.c:302:83: warning: pointer targets in passing argument 1 of 'hex2dot' differ in signedness [-Wpointer-sign] 302 | html_report(" %s ", hex2dot(t->key)); | ~^~~~~ | | | u_char * {aka unsigned char *} In file included from packets.c:22: ipband.h:261:7: note: expected 'char *' but argument is of type 'u_char *' {aka 'unsigned char *'} 261 | char *hex2dot (char *); | ^~~~~~~ packets.c:312:41: warning: pointer targets in passing argument 1 of 'hex2dot' differ in signedness [-Wpointer-sign] 312 | fprintf (outfile_m, "%-15s", hex2dot(t->key)); | ~^~~~~ | | | u_char * {aka unsigned char *} In file included from packets.c:22: ipband.h:261:7: note: expected 'char *' but argument is of type 'u_char *' {aka 'unsigned char *'} 261 | char *hex2dot (char *); | ^~~~~~~ packets.c: In function 'detail_cleanup': packets.c:374:9: warning: pointer targets in passing argument 1 of 'sscanf' differ in signedness [-Wpointer-sign] 374 | sscanf(key,"%08x",&ip_key); | ^~~ | | | unsigned char * In file included from ipband.h:31, from packets.c:22: /usr/include/stdio.h:385:43: note: expected 'const char * restrict' but argument is of type 'unsigned char *' 385 | extern int sscanf (const char *__restrict __s, | ~~~~~~~~~~~~~~~~~~~~~~~^~~ make: Leaving directory '/usr/src/RPM/BUILD/ipband-0.8.1' make: Entering directory '/usr/src/RPM/BUILD/ipband-0.8.1' gcc -Wall -I/usr/include/pcap -c -o reports.o reports.c reports.c: In function 'subnet_report': reports.c:55:9: warning: pointer targets in passing argument 1 of 'sscanf' differ in signedness [-Wpointer-sign] 55 | sscanf(key,"%08x",&ikey); | ^~~ | | | unsigned char * In file included from ipband.h:31, from reports.c:19: /usr/include/stdio.h:385:43: note: expected 'const char * restrict' but argument is of type 'unsigned char *' 385 | extern int sscanf (const char *__restrict __s, | ~~~~~~~~~~~~~~~~~~~~~~~^~~ reports.c:59:74: warning: pointer targets in passing argument 1 of 'hex2dot' differ in signedness [-Wpointer-sign] 59 | if(net_s) va_report("Subject: Bandwidth report for %s <%s>\n\n",hex2dot(key),net_s->n_name); | ^~~ | | | unsigned char * In file included from reports.c:19: ipband.h:261:7: note: expected 'char *' but argument is of type 'unsigned char *' 261 | char *hex2dot (char *); | ^~~~~~~ reports.c:60:64: warning: pointer targets in passing argument 1 of 'hex2dot' differ in signedness [-Wpointer-sign] 60 | else va_report("Subject: Bandwidth report for %s\n\n",hex2dot(key)); | ^~~ | | | unsigned char * In file included from reports.c:19: ipband.h:261:7: note: expected 'char *' but argument is of type 'unsigned char *' 261 | char *hex2dot (char *); | ^~~~~~~ reports.c:65:35: warning: pointer targets in passing argument 1 of 'hex2dot' differ in signedness [-Wpointer-sign] 65 | va_report("Network: %s", hex2dot(key)); | ^~~ | | | unsigned char * In file included from reports.c:19: ipband.h:261:7: note: expected 'char *' but argument is of type 'unsigned char *' 261 | char *hex2dot (char *); | ^~~~~~~ reports.c:107:10: warning: pointer targets in passing argument 1 of 'sscanf' differ in signedness [-Wpointer-sign] 107 | sscanf(key,"%08x",&ip_key); | ^~~ | | | unsigned char * In file included from ipband.h:31, from reports.c:19: /usr/include/stdio.h:385:43: note: expected 'const char * restrict' but argument is of type 'unsigned char *' 385 | extern int sscanf (const char *__restrict __s, | ~~~~~~~~~~~~~~~~~~~~~~~^~~ make: Leaving directory '/usr/src/RPM/BUILD/ipband-0.8.1' make: Entering directory '/usr/src/RPM/BUILD/ipband-0.8.1' gcc -Wall -I/usr/include/pcap -c -o popen.o popen.c popen.c: In function 'sec_popen': popen.c:38:26: warning: comparison with string literal results in unspecified behavior [-Waddress] 38 | if(cmd == NULL || cmd == "") | ^~ popen.c:127:2: warning: this 'else' clause does not guard... [-Wmisleading-indentation] 127 | else | ^~~~ popen.c:130:3: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'else' 130 | _exit(127); | ^~~~~ make: Leaving directory '/usr/src/RPM/BUILD/ipband-0.8.1' make: Entering directory '/usr/src/RPM/BUILD/ipband-0.8.1' gcc -Wall -I/usr/include/pcap -c -o pcapfunc.o pcapfunc.c make: Leaving directory '/usr/src/RPM/BUILD/ipband-0.8.1' make: Entering directory '/usr/src/RPM/BUILD/ipband-0.8.1' gcc -Wall -I/usr/include/pcap -c -o hash.o hash.c make: Leaving directory '/usr/src/RPM/BUILD/ipband-0.8.1' make: Entering directory '/usr/src/RPM/BUILD/ipband-0.8.1' gcc -Wall -I/usr/include/pcap -c -o init.o init.c init.c: In function 'preload_subnets': init.c:405:10: warning: pointer targets in passing argument 1 of 'sprintf' differ in signedness [-Wpointer-sign] 405 | sprintf(key,"%08x",netip); | ^~~ | | | unsigned char * In file included from ipband.h:31, from init.c:22: /usr/include/stdio.h:320:38: note: expected 'char * restrict' but argument is of type 'unsigned char *' 320 | extern int sprintf (char *__restrict __s, | ~~~~~~~~~~~~~~~~~^~~ make: Leaving directory '/usr/src/RPM/BUILD/ipband-0.8.1' make: Entering directory '/usr/src/RPM/BUILD/ipband-0.8.1' gcc -o ipband main.o error.o init.o packets.o pcapfunc.o popen.o reports.o utils.o hash.o -lpcap -Wall strip ipband make: Leaving directory '/usr/src/RPM/BUILD/ipband-0.8.1' + exit 0 Executing(%install): /bin/sh -e /usr/src/tmp/rpm-tmp.45619 + umask 022 + /bin/mkdir -p /usr/src/RPM/BUILD + cd /usr/src/RPM/BUILD + /bin/chmod -Rf u+rwX -- /usr/src/tmp/ipband-buildroot + : + /bin/rm -rf -- /usr/src/tmp/ipband-buildroot + cd ipband-0.8.1 + /bin/install -pD -m700 ipband /usr/src/tmp/ipband-buildroot/usr/sbin/ipband + /bin/install -pD -m444 ipband.8 /usr/src/tmp/ipband-buildroot/usr/share/man/man8/ipband.8 + /bin/install -pD -m644 ipband.sample.conf /usr/src/tmp/ipband-buildroot/etc/ipband.sample.conf + /bin/install -pD -m700 /usr/src/RPM/SOURCES/ipband.service /usr/src/tmp/ipband-buildroot/etc/rc.d/init.d/ipband + /bin/install -pD -m600 /usr/src/RPM/SOURCES/ipband.conf /usr/src/tmp/ipband-buildroot/etc/ipband.conf + /bin/install -pD -m644 /dev/null /usr/src/tmp/ipband-buildroot/var/log/ipband.log + /usr/lib/rpm/brp-alt Cleaning files in /usr/src/tmp/ipband-buildroot (auto) mode of 'usr/share/man/man8/ipband.8' changed from 0444 (r--r--r--) to 0644 (rw-r--r--) Verifying and fixing files in /usr/src/tmp/ipband-buildroot (binconfig,pkgconfig,libtool,desktop) Checking contents of files in /usr/src/tmp/ipband-buildroot/ (default) Compressing files in /usr/src/tmp/ipband-buildroot (auto) Verifying ELF objects in /usr/src/tmp/ipband-buildroot (arch=normal,fhs=normal,lfs=relaxed,lint=relaxed,rpath=normal,stack=normal,textrel=normal,unresolved=normal) verify-elf: WARNING: ./usr/sbin/ipband: uses non-LFS functions: fopen open Hardlinking identical .pyc and .pyo files Processing files: ipband-0.8.1-alt1 Finding Provides (using /usr/lib/rpm/find-provides) Executing: /bin/sh -e /usr/src/tmp/rpm-tmp.sJuQsV find-provides: running scripts (debuginfo,lib,pam,perl,pkgconfig,python,shell) Finding Requires (using /usr/lib/rpm/find-requires) Executing: /bin/sh -e /usr/src/tmp/rpm-tmp.mRIneY find-requires: running scripts (cpp,debuginfo,files,lib,pam,perl,pkgconfig,pkgconfiglib,python,rpmlib,shebang,shell,static,symlinks) Finding Requires(post) (using /usr/lib/rpm/find-scriptlet-requires) Executing: /bin/sh -e /usr/src/tmp/rpm-tmp.tXg71t Finding Requires(preun) (using /usr/lib/rpm/find-scriptlet-requires) Executing: /bin/sh -e /usr/src/tmp/rpm-tmp.hN2Fdp Requires: /bin/sh, /etc/rc.d/init.d, /etc/rc.d/init.d(msg_usage), /etc/rc.d/init.d(start_daemon), /etc/rc.d/init.d(status), /etc/rc.d/init.d(stop_daemon), /etc/rc.d/init.d/functions, /lib/ld-linux.so.2, libc.so.6(GLIBC_2.0), libc.so.6(GLIBC_2.1), libc.so.6(GLIBC_2.4), libc.so.6(GLIBC_2.7), libpcap.so.0.8 >= set:kgzkeZ5Zmz320FaSbzojMKgsX8, rtld(GNU_HASH) Requires(interp): /bin/sh Requires(rpmlib): rpmlib(SetVersions) Requires(post): /bin/sh, /usr/sbin/post_service Requires(preun): /bin/sh, /usr/sbin/preun_service Finding debuginfo files (using /usr/lib/rpm/find-debuginfo-files) Executing: /bin/sh -e /usr/src/tmp/rpm-tmp.VaumSB Wrote: /usr/src/RPM/RPMS/i586/ipband-0.8.1-alt1.i586.rpm 4.34user 1.33system 0:08.61elapsed 65%CPU (0avgtext+0avgdata 21700maxresident)k 0inputs+0outputs (0major+218795minor)pagefaults 0swaps 10.03user 5.71system 0:18.29elapsed 86%CPU (0avgtext+0avgdata 112420maxresident)k 504inputs+0outputs (0major+477678minor)pagefaults 0swaps --- ipband-0.8.1-alt1.i586.rpm.repo 2010-09-29 22:32:26.000000000 +0000 +++ ipband-0.8.1-alt1.i586.rpm.hasher 2019-11-02 08:38:10.598444308 +0000 @@ -4,3 +4,3 @@ /usr/sbin/ipband 100700 -/usr/share/man/man8/ipband.8.gz 100644 +/usr/share/man/man8/ipband.8.xz 100644 /var/log/ipband.log 100644 @@ -8,3 +8,2 @@ Requires: /bin/sh -Requires: /bin/sh Requires: /etc/rc.d/init.d @@ -20,3 +19,4 @@ Requires: libc.so.6(GLIBC_2.7) -Requires: libpcap.so.0.8 +Requires: libpcap.so.0.8 >= set:kgzkeZ5Zmz320FaSbzojMKgsX8 +Requires: rpmlib(SetVersions) Requires: rtld(GNU_HASH)