Not able to run theharvester on kali linux. Fatal exception: Pycurl: Link time version is older than compile time version - pycurl

I tried running theharvester on my kali machine but then I get an error, "Fatal exception: pycurl: libcurl link-time version (7.65.3) is older then compile-time version (7.66.0). Wfuzz needs pycurl to run." I reinstalled pycurl and Wfuzz with pip and still the error persists. Please help me on this.

It's easy bro, if you want to solve it just open your kali machine and just type following command:
sudo apt-get install python-pycurl
It will install pycurl packages what you needed then you can locate and run theHarvester easily,.....

Related

Libcamera command not found after installing it

Having a terrible time with the raspi related problems. One of them concerning the libcamera. I have Ubuntu 22.04 64bit on my raspi and I have installed the libcamera package with the command sudo apt install libcamera_*. The problem is that whenever I run a command with libcamera it tells me command not found!!! Any solutions?!! The camera is detected and supported. Thanks in advance for your help.

Error when installing a python module in Linux

I am encoutering two kinds of issues while trying to install a package called Boltztrap2.
1) Trying to install Boltztrap2 using 'pip3'. However, when I punch in the command, the process goes smoothly for a while and then spits out an error :
BoltzTraP2/sphere/frontend.cpp:32:20: fatal error: Python.h: No such file or directory
#include "Python.h"
^
compilation terminated.
error: command 'gcc' failed with exit status 1
I did some troubleshooting and found out that it is just a path issue - I confirmed this by typing 'locate Python.h'. However, I don't get how to manually incorporate this change since the 'pip3' command that I use downloads the program and compiles it automatically. I don't seem to have access to change any scripts, or rather I do not know how to, since I'm kind of new to all this.
PS: I do not have sudo access.
2) Trying to install Boltztrap2 by manually compiling the python setup file: This seems to work fine until the system spits out an error saying:
Error:numpy is not installed.
PS: Again, I do not have sudo access.
I would be very glad if someone could help me install this package through either method. I just want to get the software to work. Thanks in advance for any assistance.
python3 -m pip install --upgrade pip
pip3 install numpy
Check if you can upgrade pip?
If that works then you can pip install numpy.

Redis Source Code Compile Failed on macOS Mojave

The Redis 5.0 source code has failed to compile on macOS Mojave.
The MAKE log can be found here: https://gist.github.com/eliu/c56bffc0f3dc5f6a826949af5b4483b2
I know Redis can be installed via brew, but I need to know the way to compile the source code on macOS. Please help.
I solved it myself. Fix it when removing the following packages installed via Homebrew:
brew uninstall binutils openvpn bash gcc rocker

Rabbitmq unable to find erl after Mac OS update

After updating high sierra to 10.13.5, rabbitmq can't seem to find erl when i run:
/usr/local/Cellar/rabbitmq/3.7.3/sbin/rabbitmq-server
I get the error:
/usr/local/Cellar/rabbitmq/3.7.3/sbin/rabbitmq-server: line 85:
/usr/local/opt/erlang/bin/erl: No such file or directory
Running which erl gives me: /usr/local/bin/erl
Need help to get it working again, not sure why the path changed as well.
You probably have to install erlang with
brew install erlang
or reinstall it with:
brew reinstall erlang

Error installing library of Scrapy in PyCharm

I can install other packages, but can't install Scrapy. I get the following errors:
warning: build_py: byte-compiling is disabled, skipping.
running build_ext
building 'lxml.etree' extension
error: Microsoft Visual C++ 10.0 is required (Unable to find vcvarsall.bat).
However, C++ is installed, which I installed numerous of times. I have x86 and 64 bit installations (not sure if it's 10.0) but I have 2013-2017 versions installed.
Please upgrade your pip by following command.
python -m pip install --upgrade pip
Then install Scrapy by following command.
pip install Scrapy
download latest twisted package and install with pip.
https://www.lfd.uci.edu/~gohlke/pythonlibs/#twisted
after that install scrapy
In my case, I found that pywin32 was not installed...
So I did
download the latest Twisted package from https://www.lfd.uci.edu/~gohlke/pythonlibs/#twisted
You want to use the amd64 if you have Windows 64 (regardless if it's an Intel processor or not)
You can use any browser for the download and copy/paste the file into the project folder of your current pycharm project.
Then in pycharm type this:
pip install Twisted-20.3.0-cp39-cp39-win_amd64.whl
(assuming that your package was Twisted-20.3.0-cp39-cp39-win_amd64.whl)
then proceed with:
pip install Scrapy