All Apps and Add-ons

Exception : clear_password

gate6splunk
Observer

Hello, 

I am using the Storage Password mechanism to store important keys and passwords used in App. password.conf file generated properly from sdk.

While decrypting passwords to use in the app, not getting a clear_password by the Splunk Storage Password mechanism, Just getting an error clear_password
Piece of code which is not working is given below, using app on 8.0.8 version of Splunk Enterprise:

 

 

def get_passwords(app):
    '''Retrieve the user's API keys from Storage/Passwords'''
    pwd_dict = {}
    try:
        sessionKey = sys.stdin.readline().strip()
        # list all credentials
        entities = entity.getEntities(['storage', 'passwords'], namespace=app,
                                     owner='nobody', sessionKey=sessionKey)
        # # return set of credentials
        
        for i, c in entities.items():
            pwd_dict[c['username']] = c['clear_password']

        
    except Exception as e:
        #Here got Exception clear_password
        raise Exception("Could not get %s passwords from storage. Error: %s" % (app, str(e)))
    
    return pwd_dict

 

 

 

 

Any suggestions 

Labels (2)
0 Karma
Career Survey
First 500 qualified respondents will receive a $20 gift card! Tell us about your professional Splunk journey.

Can’t make it to .conf25? Join us online!

Get Updates on the Splunk Community!

Community Content Calendar, September edition

Welcome to another insightful post from our Community Content Calendar! We're thrilled to continue bringing ...

Splunkbase Unveils New App Listing Management Public Preview

Splunkbase Unveils New App Listing Management Public PreviewWe're thrilled to announce the public preview of ...

Leveraging Automated Threat Analysis Across the Splunk Ecosystem

Are you leveraging automation to its fullest potential in your threat detection strategy?Our upcoming Security ...