About HyperNews
This forum is for all aspects of HyperNews security including
installation, authentication, access control, security holes, and email
attacks.
Installation
There are several aspects of security to be concerned with when
installing HyperNews. The installation
instructions give the details that are important there, but here we
give some more background.
There are two levels of permissions to be concerned with: Unix filesystem
permissions and web server permissions. In the filesystem, you only
need to be concerned with use of chmod (and maybe chown and chgrp).
Authentication
First we consider authentication, which is ensuring that the user
is someone that HyperNews knows about. HyperNews only knows about
members who have previously joined the site.
There are several ways that
authentication might be done, several of which are supported in
HyperNews. In the current state of the web, generally we must check
that a password supplied by the user each time matches one that the
server associates with the user. Notice that it is not sufficient to
trust that the user is authenticated just because they have been
authenticated previously in some sequence of URLs. Since each URL
request is independent from the others (there are no HTTP "sessions"
yet) each script must reauthenticate.
By the way, HyperNews does not store passwords of users in unencrypted
form, to reduce risk of exposure. Instead, it only stores the encrypted
form, and it checks a supplied password by encrypting it the same way
and comparing to the stored encrypted password.
The need for public/private keys
HyperNews, along with several other WWW servers, allows users to
authenticate themselves by providing a password. But the major flaw
with these systems is that they store a separate password at each site,
or worse, for each realm at the site. Even if I always use the same
password everywhere so I can remember it (which is unsafe because if it
is discovered anywhere, it is known everywhere), if I want to change the
password, I have to change it everywhere or risk forgetting which old
password applies where.
But there are ways to authenticate users while not requiring them to
send any private information out to servers, such as a public/private
key mechanism. We can't use such mechanisms yet because software is not
widely available to users; the web is still growing support for doing
security in these more reasonable ways.
Instead, we have four principal ways to authenticate in HyperNews:
form-based, server-based, cookie-based, and external.
Form-based, "manual security"
The user enters a userid and password in a form that is submitted. The
userid and password might be hidden in a form generated after a previous
authentication (to avoid reauthenticating on every request), so this is
not particularly secure since the document might be cached somewhere and
snooped or reused (intentionally or unintentionally).
If you want to change the configuration of HyperNews from internal security to
manual security, you need to run setup.pl from the command line at least
once. The reason is that the .htaccess file is still present.
Server-based, "internal security"
The server must be configured to know about the authentication
requirement. This means HyperNews must set up an ".htaccess" file, or
equivalent. When a user makes a URL request to a restricted area, the
server responds with a code that means the browser must supply a userid
and password. If it doesn't know the userid and password associated
with this area (or "realm") the browser will typically pop up a dialog
box to ask the user. Thereafter, until the user quits the browser, the
browser will send the same userid and password for requests to the same
realm.
On the server, directories are typically restricted with a ".htaccess"
file. HyperNews creates a single .htaccess file stored in the hnpeople
directory, called .htgroupaccess. A symbolic link is made to this file
from the SECURED, Admin, and .scripts directories, and from the
HyperNews directory if all reading is restricted. For external security
or manual security, the links to the .htaccess file are removed.
The .htaccess file references a password file, called .htpasswd, stored
in the hnpeople directory, containing a list of userids paired with
encrypted passwords. Other .htaccess files may reference the same
.htpasswd file, but HyperNews wants to manage the contents of this file.
The .htaccess file may also be used to perform access control, by
referencing a file that associates group names with group members, but
HyperNews no longer uses that mechanism (because servers tend to have
bugs and large variance in this feature),
and we were only checking membership in the group of all members or
all administrators).
Notice that server-based authentication overrides form-based and
cookie-based authentication in the sense that the server will request a
userid and password from the browser regardless of their presense in
forms or cookies. But once the server gets what it wants, HyperNews allows
a separate userid and password to be provided in a form.
Cookie-based, optional authentication
Once a user has authenticated by some other
mechanism, the server can send a cookie back to the browser (using a
Set-Cookie header) which the browser will send back to the server (using
a Cookie header) each time it makes a request in the same area.
HyperNews uses cookies, if configured to allow it, and if the user
requests it, to hold an encrypted form of the password. These cookies
are made to expire at the end of the browser session.
Cookies provide optional authentication because if they are
sent by the browser, they can be used, but if not sent, form-based
authentication can still be used if necessary.
The userid and password provided by a Cookie is used with the lowest
priority, since a browser will keep sending cookies even if a different user
is using the browser.
External Security
For some installations of HyperNews, it is appropriate to use a security
mechanism established outside of HyperNews. There are two ways this can
be done, one using server-based security and the other using cookies.
In both cases, HyperNews won't know any more about the user than the
userid given to it, unless there is some other mechanism added to
HyperNews to look up such information.
Notice that external security is not the same as "internal" server-based
authentication. If you want to make use of the server-based
authentication mechanism that HyperNews sets up and manages, then don't
use "external" security.
Access Control
Access control is distinguished from authentication, which merely checks
that the user is someone we know. After we know who the user
is, we can impose access control which restricts who can
do what actions. Some actions may be permitted by anyone, others only
by administrators.
The .htaccess file, supported by several servers, can reference a
list of groups of users who have access to particular operations, but
this list of groups or the list of members in the group files might be
long enough to overflow buffers in some servers. Furthermore, we only
distinguish three kinds of users, non-members, members, and members who
are also administrators. It is easy enough to have HyperNews
check which kind of user we have, so that is what we do now. But when
we support more groups of users, such as editors or moderators of
particular forums, we will still probably do our own access control
rather than relying on server mechanisms.
HyperNews identifies several kinds of actions and for each action,
a different level of access control may be applied. These actions
are things like Reading forums and messages, Writing messages,
Creating or Editing forums.
For each action, the HyperNews
configuration specifies whether it may be performed by no one, anyone,
members-only, or administrators-only. Administrators can generally
do anything, even actions permitted by "no one", but the difference
is whether there is any visible interface to access these actions.
Regardless of the configuration, HyperNews performs another
kind of access control based on the URL used to access a script.
If the URL contains '/SECURED/', then the user must be a member,
and if it contains '/Admin/' or /.scripts/, the user must be an
administrator. With that restriction, HyperNews sometimes changes
the interface displyed to the user to enable some addition actions
or display more information.
Some actions have data that will be affected and an owner of that data.
For example, if the action is "delete a message", the author of a
message is the owner, or the user who will be affected by the action.
For each action, there is a hard-coded parameter used to specify what
kind of user can be affected. For the example of deleting a message,
the member doing the deletion must be the same member who owns the
message. See access1 in member-lib.pl for the details.
Unix Filesystem Security
HyperNews uses the Unix filesystem to store its forums, messages,
and member information. See more about this in the
installation instructions.
Daniel LaLiberte
(liberte@hypernews.org)
Last modified: Thu Feb 25 23:30:45 EST 1999
- 1
HyperNews fails with server authentication enabled
by Chris Nims, 1995, Jun 27
-
- 1
Browser Question?
by @void.ncsa.uiuc.edu, 1995, Jun 28
-
- 1
Server Authentication Different?
by liberte@hypernews.org, 1995, Jun 29
- ...
- 2
Definitely not browser
by nims@cstar.ac.com, 1995, Jun 29
- ...
- 2
simmilar problem using apache
by dfi@software-ag.de, 1995, Oct 10
-
- 1
Apache access authorization
by eric@aloha.net, 1995, Oct 12
- ...
- 3
Authentication Fails here, too.
by kevin_austin@merck.com, 1995, Dec 18
-
- 1
Docs referenced by HyperNews must be accessible
by liberte@hypernews.org, 1995, Dec 19
- ...
- 4
MEMBERSHIP DELITED
by RENO.F@USA.NET, 1997, Oct 09
- 5
Netscape Enterprise 3.0
, 1998, Jun 22
- 2
Problem with Authentication on Netcsape Communications server
by John Graham, 1995, Jun 30
-
- 1
Problems with Authentication on Netscape Communications server
by melo@ncsa.uiuc.edu, 1995, Jun 30
-
- 2
if you cannot see security forum try this ....
, 1999, Mar 01
- 3
Not so sure...
by Matt Westby, 1995, Jul 14
-
- 1
Untrusted users are untrusted
by liberte@hypernews.org, 1995, Jul 14
-
Setting the uid for CGI-scripts
by matthew.westby@wadham.ox.ac.uk, 1995, Jul 15
-
- 4
Email security hole?
by Robin Burke, 1995, Jul 25
-
- 1
Email is a security hole by itself
by liberte@hypernews.org, 1995, Jul 25
-
- 1
email & security
by burke@cs.uchicago.edu, 1995, Jul 25
- ...
- 2
hoax email
by @lcz050.ust.hk, 1995, Aug 22
- ...
- 3
Give more information in email body, and no fake From-line
by boldt@emile.math.ucsb.edu, 1995, Sep 12
- ...
- 5
Differential security provisions
by Robin Burke, 1995, Jul 25
-
- 1
On its way
by liberte@hypernews.org, 1995, Jul 25
-
- 1
Great. Security is needed everywhere
by mnguyen@pcug.org.au, 1995, Aug 13
- ...
- 2
Setup security so that one group can not read other group news
by mnguyen@pcug.org.au, 1995, Aug 30
-
- 1
Giving user specific rights?
by jonathan@asterix.environ.se, 1996, Nov 29
- ...
- 6
Client permissions
by Chris Osborn, 1995, Jul 31
-
- 1
Problem Solved
by liberte@hypernews.org, 1995, Aug 01
-
- 7
setuid bit and HyperNews
by Graham Bignell, 1995, Aug 12
-
- 1
Still Looking
by bignell@io.org, 1995, Aug 28
-
- 2
It's not so simple; cf perlsec
by vladimir@cs.ualberta.ca, 1997, Sep 05
- 8
Authenticating Users (including code)
by Elliotte Rusty Harold, 1995, May 08
-
- 1
Thanks - security plans in the works
by liberte@hypernews.org, 1995, May 23
-
- 1
Security options in current version
by athey@key.ctron.com, 1995, Jun 09
- ...
- 2
Cookie-based authentication?
by caffeine@toodarkpark.org, 1997, Jan 29
- ...
- 9
User Authentication
by Alessio Radaelli, 1995, May 11
-
- 1
Verify email address
by elliotte@blackstar.com, 1995, May 15
-
- 1
Good luck...it won't work
by dittrich@cac.washington.edu, 1995, Aug 31
- ...
4 Message(s)
- 2
Untitled
, 1998, Apr 11
- 10
Who can change passwords and other personal information?
by Paul G. Smith, 1995, Jul 17
-
- 1
Should be fixed in 1.9
by liberte@hypernews.org, 1995, Aug 29
-
Unfortunately, can't get passwords for administrators
by ndavis@intellicorp.com, 1995, Aug 31
-
- 11
Neat, but no security?
by ton, 1995, Feb 25
-
- 3
Security? In a WWW context? surely you jest!
by ab006@cfn.cs.dal.ca, 1995, Mar 13
-
Not getting mail is not a disincentive
by elliotte@blackstar.com, 1995, Apr 17
-
- 12
Method of verifing email accounts names...
by Craig Goranson, 1995, Sep 03
-
- 1
Sounds good
by liberte@hypernews.org, 1995, Sep 03
-
- 13
HyperNews ip Lockouts needed
by Gary Schmidt, 1995, Aug 09
-
- 1
Great Idea!
by mshopper@iag.net, 1995, Sep 02
-
- 1
Password Reset Option
by liberte@hypernews.org, 1995, Sep 02
- ...
- 2
domain checking.....
by marc@interak.com, 1996, Apr 20
-
- 14
Beware of server side includes/ Too much stuff visible
by Axel Boldt, 1995, Sep 12
-
- 1
Potential Dangers are Real
by liberte@hypernews.org, 1995, Sep 15
-
- 2
The Grinch cometh to server-side includes
by dunlop@eol.ists.ca, 1995, Sep 29
-
- 15
Problems with first installation of 1.9B
by De Clarke, 1995, Sep 12
-
- 1
Perhaps these are pre 1.9B3.1 bugs
by liberte@hypernews.org, 1995, Sep 14
-
Found another password bug
by liberte@hypernews.org, 1995, Sep 14
-
- 16
Problem with initial Passwords
by George Gal, 1995, Sep 19
-
- 1
Use the New Password fields for new passwords
by liberte@hypernews.org, 1995, Sep 19
-
- 17
HyperNews as a security hole
by Torre Wenaus, 1995, Oct 06
-
- 1
Holes or shadows
by liberte@hypernews.org, 1995, Oct 07
-
- 18
Level 2 security
by roy@cs.uiuc.edu, 1995, Oct 11
-
- 19
I cannot login in as the Hypernews Admin
by Chris Christian, 1995, Oct 13
-
- 20
How do I use an existing password file for membership?
by Dwayne Jacques Fontenot, 1995, Oct 13
-
- 1
Probably can't
by Daniel LaLiberte, 1995, Oct 13
-
Will it be possible ? Maybe TODO ????
by Marcin.Klimowski@pk.edu.pl, 1996, Sep 05
-
Almost there now
by liberte@hypernews.org, 1996, Sep 05
-
User data management
by liberte@hypernews.org, 1996, Sep 05
-
Has there been any progress in this area?
by xkahn@cybersites.com, 1997, Jun 11
-
Question: Has there been any progress in this area?
by liberte@hypernews.org, 1997, Jun 12
- 21
DUDE COOL
by @lpcdept176.lib.depaul.edu, 1995, Oct 14
-
- 1
Open and Anonymous forums
by Daniel LaLiberte, 1995, Oct 15
-
ImGlobal
by Harry, 2005, Feb 06
- 22
Securing get
by Jon Tara, 1996, Feb 17
-
- 1
get is secured
by liberte@hypernews.org, 1996, Feb 18
-
Here's how to do it for Netscape
by jtara@stockclub.com, 1996, Feb 18
-
- 23
Groups and user permissions
by joe@mit.edu, 1995, Jul 19
-
- 1
Feature Coming very Soon
by melo@cs.uiuc.edu, 1995, Jul 19
-
I am posting a note here to put me on your list--is there a better way?
by john.wells@bea.doc.gov, 1995, Jul 22
-
Already done or in the works
by liberte@hypernews.org, 1995, Jul 22
-
more info needed on this
by @198.76.170.19, 1995, Jul 22
-
- 1
a small question for later--the system does not pick up my email address
by john.wells@bea.doc.gov, 1995, Jul 22
- ...
- 2
Oops, you have to be a member first
by liberte@hypernews.org, 1995, Jul 22
- ...
- 24
Why using .htaccess groups?
by Ben Y. Yoshino, 1996, Jan 23
-
- 1
Planning for the Future
by liberte@hypernews.org, 1996, Jan 24
-
- 25
Support of Protected html files
by Rob Lanzone, 1995, Jan 20
-
- 1
Probably not
by liberte@hypernews.org, 1995, Jan 23
-
- 27
Authentication of body text
by Larry Mills-Gahl, 1995, Oct 28
-
- 28
HTTPD access design problem and possible workarounds
by Ulrich Kroener - EIBA, 1996, Feb 26
-
- 1
Authentication Tricks
by liberte@hypernews.org, 1996, Feb 26
-
Authentication via scripts only (?)
by ulrich@eiba.com, 1996, Feb 27
-
Script Directories to Parallel Document Directories
by liberte@hypernews.org, 1996, Feb 27
-
- 2
Script directory(s) to any document directory
by ulrich@eiba.com, 1996, Feb 28
- ...
- 3
Approaches are not exclusive
by ulrich@eiba.com, 1996, Feb 28
- ...
- 29
How to log in as such & such user ? / interaction with netscape httpd
by Guillaume Mallet, 1996, Feb 27
-
- 1
Rassling with Bugs
by liberte@hypernews.org, 1996, Feb 27
-
Thank you
by guillaum@asap.unimelb.edu.au, 1996, Feb 27
-
- 30
Per-Page Security Idea
by Jeff Heinen, 1996, Mar 18
-
- 1
Good idea
by liberte@hypernews.org, 1996, Mar 19
-
- 31
Is hnrc file visible as a document?
by Daniel LaLiberte, 1996, Mar 21
-
- 32
Current per-page security plan
by Daniel LaLiberte, 1996, Mar 21
-
- 33
ID security?
by Russ Hunt, 1996, Mar 24
-
- 1
ID stays
by liberte@hypernews.org, 1996, Mar 24
-
Stopping the problem early
by allenjk@frontiernet.net, 1996, Apr 15
-
No problem with non-unique userids
by liberte@hypernews.org, 1996, Apr 15
-
userids, mail addresses, and real people
by hunt@StThomasU.ca, 1996, Apr 15
-
- 34
Distributed accounts?
by Jay Allen, 1996, Apr 10
-
- 1
Or account servers?
by liberte@hypernews.org, 1996, Apr 10
-
- 35
Access control on a per-discussion basis?
by penev@panarea.usc.edu, 1995, Aug 23
-
- 1
I would need it too...
by alessio@lysator.liu.se, 1995, Sep 26
-
- 36
base articles with different access rights
by Marc Goossens, 1995, Oct 18
-
- 1
this is in 1.9B4 - I want it too!!
by fontenot@argiope.com, 1995, Oct 18
-
1.9b4 will not include per-article access
by liberte@hypernews.org, 1995, Oct 18
-
- 1
when approximately?
by marc@eiba.com, 1995, Oct 19
- ...
- 3
Closer?
by joe@smartlink.net, 1995, Oct 31
- ...
- 37
How do I configure HN such that I have base articles anyone can access
by ulrich@eiba.com, 1995, Nov 16
-
- 1
Not configurable yet
by liberte@hypernews.org, 1995, Nov 16
-
- 38
HyperNews over SSL Anyone??
by Randy Cosby, 1995, Dec 30
-
- 39
Members Only Page ( and a few other things)
by Jeff Heinen, 1996, Feb 14
-
- 1
Members-only should work now
by liberte@hypernews.org, 1996, Feb 14
-
Let Me Clarify Myself
by jeffh@ee.pdx.edu, 1996, Feb 14
-
- 1
More to chew on
by liberte@hypernews.org, 1996, Feb 15
- ...
- 2
.htgroupmembers bug
by liberte@hypernews.org, 1996, Feb 15
- ...
- 3
It works, but...
by jeffh@ee.pdx.edu, 1996, Feb 15
- ...
- 40
Authentication Question
by tvd@ctron.com, 1996, May 15
-
- 1
Authentic Answer
by liberte@hypernews.org, 1996, May 24
-
- 41
Suggestion: FirsaAccess: and Lastaccess: in hnpeople
by jtara@stockclub.com, 1996, May 13
-
- 1
Possible but expensive
by liberte@hypernews.org, 1996, May 30
-
More on authenticating from hnpeople
by jtara@stockclub.com, 1996, May 31
-
Searching for people
by liberte@hypernews.org, 1996, May 31
-
- 42
The need for simple authentification
by Jean-Claude Wippler, 1996, Jun 23
-
- 1
Is it much simpler?
by liberte@hypernews.org, 1996, Jul 01
-
- 43
How to set up a secure HyperNews site?
by Richard Nagel, 1995, Aug 01
-
- 1
Me too!
by joeespo@ix.netcom.com, 1995, Aug 12
-
- 2
I don't know
, 1996, Jul 02
-
- 44
Hypernews on server already using authentication
by tvd@ctron.com, 1996, May 16
-
- 1
Thats an interesting question..
by jeffh@ee.pdx.edu, 1996, May 20
-
- 45
Testing (carefully) the security :-)
by Ira Abramov, 1996, Aug 10
-
- 1
Per-forum security not available yet
by liberte@hypernews.org, 1996, Aug 20
-
- 46
Using our own user authentication and user IDs with HN
by Eric Holstege, 1996, Aug 12
-
- 1
Use external security
by liberte@hypernews.org, 1996, Aug 20
-
- 47
secure READ messages (how to make?)
by Carlos A. F. Brefe, 1996, Jul 22
-
- 48
HyperNews 1.9.2 and Multiple Installations
by Philipp Bachmann, 1996, Oct 25
-
- 1
Good question
by liberte@hypernews.org, 1996, Oct 25
-
Answer (for administrators of CERN / W3C httpd 3.0)
by bachlipp@ruf.uni-freiburg.de, 1996, Oct 30
-
Idea: Answer (for administrators of CERN / W3C httpd 3.0)
by liberte@hypernews.org, 1996, Oct 30
-
- 49
Apache server with Postgres95 authentication?
by James Hughes, 1996, Nov 21
-
- 1
PostgreSQL authent ... even content
by bgingery@gtcs.com, 1997, Apr 15
-
Where to get it
by Bruce Gingery, 1997, Apr 17
-
pgPerl & friends
by jamesh@interpath.com, 1997, Apr 17
- 50
Limits to posting excessively *large* responses?
by Leo Ramos, 1996, Dec 04
-
- 51
Adding authname config option
by Martin Huntley, 1996, Dec 27
-
- 1
Good idea
by liberte@hypernews.org, 1996, Dec 31
-
Re: Question: Good idea
by mhuntley@bbn.com, 1997, Jan 02
-
- 52
Members can't post messages
by Jay Littman, 1997, Jan 17
- 53
Duplicate authentication
by Daniel LaLiberte , 1997, Feb 03
-
- 54
Authorisation problems when using MS Internet Explorer 3.01
by Marcel Verrijdt, 1997, Feb 12
-
- 55
"Only members may read" in HyperNews 1.92 does not work
by Daniel LaLiberte , 1997, Feb 14
-
- 56
Subject: Sad: Problems with add message & Security Password
by JOEYJOHNSTON@worldnet.att.net, 1997, May 03
- 57
Two times of Authentification Required ?
by Jo, 1997, May 21
-
- 1
Similiar Problem.
by widjaja@hso.astra.co.id, 1997, Oct 21
- 58
Source Code/Pics
by Trey, 1997, Oct 17
- 59
Problem authenticating on admin functions
by Rob Reuss, 1997, Nov 07
-
- 1
I have a similar problem but it occurs with Password Reset
by hjessup@iname.com, 1998, Jun 22
- 60
Limiting access to a directory?
by Morten J., 1998, Jan 13
-
- 1
RE: limiting access to a dir
by taugi1@aol.com, 1998, Jul 16
- 61
Using the UIUC CCSO NameServer with HyperNews
by Jim Smith, 1998, Mar 17
- 62
Easy way to prevent "open membership" ?
by ITS Systems Group, 1998, Apr 13
-
- 1
External Security and turning off Members button
by liberte@emancholl.pair.com, 1998, Apr 13
- 63
setup security group
by pele@cereq.fr, 1998, Apr 29
- 64
Problems with $0 when setuid bit is set
by Ryan Rempel, 1998, Jun 07
-
- 1
SCRIPT_FILENAME saves the day
by liberte@emancholl.pair.com, 1998, Jun 07
- 65
SSL and HyperNews
by Raymond Beaupre, 1998, Jun 11
-
- 1
SSL should be transparent
by liberte@emancholl.pair.com, 1998, Jun 11
- 2
Hmm...no but it can easily transformed to run in SSL mode
, 1998, Jun 26
-
- 1
Use of "https" should be transparent too
by liberte@hypernews.org, 1998, Jun 26
- 66
HyperNews Files
by Raymond Beaupre, 1998, Jun 24
-
- 1
html-auth.cgi won't help with HyperNews
by liberte@hypernews.org, 1998, Jun 24
- 67
lock problems
by jstudy@purdue.edu, 1998, Jul 30
-
- 1
workaround
by jstudy@purdue.edu, 1998, Jul 30
- 68
setuid, Solaris, cgiwrap
by Daniel LaLiberte, 1998, Jul 30
-
- 1
Another solution
by rgrempel@magi.com, 1998, Sep 06
- 69
Excluding an Email address from Membership
by Don, 1998, Aug 15
- 70
Creating groups and users
by Ersin Basaran, 1998, Sep 23
-
- 1
Groups only supported via multiple installations
by liberte@emancholl.pair.com, 1998, Sep 23
- 71
Having problem with membership & groups
by Shash Chatterjee, 1998, Sep 29
-
- 1
Bug in getMember - doesn't get from $hnGroup
by liberte@emancholl.pair.com, 1998, Sep 30
- 72
How do I give access to different memebers to different Forums
by Kalpit Jain, 1998, Oct 06
-
- 1
All forums in one installation/configuration have same access
by liberte@emancholl.pair.com, 1998, Oct 09
- 73
Authorization problems using Internet Explorer
by Monique de Moree, 1998, Nov 13
-
- 1
Authentication problem with redirects maybe?
by liberte@emancholl.pair.com, 1998, Nov 15
- 74
How is the cookie value generated?
by John Paul Lorenti, 1998, Nov 18
-
- 1
Relevant lines of source code
by johnpaul@prometheus.barnard.columbia.edu, 1998, Nov 20
- 75
Manual Security not working right for version 1.9.8.1
by Mark Ohrenschall, 1998, Nov 23
-
- 1
Adding message by non-admin broken
by liberte@emancholl.pair.com, 1998, Nov 23
- 76
Built-in Security Problem with Apache 1.3.1?
by Mark Ohrenschall, 1998, Nov 24
-
- 1
No known problems with Apache 1.3.1
by liberte@emancholl.pair.com, 1998, Nov 24
- 77
Two HyperNews Server authentication
, 1998, Dec 09
-
- 1
No sharing across servers allowed
by liberte@emancholl.pair.com, 1998, Dec 10
-
public and private keys
, 1998, Dec 17
- 78
Why it doesn't generate a password?
by Angie, 1999, Jan 13
- 79
directories, authentication
by D Robinson, 1999, Feb 03
- 80
Anyone may register new members - no they can't!
by Peter Westley, 1999, Mar 03
-
- 1
Problem: current members registering new members
by liberte@hypernews.org, 1999, Mar 04
-
Is there a patch for this?
by peter_westley@hp.com, 1999, Mar 04
-
No patch this time
by liberte@hypernews.org, 1999, Mar 04
- 81
Can't Inquire About Users and Can't Subscribe!
by Mark MacGregor, 1999, Mar 09
-
- 1
Confusing instructions
by liberte@hypernews.org, 1999, Mar 09
-
- 1
How is "Inquire" Useful, Then?
, 1999, Mar 10
- ...
1 Message(s)
- 2
My Head is About to Explode!
, 1999, Mar 10
-
- 1
Software release value needed
by liberte@hypernews.org, 1999, Mar 11
- ...
4 Message(s)
- 83
Only "Memebers may read" Option not Working
by Chris Brougham, 1999, Mar 25
-
- 1
Is your HyperNews configured right?
by liberte@hypernews.org, 1999, Mar 26
- 2
Doesn't work for me either
by acraig@liv.ac.uk, 2000, Aug 18
- 84
Integrating Hypernews in a system with its own security
by Alejandro Escalante Medina, 1999, Apr 08
-
- 1
Some support exists for integration with external security mechanisms
by liberte@hypernews.org, 1999, Apr 08
-
Perhaps using multiple installations...
by adinamo@df1.telmex.net.mx_, 1999, Apr 09
-
Multiple installations + cookie translation
by liberte@hypernews.org, 1999, Apr 11
-
What I think I could do
by adinamo@df1.telmex.net.mx, 1999, Apr 12
-
What does Auth::Cookie provide?
by liberte@hypernews.org, 1999, Apr 12
- 85
I can make ANYTHING!!!!!
by Javier Alexandro Del Pino Coronel, 1999, Apr 10
-
- 1
Figure out who is causing the error and why
by liberte@hypernews.org, 1999, Apr 11
- 86
Access control; HN future, etc.
by Daniel LaLiberte, 1999, Apr 26
- 87
Re: Access control; HN future, etc.
by Daniel LaLiberte, 1999, May 03
-
- 1
Justifications for a wrapper script
by magog@the-wire.com, 1999, May 03
-
A wrapper sounds good
by liberte@hypernews.org, 1999, May 04
- 88
Hypernews Installation - Password is blank for HNMail
by Steve Goldsby, 1999, May 07
-
- 1
HNMail mixed up with your admin userid?
by liberte@hypernews.org, 1999, May 07
- 89
Why when I run setup-form.pl, the result of password is blank
by juniar, 1999, Jun 04
- 90
.htaccess and .htpasswd
by JavierAlexandro Del Pino Coronel, 1999, Jun 07
- 92
Two tier security
by Jon, 1999, Jun 11
-
- 1
How about 1.5 tiers?
by liberte@hypernews.org, 1999, Jun 11
- 93
SECURED....
by Javier Alexandro Del Pino Coronel, 1999, Jul 01
-
- 1
Permission denied?
by liberte@hypernews.org, 1999, Jul 01
- 94
external auth. failure running edit-article,pl
by Greg Kresko, 1999, Sep 08
-
- 1
external security needs default case
by liberte@hypernews.org, 1999, Sep 10
- 95
Problem with Netscape Enterprise Server and HyperNews security
by Rafael Valcarcel, 1999, Sep 17
-
- 1
Netscape Enterprise Server may not be fully supported
by liberte@hypernews.org, 1999, Sep 17
-
Re: Netscape Enterprise Server may not be fully supported
by valcarcel@caracas.geoquest.slb.com, 1999, Sep 20
- 96
Admin edit-member problem in multi-user installation
by Jonathan Hartzog, 1999, Sep 21
-
- 1
oops ... account = group
by jth@csun.edu, 1999, Sep 21
-
Group names live with User IDs
by liberte@hypernews.org, 1999, Sep 21
- 97
Can't add users
by Dan Meigs, 1999, Nov 08
-
- 1
Tried change-member.pl
by dmeigs@tlinenm.com, 1999, Nov 08
-
Avoiding access control with edit-member.pl
by liberte@hypernews.org, 1999, Nov 13
-
Thanks, but...
by dmeigs@tlinenm.com, 1999, Nov 15
- 98
passwords - delete members
by Giulio, 1999, Nov 19
-
- 1
Use the source
by liberte@hypernews.org, 1999, Nov 23
- 99
LDAP authentication and access control
by Thibaut de Chauny, 2000, Jan 06
-
- 1
LDAP member info at least
by liberte@hypernews.org, 2000, Jan 10
-
Thanks, it does help
by mcy@eurocontrol.fr, 2000, Jan 10
- 101
Admin Pages show for members
by John Constant, 2000, Jan 17
-
- 1
Pages are identical for all users, if possible
by liberte@hypernews.org, 2000, Jan 17
-
- 1
access control
by certweb@us.ibm.com, 2000, Jan 19
- 2
more on access control
by certweb@us.ibm.com, 2000, Jan 19
- 102
batch-add-member.pl
by John Constant, 2000, Jan 19
-
- 1
batch-add-member.pl - works so far
by liberte@hypernews.org, 2000, Jan 21
- 2
doesn't work...
by head_shok@yahoo.com, 2000, Feb 07
-
- 1
Same Problem
by John Constant, 2000, Feb 07
- ...
1 Message(s)
- 2
i can't seem to figure out
by adam, 2001, Sep 17
- 103
How to decouple sever/HyperNews security?
by Peter Soderquist, 2000, Feb 03
-
- 1
New option needed to ignore REMOTE_USER
by liberte@hypernews.org, 2000, Feb 04
-
HyperNews now tries to authenticate multiple times
by pgs@segsrv.hlo.dec.com, 2000, Feb 04
-
Sounds like icons are authenticated
by liberte@hypernews.org, 2000, Feb 21
- 104
Malicious scripting and HyperNews
by Daniel LaLiberte, 2000, Feb 08
-
- 1
Some Thoughts on HTML Filtering
by jhartzog@w00f.com, 2000, Feb 21
- 106
Apache user authentication
by iz@earthling.net, 2000, Apr 20
-
- 1
"Logout" with server authentication
by liberte@hypernews.org, 2000, Apr 20
- 107
userid of one character length
by Kees Couprie, 2000, May 16
-
- 1
Only 62 single char IDs allowed
by liberte@hypernews.org, 2000, May 16
-
I meant single digit numbers.
by K.Couprie@GenD.nl, 2000, May 17
- 108
Security - passwords are send back to the user in plaintext
by joe, 2000, Sep 19
-
- 1
plaintext passwords in email - it's a feature
by Daniel LaLiberte, 2000, Sep 20
-
So... now that crypt operation is out ofthe way how do you add base articles?
by E, 2000, Nov 30
- 109
HyperNews Forum Access Control
, 2000, Sep 28
-
- 1
Simple structured dialogs: Q&A
by Daniel LaLiberte, 2000, Sep 28
- 110
password problem
by echarters@primus.ca, 2000, Nov 23
- 111
Apache Problem. But Revelant.
by E. Charters, 2000, Nov 22
-
- 1
Ambiguities in Apache Bug Revisited
by echarters@primus.ca, 2000, Nov 22
- 2
Secretary of the Uninformed
by E., 2000, Nov 26
- 112
forbidded error when making a topic
by earnest, 2001, Nov 28
- 113
Hyper News Security download net HyperNews
by warner, 2003, Sep 04
- 114
Apache-1.3.6 & Apache-1.3.9 with HyperNews-1.10 (HELP WANTED!!! URGENT!!!!!!!!)
by Javier Alexandro Del Pino Coronel, 2000, Feb 29
Installation Topics:
Creating Base Articles, also called Forums.
Security Issues regarding HyperNews
Bidirectional E-mail gateway