AurorWalnut / pyrit

Automatically exported from code.google.com/p/pyrit
0 stars 0 forks source link

ImportError: /usr/lib64/python2.6/site-packages/cpyrit/_cpyrit_cuda.so: undefined symbol: SHA1_Update #282

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
hi, i have installed pyrit and pyrit module for cuda, but when i launch it i 
didn't see my gpu..I have alredy readed Troubleshooting but there isn't my 
error:

amd64box ~ # python -c 'from cpyrit import _cpyrit_cuda'
Traceback (most recent call last):
  File "<string>", line 1, in <module>
ImportError: /usr/lib64/python2.6/site-packages/cpyrit/_cpyrit_cuda.so: 
undefined symbol: SHA1_Update

the version of python is 2.6.6

any ideas or suggestions? thanks

P.S. same post here http://pyrit.wordpress.com/2009/03/28/beginning-023/

Original issue reported on code.google.com by ago0...@gmail.com on 20 Mar 2011 at 9:26

GoogleCodeExporter commented 8 years ago
Hi, try to make a modification to the file setup.py in your downloaded and 
decompressed folder pyrit.
The modification is line 41, you have to write

libraries = ['ssl', 'crypto'],

instead of >  libraries = ['ssl'],  (i think it was like this :p) 
I got this information on archi linux forum and it worked for me with Xubuntu 
12.10
I lost the link to this page...
my "undefined symbol" wath md5 but i assume that this is the same problem, you 
miss the link to the crypto libraries

Original comment by kcdt...@gmail.com on 19 Feb 2013 at 12:00

GoogleCodeExporter commented 8 years ago
Traceback (most recent call last):
  File "/usr/local/bin/pyrit", line 4, in <module>
    import pyrit_cli
  File "/usr/local/lib/python2.7/dist-packages/pyrit_cli.py", line 33, in <module>
    import cpyrit.cpyrit
  File "/usr/local/lib/python2.7/dist-packages/cpyrit/cpyrit.py", line 47, in <module>
    import util
  File "/usr/local/lib/python2.7/dist-packages/cpyrit/util.py", line 48, in <module>
    import _cpyrit_cpu
ImportError: /usr/local/lib/python2.7/dist-packages/cpyrit/_cpyrit_cpu.so: 
undefined symbol: EVP_md5

thats what i get even after adding the crypto line to python script, any ideas? 
kubuntu 14.04 32 bit

Original comment by tylerspr...@gmail.com on 26 Aug 2014 at 11:05