summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* - store patch in decompressed fileHEADmasterKacper Kornet2012-06-242-1/+482
| | | | | Changed files: cfingerd-1.4.3-ipv6-12121999.patch -> 1.1 cfingerd.spec -> 1.46
* - tabs in preambleElan Ruusamäe2012-06-241-1/+1
| | | | Changed files: cfingerd.spec -> 1.45
* - converted to UTF-8Jan Rękorajski2012-06-241-4/+4
| | | | Changed files: cfingerd.spec -> 1.44
* - unified rc-inetd usage (via %service), adapterizedElan Ruusamäe2012-06-241-10/+6
| | | | Changed files: cfingerd.spec -> 1.43
* - adapterized (sorted %verify flags)Elan Ruusamäe2012-06-241-6/+6
| | | | Changed files: cfingerd.spec -> 1.42
* - BR: perl-basezbyniu2012-06-241-0/+1
| | | | Changed files: cfingerd.spec -> 1.41
* - added macros in /etc/logrotate.dkolodko2012-06-241-1/+1
| | | | Changed files: cfingerd.spec -> 1.40
* - rel 13auto/ac/cfingerd-1_4_3-13AC-STABLEAC-branchaverne2012-06-241-1/+1
| | | | Changed files: cfingerd.spec -> 1.39
* - release 12 to rebuild with acauto/ac/cfingerd-1_4_3-12undefine2012-06-241-1/+1
| | | | Changed files: cfingerd.spec -> 1.38
* - może wrescie ktoś wykasuje to konto ?kloczek2012-06-240-0/+0
| | | | Changed files: cfingerd.spec -> 1.37
* - massive attack: adding Source-md5Michal Moskal2012-06-241-0/+1
| | | | Changed files: cfingerd.spec -> 1.36
* - massive attack s/pld.org.pl/pld-linux.org/misi3k2012-06-240-0/+0
| | | | Changed files: cfingerd.spec -> 1.35
* - spelling fixes by Tomasz "Witek" Wittner <wittt_@poczta.onet.pl>Paweł Gołaszewski2012-06-241-1/+1
| | | | Changed files: cfingerd.spec -> 1.34
* - release 11,cfingerd-1_4_3-11STABLERA-1_0kloczek2012-06-241-3/+2
| | | | | | | - fix in config patch (s/Polish Linux Distribution/PLD Linux Distribution/) - use new %doc. Changed files: cfingerd.spec -> 1.33
* - s/Polish Linux Distribution/PLD Linux Distribution/kloczek2012-06-241-1/+1
| | | | Changed files: cfingerd-config.patch -> 1.4
* - changing source url to working oneundefine2012-06-241-1/+1
| | | | Changed files: cfingerd.spec -> 1.32
* - enable ipv6Arkadiusz Miśkiewicz2012-06-241-2/+2
| | | | Changed files: cfingerd.spec -> 1.31
* - IT IS ipv6 readyArkadiusz Miśkiewicz2012-06-241-1/+0
| | | | Changed files: cfingerd.inetd -> 1.4
* - release 9 to rebuild with fixed cfingerd.inetd (only ipv4 support)cfingerd-1_4_3-9undefine2012-06-241-1/+1
| | | | Changed files: cfingerd.spec -> 1.30
* - work only on ipv4undefine2012-06-241-0/+1
| | | | Changed files: cfingerd.inetd -> 1.3
* fixed a small typoarturs2012-06-240-0/+0
| | | | Changed files: cfingerd.spec -> 1.29
* - removed all Group fields translations (oure rpm now can handle translatingkloczek2012-06-241-2/+0
| | | | | | | | | | Group field using gettext). Changed files: cfingerd.spec -> 1.28 Notes: - removed all Group fields translations (our rpm now can handle translating Group field using gettext).
* perl -pi -e "s/pld-list\@pld.org.pl/feedback\@pld.org.pl/"kloczek2012-06-240-0/+0
| | | | Changed files: cfingerd.spec -> 1.27
* - typo: %s/sever"/server"/Paweł Gołaszewski2012-06-241-1/+1
| | | | Changed files: cfingerd.spec -> 1.26
* - reverting last change: removing new macros from %p{re,ost}{,un}saq2012-06-241-2/+8
| | | | Changed files: cfingerd.spec -> 1.25
* - use macros in %{pre,post}{,un}saq2012-06-241-8/+2
| | | | | | - need rebuilt rpm (with new macros.pld) to build these Changed files: cfingerd.spec -> 1.24
* - release 8,cfingerd-1_4_3-8kloczek2012-06-241-1/+3
| | | | | | - added patch for display GPG Public Keys (by Piotr Majka <charvel@linux.pl>). Changed files: cfingerd.spec -> 1.23
* patch for display GPG Public Keys (by Piotr Majka <charvel@linux.pl>).kloczek2012-06-241-0/+185
| | | | Changed files: cfingerd-gpg.patch -> 1.1
* - release 7 (security fix),cfingerd-1_4_3-7kloczek2012-06-241-8/+7
| | | | | | | | - added security_format_bug by Megyer Laszlo <abulla@FREEMAIL.HU> (patch was posted on BUGTRAQ, - added using %%{rpmcflags}, %%{rpmldflags} macros. Changed files: cfingerd.spec -> 1.22
* From BUGTRAQ announce (by Megyer Laszlo <abulla@FREEMAIL.HU>):kloczek2012-06-241-0/+40
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Following the recent habits, I break the advisory into 4 parts: OVERVIEW: --------- There is a critical bug in cfingerd daemon <= 1.4.3, (a classic format bug) that makes possible to acquire full control over the remote machine if it runs the cfingerd program, the configurable and secure finger daemon. In 3 words: REMOTE ROOT VULNERABILITY DESCRIPTION: ------------ The bug occurs in main.c, line 245, 258 and 268: <------ syslog(LOG_NOTICE, (char *) syslog_str); We can control the syslog_str with our ident user, that goes directly to the secont parameter of syslog(). Using %n and some tricks, we can overwrite anything in the daemon's memory, including the saved eip register. The more or less proper usage of syslog this time is here: ------> syslog(LOG_NOTICE, "%s", (char *) syslog_str); There are many papers about format bugs, so I don't write detailed infos about it. Changed files: cfingerd-security_format_bug.patch -> 1.1
* Massive attack. We use -O0 instead -O flags while debug enabled.Arkadiusz Miśkiewicz2012-06-241-1/+1
| | | | Changed files: cfingerd.spec -> 1.21
* - release 6: added efingerd to Obsoletes list.cfingerd-1_4_3-6kloczek2012-06-241-2/+3
| | | | Changed files: cfingerd.spec -> 1.20
* - changed %%{!?debug:...}%%{?debug...} to %%{?debug:...}%%{!?debug...}michuz2012-06-241-1/+1
| | | | | | (now it's more C like) Changed files: cfingerd.spec -> 1.19
* - typo.kloczek2012-06-241-1/+1
| | | | Changed files: cfingerd.spec -> 1.18
* - release 5,cfingerd-1_4_3-5kloczek2012-06-241-6/+8
| | | | | | | - use rpm new automation suit, - adapterized and make %%{debug} ready. Changed files: cfingerd.spec -> 1.17
* - added using %%{__make} macro.kloczek2012-06-241-1/+1
| | | | Changed files: cfingerd.spec -> 1.16
* - spec adapterized.kloczek2012-06-241-15/+15
| | | | Changed files: cfingerd.spec -> 1.15
* - changed all BuildRoot definitonsSebastian Zagrodzki2012-06-241-1/+1
| | | | | | | | - removed all applnkdir defs - changed some prereqs/requires - removed duplicate empty lines Changed files: cfingerd.spec -> 1.14
* - translated kloczkish into englishJan Rękorajski2012-06-240-0/+0
| | | | Changed files: cfingerd.spec -> 1.13
* - release 4,cfingerd-1_4_3-4kloczek2012-06-241-4/+4
| | | | | | | | | | | | | | - install inet service description file as fingerd (this allow generate conflict if anyone can install cfingerd simultanously with other finger daemon). Changed files: cfingerd.spec -> 1.12 Notes: - release 4, - install inet service description file as fingerd (this allow generate conflict if anyone can install cfingerd simultanously fith other finger daemon).
* - release 3.cfingerd-1_4_3-3kloczek2012-06-241-1/+1
| | | | Changed files: cfingerd.spec -> 1.11
* - moved /etc/cfingerd.conf to /etc/cfingerd/cfingerd.confwaszi2012-06-241-0/+12
| | | | Changed files: cfingerd-config.patch -> 1.3
* - small fixeswaszi2012-06-241-1/+1
| | | | Changed files: cfingerd.spec -> 1.10
* - typo in Obsoletes (s/ffingetd/ffingerd/)cfingerd-1_4_3-2kloczek2012-06-241-1/+1
| | | | Changed files: cfingerd.spec -> 1.9
* - ups .. install also texts/*.txt.kloczek2012-06-241-1/+2
| | | | Changed files: cfingerd.spec -> 1.8
* - added missing "PORT=79".kloczek2012-06-241-0/+1
| | | | Changed files: cfingerd.inetd -> 1.2
* - "Prereq: rc-inetd >= 0.8.1" instead "Requires: rc-inetd",kloczek2012-06-241-1/+13
| | | | | | | - added %post, %postun scripts with reloading on upgrade and stopping on removing service. Changed files: cfingerd.spec -> 1.7
* - release 2,kloczek2012-06-241-21/+24
| | | | | | - added ffingetd, finger-server, bsd-fingerd to Obsoletes. Changed files: cfingerd.spec -> 1.6
* - updated to 1.4.3cfingerd-1_4_3-1Artur Frysiak2012-06-241-54/+15
| | | | Changed files: cfingerd-config.patch -> 1.2
* - 1.4.3Artur Frysiak2012-06-241-6/+6
| | | | | | - updated IPv6 patch (by misiek) Changed files: cfingerd.spec -> 1.5