You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We've noticed an interesting issue generating an mtz with canari create-profile $package in the environment of a machine that uses homebrew python on OSX.
I use OSX Python and the transform.local.command property of my transforms correctly points to /usr/local/bin/dispatcher.
However, a peer uses homebrew Python 2.7.9 and their transform.local.command property gets set to:
/usr/local/Cellar/python/2.7.9/Frameworks/Python.framework/Versions/2.7/bin/dispatcher
His is actually installed in /usr/local/bin/dispatcher .
Which, doesn't exist, so all attempts to run the transform fail with "No file or directory" in maltego. This can be worked around by editing the property of the transforms in Manage Transforms in maltego.
I believe the related code might be at src/canari/pkgutils/maltego.py:
I am seeing something similar, though on linux, using a custom setuptools config (i.e. install-scripts set in .pydistutils.cfg) that installs to personal directories. So far I've narrowed it down to setuptools not taking into account my config when returning the install_scripts location though not sure if the way get_bin_dir calls setuptools to get that variable is the ultimate cause
We've noticed an interesting issue generating an mtz with
canari create-profile $package
in the environment of a machine that uses homebrew python on OSX.I use OSX Python and the transform.local.command property of my transforms correctly points to /usr/local/bin/dispatcher.
However, a peer uses homebrew Python 2.7.9 and their transform.local.command property gets set to:
/usr/local/Cellar/python/2.7.9/Frameworks/Python.framework/Versions/2.7/bin/dispatcher
His is actually installed in /usr/local/bin/dispatcher .
Which, doesn't exist, so all attempts to run the transform fail with "No file or directory" in maltego. This can be worked around by editing the property of the transforms in Manage Transforms in maltego.
I believe the related code might be at src/canari/pkgutils/maltego.py:
The text was updated successfully, but these errors were encountered: