├── LICENSE.md ├── Readme.md ├── antisponder ├── INSTRUCTIONS.TXT ├── Makefile ├── Readme.md ├── destroy.c ├── destroy.h ├── getcreds.c ├── getcreds.h ├── interface.c ├── interface.h ├── main.c ├── nameres.c ├── nameres.h ├── rand.c ├── rand.h └── udp.c ├── ewok ├── CryptoShenanigans.c ├── Makefile ├── Readme.MD ├── ewok.c ├── example.ps1 ├── global.c ├── global.h ├── grabtemplate.sh ├── http.c ├── network.c └── network.h ├── pesky ├── Makefile ├── Readme.md ├── eap.c ├── eap.h ├── eapmap.h ├── eth.h ├── getbssid.c ├── getbssid.h ├── global.c ├── global.h ├── main.c ├── network.c ├── network.h ├── rand.c ├── rand.h ├── sendproberequest.c ├── sendprobes.c ├── sniffloop.c └── table.h └── shove ├── Makefile ├── Readme.md ├── example.xml ├── main.c ├── network.c ├── network.h ├── readxml.c └── readxml.h /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnventura/The-Salad-Project/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnventura/The-Salad-Project/HEAD/Readme.md -------------------------------------------------------------------------------- /antisponder/INSTRUCTIONS.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnventura/The-Salad-Project/HEAD/antisponder/INSTRUCTIONS.TXT -------------------------------------------------------------------------------- /antisponder/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnventura/The-Salad-Project/HEAD/antisponder/Makefile -------------------------------------------------------------------------------- /antisponder/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnventura/The-Salad-Project/HEAD/antisponder/Readme.md -------------------------------------------------------------------------------- /antisponder/destroy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnventura/The-Salad-Project/HEAD/antisponder/destroy.c -------------------------------------------------------------------------------- /antisponder/destroy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnventura/The-Salad-Project/HEAD/antisponder/destroy.h -------------------------------------------------------------------------------- /antisponder/getcreds.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnventura/The-Salad-Project/HEAD/antisponder/getcreds.c -------------------------------------------------------------------------------- /antisponder/getcreds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnventura/The-Salad-Project/HEAD/antisponder/getcreds.h -------------------------------------------------------------------------------- /antisponder/interface.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnventura/The-Salad-Project/HEAD/antisponder/interface.c -------------------------------------------------------------------------------- /antisponder/interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnventura/The-Salad-Project/HEAD/antisponder/interface.h -------------------------------------------------------------------------------- /antisponder/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnventura/The-Salad-Project/HEAD/antisponder/main.c -------------------------------------------------------------------------------- /antisponder/nameres.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnventura/The-Salad-Project/HEAD/antisponder/nameres.c -------------------------------------------------------------------------------- /antisponder/nameres.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnventura/The-Salad-Project/HEAD/antisponder/nameres.h -------------------------------------------------------------------------------- /antisponder/rand.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnventura/The-Salad-Project/HEAD/antisponder/rand.c -------------------------------------------------------------------------------- /antisponder/rand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnventura/The-Salad-Project/HEAD/antisponder/rand.h -------------------------------------------------------------------------------- /antisponder/udp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnventura/The-Salad-Project/HEAD/antisponder/udp.c -------------------------------------------------------------------------------- /ewok/CryptoShenanigans.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnventura/The-Salad-Project/HEAD/ewok/CryptoShenanigans.c -------------------------------------------------------------------------------- /ewok/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnventura/The-Salad-Project/HEAD/ewok/Makefile -------------------------------------------------------------------------------- /ewok/Readme.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnventura/The-Salad-Project/HEAD/ewok/Readme.MD -------------------------------------------------------------------------------- /ewok/ewok.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnventura/The-Salad-Project/HEAD/ewok/ewok.c -------------------------------------------------------------------------------- /ewok/example.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnventura/The-Salad-Project/HEAD/ewok/example.ps1 -------------------------------------------------------------------------------- /ewok/global.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnventura/The-Salad-Project/HEAD/ewok/global.c -------------------------------------------------------------------------------- /ewok/global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnventura/The-Salad-Project/HEAD/ewok/global.h -------------------------------------------------------------------------------- /ewok/grabtemplate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnventura/The-Salad-Project/HEAD/ewok/grabtemplate.sh -------------------------------------------------------------------------------- /ewok/http.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnventura/The-Salad-Project/HEAD/ewok/http.c -------------------------------------------------------------------------------- /ewok/network.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnventura/The-Salad-Project/HEAD/ewok/network.c -------------------------------------------------------------------------------- /ewok/network.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnventura/The-Salad-Project/HEAD/ewok/network.h -------------------------------------------------------------------------------- /pesky/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnventura/The-Salad-Project/HEAD/pesky/Makefile -------------------------------------------------------------------------------- /pesky/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnventura/The-Salad-Project/HEAD/pesky/Readme.md -------------------------------------------------------------------------------- /pesky/eap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnventura/The-Salad-Project/HEAD/pesky/eap.c -------------------------------------------------------------------------------- /pesky/eap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnventura/The-Salad-Project/HEAD/pesky/eap.h -------------------------------------------------------------------------------- /pesky/eapmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnventura/The-Salad-Project/HEAD/pesky/eapmap.h -------------------------------------------------------------------------------- /pesky/eth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnventura/The-Salad-Project/HEAD/pesky/eth.h -------------------------------------------------------------------------------- /pesky/getbssid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnventura/The-Salad-Project/HEAD/pesky/getbssid.c -------------------------------------------------------------------------------- /pesky/getbssid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnventura/The-Salad-Project/HEAD/pesky/getbssid.h -------------------------------------------------------------------------------- /pesky/global.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnventura/The-Salad-Project/HEAD/pesky/global.c -------------------------------------------------------------------------------- /pesky/global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnventura/The-Salad-Project/HEAD/pesky/global.h -------------------------------------------------------------------------------- /pesky/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnventura/The-Salad-Project/HEAD/pesky/main.c -------------------------------------------------------------------------------- /pesky/network.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnventura/The-Salad-Project/HEAD/pesky/network.c -------------------------------------------------------------------------------- /pesky/network.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnventura/The-Salad-Project/HEAD/pesky/network.h -------------------------------------------------------------------------------- /pesky/rand.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnventura/The-Salad-Project/HEAD/pesky/rand.c -------------------------------------------------------------------------------- /pesky/rand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnventura/The-Salad-Project/HEAD/pesky/rand.h -------------------------------------------------------------------------------- /pesky/sendproberequest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnventura/The-Salad-Project/HEAD/pesky/sendproberequest.c -------------------------------------------------------------------------------- /pesky/sendprobes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnventura/The-Salad-Project/HEAD/pesky/sendprobes.c -------------------------------------------------------------------------------- /pesky/sniffloop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnventura/The-Salad-Project/HEAD/pesky/sniffloop.c -------------------------------------------------------------------------------- /pesky/table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnventura/The-Salad-Project/HEAD/pesky/table.h -------------------------------------------------------------------------------- /shove/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnventura/The-Salad-Project/HEAD/shove/Makefile -------------------------------------------------------------------------------- /shove/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnventura/The-Salad-Project/HEAD/shove/Readme.md -------------------------------------------------------------------------------- /shove/example.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnventura/The-Salad-Project/HEAD/shove/example.xml -------------------------------------------------------------------------------- /shove/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnventura/The-Salad-Project/HEAD/shove/main.c -------------------------------------------------------------------------------- /shove/network.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnventura/The-Salad-Project/HEAD/shove/network.c -------------------------------------------------------------------------------- /shove/network.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnventura/The-Salad-Project/HEAD/shove/network.h -------------------------------------------------------------------------------- /shove/readxml.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnventura/The-Salad-Project/HEAD/shove/readxml.c -------------------------------------------------------------------------------- /shove/readxml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnventura/The-Salad-Project/HEAD/shove/readxml.h --------------------------------------------------------------------------------