Splunk Dev

Help on import cryptography.x509 for splunk add-on

spammenot66
Contributor

I'm using the Splunk Add-on Builder app to create a splunk app. on the run /test page of AoB, as soon as I add in the line from cryptography.x509 import certificate_transparency it throws the error below.As soon as I remove the line, base code from AoB immediate works but i need this cryptography to be avail

Traceback (most recent call last):

  File "C:\Splunk\etc\apps\TA-test\bin\pn_testtest_1598189382_409.py", line 14, in <module>

    import input_module_pn_testtest_1598189382_409 as input_module

  File "C:\Splunk\etc\apps\TA-test\bin\input_module_pn_testtest_1598189382_409.py", line 18, in <module>

    import cryptography.x509

  File "C:\Splunk\etc\apps\TA-test\bin\ta_test\cryptography\x509\__init__.py", line 7, in <module>

    from cryptography.x509 import certificate_transparency

ImportError: cannot import name certificate_transparency

 

I've added the paackages into the bin\ta_test folder:
cffi
asn1crypto
six
pycparser

0 Karma
1 Solution

thambisetty
SplunkTrust
SplunkTrust

you should follow below while importing module into python:

for example 1:  you have certificate_transparancy.py is inside your_app\bin\ta_test

to import certificate_transparancy.py  in your python script which is in your_app\bin

from ta_test import certificate_transparancy 

 

for example 2:  you have certificate_transparancy.py is inside your_app\bin\ta_test\inside_folder

to import certificate_transparancy.py in your python script which is in your_app\bin

from ta_test.inside_folder import certificate_transparancy 
————————————
If this helps, give a like below.

View solution in original post

thambisetty
SplunkTrust
SplunkTrust

you should follow below while importing module into python:

for example 1:  you have certificate_transparancy.py is inside your_app\bin\ta_test

to import certificate_transparancy.py  in your python script which is in your_app\bin

from ta_test import certificate_transparancy 

 

for example 2:  you have certificate_transparancy.py is inside your_app\bin\ta_test\inside_folder

to import certificate_transparancy.py in your python script which is in your_app\bin

from ta_test.inside_folder import certificate_transparancy 
————————————
If this helps, give a like below.

spammenot66
Contributor

@thambisetty Thanks for the reply. The problem was I tried to copy the site-package from Anaconda (C:\ProgramData\Anaconda2\Lib\site-packages), which was stupid. The solution was to install python,  then go to the scripts folder where python was installed to use pip.exe. 

I needed to just run pip install {module}, then copy the module along with all dependencies to the my splunk app as you've noted. 

0 Karma
Get Updates on the Splunk Community!

Threat Hunting Unlocked: How to Uplevel Your Threat Hunting With the PEAK Framework ...

WATCH NOWAs AI starts tackling low level alerts, it's more critical than ever to uplevel your threat hunting ...

Splunk APM: New Product Features + Community Office Hours Recap!

Howdy Splunk Community! Over the past few months, we’ve had a lot going on in the world of Splunk Application ...

Index This | Forward, I’m heavy; backward, I’m not. What am I?

April 2024 Edition Hayyy Splunk Education Enthusiasts and the Eternally Curious!  We’re back with another ...