python:验证 kerberos 票证

发布于 2024-09-07 04:00:43 字数 164 浏览 5 评论 0原文

我想知道 - 是否有人有一个优雅的解决方案来使用 Python 检查有效的 Kerberos 票证。无论如何,我没有看到 kinitklist 会显示票证是否已过期并带有返回代码,但我可以运行 klist 并使用输出的正则表达式。

I'm wondering - if anyone has an elegant solution to checking for a valid Kerberos ticket using Python. I'm not seeing anyway with kinit or klist that will show if a ticket is expired with a return code but I could run klist and use a regex for the output .

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

白首有我共你 2024-09-14 04:00:43

另一个选项是检查“klist -s”的退出状态
看起来更短并且不使用 krbV:

import subprocess

def has_kerberos_ticket():
    return True if subprocess.call(['klist', '-s']) == 0 else False

Another option is to check exit status of 'klist -s'
looks shorter and does not use krbV:

import subprocess

def has_kerberos_ticket():
    return True if subprocess.call(['klist', '-s']) == 0 else False
虐人心 2024-09-14 04:00:43

您有两个选择:第一个是使用“klist -s”并检查返回代码。更好的选择是使用 python-krbV 模块:

import krbV

def has_ticket():
    '''
    Checks to see if the user has a valid ticket.
    '''
    ctx = krbV.default_context()
    cc = ctx.default_ccache()
    try:
        princ = cc.principal()
        retval = True
    except krbV.Krb5Error:
        retval = False

    return retval

You've got two options: the first is to use 'klist -s' and check the return code. The nicer option is to use the python-krbV module:

import krbV

def has_ticket():
    '''
    Checks to see if the user has a valid ticket.
    '''
    ctx = krbV.default_context()
    cc = ctx.default_ccache()
    try:
        princ = cc.principal()
        retval = True
    except krbV.Krb5Error:
        retval = False

    return retval
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文