It's been such a long time since we had a thread like this on c.l.r.,
but I just can't help myself (since I really do need this if I'm going
to use Ruby, rather than Perl, for a rapidly-approaching topic): has
anyone come across a Ruby extension for Kerberos, similar to the CPAN
module Authen::Krb5 (and especially Authen::Krb5::Admin)?
I've done the usual Google and RAA searches, and not found anything,
but I find it somewhat hard to believe that no one has done any Ruby
projects that dealt with Kerberos authentication. If indeed there isn't
a useful library out there, I may eventually get around to writing one
myself, but I don't think the schedule for this project (needs to be
finished in the next two weeks) will really allow me the luxury right
now.
So, any half-completed or under-documented "pet projects" hiding out
there? I'd be happy to provide test cases and patches, if so.
-Lennon
I've been too lazy to actually make a library, so I just use the pty and
expect modules and call the respective programs that way.
Cheesy, but so far effective.
···
On Wed, 3 Aug 2005 02:46:05 +0900 "rcoder" <rcoder@gmail.com> wrote:
So, any half-completed or under-documented "pet projects" hiding out
there? I'd be happy to provide test cases and patches, if so.
----------------------------------------------------------------------
Jim Hranicky, Senior SysAdmin UF/CISE Department |
E314D CSE Building Phone (352) 392-1499 |
jfh@cise.ufl.edu http://www.cise.ufl.edu/~jfh |
----------------------------------------------------------------------
Hi,
Sounds a good idea.I mite be interested to write something like this.
Could you just elaborate a bit more on exactly what is needed?
For Kerberos you mean the ticket generations and primary and secondary
key authentication.
Thanks
Dibya
···
On 8/2/05, rcoder <rcoder@gmail.com> wrote:
It's been such a long time since we had a thread like this on c.l.r.,
but I just can't help myself (since I really do need this if I'm going
to use Ruby, rather than Perl, for a rapidly-approaching topic): has
anyone come across a Ruby extension for Kerberos, similar to the CPAN
module Authen::Krb5 (and especially Authen::Krb5::Admin)?
I've done the usual Google and RAA searches, and not found anything,
but I find it somewhat hard to believe that no one has done any Ruby
projects that dealt with Kerberos authentication. If indeed there isn't
a useful library out there, I may eventually get around to writing one
myself, but I don't think the schedule for this project (needs to be
finished in the next two weeks) will really allow me the luxury right
now.
So, any half-completed or under-documented "pet projects" hiding out
there? I'd be happy to provide test cases and patches, if so.
-Lennon
We use Kerberos for authentication to a number of services, (printing,
email, ssh, even webapps via cosign) but for this project, I actually
am more in need of an interface to the Kerberos admin functionality --
specifically, we're trying to automate more of our user account
creation and maintenance, and I personally would like to stop
maintaining all this Perl code.
However, at the moment I'm leaning more towards simply wrapping the
command-line utilities, as I'm not quite ready to dive head-first into
the maze of twisty passages that are the krb5 API.
-Lennon
Hi,
Good idea to start with.I got introduced to Kerberos thru a a mobile
project.....which needed the protocol authentication and then i
implemented it in a couple of other secure channel projects.
Thanks
Dibya
···
On 8/3/05, rcoder <rcoder@gmail.com> wrote:
We use Kerberos for authentication to a number of services, (printing,
email, ssh, even webapps via cosign) but for this project, I actually
am more in need of an interface to the Kerberos admin functionality --
specifically, we're trying to automate more of our user account
creation and maintenance, and I personally would like to stop
maintaining all this Perl code.
However, at the moment I'm leaning more towards simply wrapping the
command-line utilities, as I'm not quite ready to dive head-first into
the maze of twisty passages that are the krb5 API.
-Lennon