wirespy icon indicating copy to clipboard operation
wirespy copied to clipboard

Is Arch Linux not working?

Open bardimnik opened this issue 7 years ago • 1 comments

Hello! Is Arch Linux not working? After starting, I get this conclusion:

sudo ./wirespy.sh --help Wirespy v0.6 (type 'help' for a list of commands) Author: Alexandre Teyar | LinkedIn: linkedin.com/in/alexandre-teyar | GitHub: github.com/AresS31

wirespy » Checking for an update... wirespy » A new version is available, consider updating using the command: git reset --hard && git pull origin $GIT_BRANCH --rebase wirespy » Bash version check... wirespy » The bash minimum version requirement is satisfied wirespy » Dependencies check... wirespy > error » The aircrack-ng package is missing. Install it with: sudo apt-get install aircrack-ng -y wirespy > error » The coreutils package is missing. Install it with: sudo apt-get install coreutils -y wirespy > error » The git package is missing. Install it with: sudo apt-get install git -y wirespy > error » The grep package is missing. Install it with: sudo apt-get install grep -y wirespy > error » The isc-dhcp-server package is missing. Install it with: sudo apt-get install isc-dhcp-server -y wirespy > error » The macchanger package is missing. Install it with: sudo apt-get install macchanger -y wirespy > error » The procps package is missing. Install it with: sudo apt-get install procps -y wirespy > error » The rfkill package is missing. Install it with: sudo apt-get install rfkill -y wirespy > error » The iproute2 package is missing. Install it with: sudo apt-get install iproute2 -y wirespy > error » The iw package is missing. Install it with: sudo apt-get install iw -y wirespy > error » The tcpdump package is missing. Install it with: sudo apt-get install tcpdump -y wirespy > error » The xterm package is missing. Install it with: sudo apt-get install xterm -y

I understand correctly that in Arch Linux this tool will not work? All listed tools are installed.

bardimnik avatar Nov 01 '18 19:11 bardimnik

Hi @bardimnik

Thanks for the feedback, I will release a fix to make this package dependencies check less Debian-specific, in the meantime please:

  1. Make sure that the following dependancies are installed on your system:
declare -gar REQUIRED_PACKAGES=( # to comment when experiencing any issue with the dependencies
    'aircrack-ng'
    'coreutils'
    'git'
    'grep'
    'isc-dhcp-server'
    'macchanger'
    'procps'
    'rfkill'
    'iproute2'
    'iw'
    'tcpdump'
    'xterm'
)
  1. Comment out this line (line 899) by adding a # at the beginning of the line: checkCompatibility

After following these 2 steps, please let me know if you still encounter issues.

Note: I recommend you to use the latest version of WireSpy.

Kind regards Alex

aress31 avatar Nov 01 '18 19:11 aress31