4

aireplay-ng is not available for Mac OSX. How can I inject frames into the network? I am only concerned with sending deauth packets.

schroeder
  • 123,438
  • 55
  • 284
  • 319
Aditya Chaudhary
  • 149
  • 1
  • 1
  • 5

3 Answers3

2

EDIT: Kismac2 is also no longer being maintained however the current build still works on OSX High Sierra

Kismac2 has a very large set of functions, including deauth.

https://github.com/IGRSoft/KisMac2/blob/master/README.md

Although kismac-ng (a previous incarnation) has been abandoned, kismac2 is now the tool of choice for most pentesters and wardrivers who need a quick overview of networks, and several attacks.

peterh
  • 2,938
  • 6
  • 25
  • 31
user400344
  • 863
  • 5
  • 9
1

You can compile aircrack suite from source code. A guide is in the aircrack-ng webpage

Or if you don't want to compile you can download it from Macports as said in the same webpage

Mr. E
  • 1,954
  • 9
  • 18
-1

To give you an answer you could work with, I uploaded my Kali image to the hub. Just start docker (in our case docker engine for OSX) and give it a shot. It works.

docker run --name pen-tests -ti --net="host" --privileged -h kali fitz4815162342/pen-tests /bin/bash

schroeder
  • 123,438
  • 55
  • 284
  • 319
  • 2
    just general advice never run some random docker image from the internet, especially a privileged docker image. – JBirdVegas Aug 16 '19 at 19:17