tomac/yersinia

GTK: Not Opening

Maggin16 opened this issue · 8 comments

It's giving an error like this '' Hmmm... it seems that you don't have gtk support or Yersinia has been configured with --disable-gtk option... Go and get it!!
What should I do

same

Current workaround (still get some errors, but the Yersinia runs):

git clone https://github.com/tomac/yersinia /opt/yersinia
apt install autoconf libgtk-3-dev libnet1-dev libgtk2.0-dev
cd /opt/yersinia
./autogen.sh
./configure
make
make install

then it should run. Look for errors throughout each configure or autogen command run for packages it tells you are missing.

@alecclyde you forget libpcap-dev in this line

apt install autoconf libgtk-3-dev libnet1-dev libgtk2.0-dev libpcap-dev

Just as a heads up, the listed workaround does result in xz-utils 5.6.1 and liblzma 5.6.1 being auto-installed as dependencies in Kali as of 4/3/2024.

same

Current workaround (still get some errors, but the Yersinia runs):

git clone https://github.com/tomac/yersinia /opt/yersinia
apt install autoconf libgtk-3-dev libnet1-dev libgtk2.0-dev
cd /opt/yersinia
./autogen.sh
./configure
make
make install

then it should run. Look for errors throughout each configure or autogen command run for packages it tells you are missing.

but it still error like the header said..... :(

you forgot to add --with-gtk...

git clone https://github.com/tomac/yersinia /opt/yersinia
apt install autoconf libgtk-3-dev libnet1-dev libgtk2.0-dev libpcap-dev -y
cd /opt/yersinia
./autogen.sh
./configure --with-gtk
make
make install

Current workaround (still get some errors, but the Yersinia runs):

git clone https://github.com/tomac/yersinia /opt/yersinia
apt install autoconf libgtk-3-dev libnet1-dev libgtk2.0-dev
cd /opt/yersinia
./autogen.sh
./configure
make
make install

then it should run. Look for errors throughout each configure or autogen command run for packages it tells you are missing.

but it still error like the header said..... :(