123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509 |
- /*
- Creates frames.
- */
- #include <stdio.h>
- #include <stdlib.h>
- #include <stdint.h>
- #include <string.h>
- #include "frameCreator.h"
- #include "fuzzer.h"
- #include "frameDefinitions.h"
- #include "fuzzChallenge.h"
- #include "fuzzAuth.h"
- #include "fuzzEXTRATES.h"
- #include "fuzzHTCAPAB.h"
- #include "fuzzHTINFO.h"
- #include "fuzzEXTCAPAB.h"
- #include "fuzzEDCA.h"
- #include "fuzzRates.h"
- //CHANGE WHEN NEW SUBFUZZER
- //Creates Authentication frame
- u_char *createAuthResponse(u_char *dstAddress, int *packetSize, u_char * radioTapHeader, u_char *myMAC)
- {
- //when done with all subfuzzers, we want to return frames from the generic fuzzer
- if (getNotifyDone() != 0)
- return AuthFuzz(dstAddress, packetSize, radioTapHeader, myMAC);
- #define numberOfAuthInfoElems (1) //number of information elements
- //definition of all info elements
- //CHANGE WHEN NEW SUBFUZZER
- infoElem challenge = challengeFuzz();
- //CHANGE WHEN NEW SUBFUZZER
- //create array of information elements
- infoElem taggedParams[numberOfAuthInfoElems] = {challenge};
- //length of all info elements, including id and len field
- int len_taggedParams = 0;
- for(int i = 0; i < numberOfAuthInfoElems; i++)
- {
- if (taggedParams[i].len_data != -1) //do not include if len_data == -1
- {
- //+2 to include id and len field size
- len_taggedParams = len_taggedParams + taggedParams[i].len_data+2;
- }
- }
- //fill in struct
- authResponse authResp = {
- 36, radioTapHeader, //RadioTap hdr
- 1, "\xb0", //Type
- 1, "\x00", //Subtype
- 2, "\x3a\x01", //Duration
- 6, dstAddress, //DST addr
- 6, myMAC, //Source addr
- 6, myMAC, //BSS addr
- 2, "\x00\x00", //Seq nr (overwritten by firmware)
- 2, "\x00\x00", //Auth alg
- 2, "\x02\x00", //Auth seq
- 2, "\x00\x00", //Status code
- len_taggedParams,
- taggedParams, //Information elements
- 4, "\x00\x00\x00\x00" //FSC (overwritten by firmware)
- };
- //calculate size of final packet
- *packetSize = authResp.len_radioTapHdr
- + authResp.len_type
- + authResp.len_flags
- + authResp.len_duration
- + authResp.len_destAddr
- + authResp.len_sourceAddr
- + authResp.len_bssAddr
- + authResp.len_seqNr
- + authResp.len_authAlg
- + authResp.len_authSeq
- + authResp.len_status
- + authResp.len_taggedParams
- + authResp.len_fsc;
- //define packet
- u_char *authRespPacket = malloc(*packetSize);
- if(!authRespPacket)
- {
- printf("Memory allocation error!\n");
- exit(-1);
- }
- //copy all struct fields into packet
- int copyOffset = 0;
- memcpy(authRespPacket + copyOffset, authResp.radioTapHdr, authResp.len_radioTapHdr);
- copyOffset = copyOffset + authResp.len_radioTapHdr;
- memcpy(authRespPacket + copyOffset, authResp.type, authResp.len_type);
- copyOffset = copyOffset + authResp.len_type;
- memcpy(authRespPacket + copyOffset, authResp.flags, authResp.len_flags);
- copyOffset = copyOffset + authResp.len_flags;
- memcpy(authRespPacket + copyOffset, authResp.duration, authResp.len_duration);
- copyOffset = copyOffset + authResp.len_duration;
- memcpy(authRespPacket + copyOffset, authResp.destAddr, authResp.len_destAddr);
- copyOffset = copyOffset + authResp.len_destAddr;
- memcpy(authRespPacket + copyOffset, authResp.sourceAddr, authResp.len_sourceAddr);
- copyOffset = copyOffset + authResp.len_sourceAddr;
- memcpy(authRespPacket + copyOffset, authResp.bssAddr, authResp.len_bssAddr);
- copyOffset = copyOffset + authResp.len_bssAddr;
- memcpy(authRespPacket + copyOffset, authResp.seqNr, authResp.len_seqNr);
- copyOffset = copyOffset + authResp.len_seqNr;
- memcpy(authRespPacket + copyOffset, authResp.authAlg, authResp.len_authAlg);
- copyOffset = copyOffset + authResp.len_authAlg;
- memcpy(authRespPacket + copyOffset, authResp.authSeq, authResp.len_authSeq);
- copyOffset = copyOffset + authResp.len_authSeq;
- memcpy(authRespPacket + copyOffset, authResp.status, authResp.len_status);
- copyOffset = copyOffset + authResp.len_status;
- //copy all information elements
- for(int i = 0; i < numberOfAuthInfoElems; i++)
- {
- if (taggedParams[i].len_data != -1) //if id == -1, we do not want to include the information element
- {
- memcpy(authRespPacket + copyOffset, &taggedParams[i].id, 1);
- copyOffset = copyOffset + 1;
- memcpy(authRespPacket + copyOffset, &taggedParams[i].len, 1);
- copyOffset = copyOffset + 1;
- memcpy(authRespPacket + copyOffset, taggedParams[i].data, taggedParams[i].len_data);
- copyOffset = copyOffset + taggedParams[i].len_data;
- }
- }
-
- memcpy(authRespPacket + copyOffset, authResp.fsc, authResp.len_fsc);
- copyOffset = copyOffset + authResp.len_fsc;
- //send packet
- return authRespPacket;
- }
- //Creates Association response
- u_char *createAssResponse(u_char *dstAddress, int *packetSize, u_char * radioTapHeader, u_char *myMAC)
- {
- #define numberOfAssInfoElems (6) //number of information elements
- //definition of all info elements
- //CHANGE WHEN NEW SUBFUZZER
- infoElem suppRates = ratesFuzz();
- infoElem extrates = extratesFuzz();
- infoElem htcapab = htcapabFuzz();
- infoElem htinfo = htinfoFuzz();
- infoElem extcapab = extcapabFuzz();
- infoElem edca = edcaFuzz();
- //CHANGE WHEN NEW SUBFUZZER
- //create array of information elements
- infoElem taggedParams[numberOfAssInfoElems] = {suppRates, extrates, htcapab,
- htinfo, extcapab, edca};
- //length of all info elements, including id and len field
- int len_taggedParams = 0;
- for(int i = 0; i < numberOfAssInfoElems; i++)
- {
- if (taggedParams[i].len_data != -1) //do not include if len_data == -1
- {
- //+2 to include id and len field size
- len_taggedParams = len_taggedParams + taggedParams[i].len_data+2;
- }
- }
- //fill in struct
- assResponse assResp = {
- 36, radioTapHeader, //RadioTap hdr
- 1, "\x10", //Type
- 1, "\x00", //Flags
- 2, "\x40\x01", //Duration
- 6, dstAddress, //DST addr
- 6, myMAC, //Source addr
- 6, myMAC, //BSS addr
- 2, "\x00\x00", //Seq nr (overwritten by firmware)
- 2, "\x01\x00", //Capab info
- 2, "\x00\x00", //Status code
- 2, "\x01\xc0", //Association id
-
- len_taggedParams,
- taggedParams, //Information elements
- 4, "\x00\x00\x00\x00" //FSC (overwritten by firmware)
- };
- //calculate size of final packet
- *packetSize = assResp.len_radioTapHdr
- + assResp.len_type
- + assResp.len_flags
- + assResp.len_duration
- + assResp.len_destAddr
- + assResp.len_sourceAddr
- + assResp.len_bssAddr
- + assResp.len_seqNr
- + assResp.len_capabInfo
- + assResp.len_status
- + assResp.len_assId
- + assResp.len_taggedParams
- + assResp.len_fsc;
- //define packet
- u_char *assRespPacket = malloc(*packetSize);
- if(!assRespPacket)
- {
- printf("Memory allocation error!\n");
- exit(-1);
- }
- //copy all struct fields into packet
- int copyOffset = 0;
- memcpy(assRespPacket + copyOffset, assResp.radioTapHdr, assResp.len_radioTapHdr);
- copyOffset = copyOffset + assResp.len_radioTapHdr;
- memcpy(assRespPacket + copyOffset, assResp.type, assResp.len_type);
- copyOffset = copyOffset + assResp.len_type;
- memcpy(assRespPacket + copyOffset, assResp.flags, assResp.len_flags);
- copyOffset = copyOffset + assResp.len_flags;
- memcpy(assRespPacket + copyOffset, assResp.duration, assResp.len_duration);
- copyOffset = copyOffset + assResp.len_duration;
- memcpy(assRespPacket + copyOffset, assResp.destAddr, assResp.len_destAddr);
- copyOffset = copyOffset + assResp.len_destAddr;
- memcpy(assRespPacket + copyOffset, assResp.sourceAddr, assResp.len_sourceAddr);
- copyOffset = copyOffset + assResp.len_sourceAddr;
- memcpy(assRespPacket + copyOffset, assResp.bssAddr, assResp.len_bssAddr);
- copyOffset = copyOffset + assResp.len_bssAddr;
- memcpy(assRespPacket + copyOffset, assResp.seqNr, assResp.len_seqNr);
- copyOffset = copyOffset + assResp.len_seqNr;
- memcpy(assRespPacket + copyOffset, assResp.capabInfo, assResp.len_capabInfo);
- copyOffset = copyOffset + assResp.len_capabInfo;
- memcpy(assRespPacket + copyOffset, assResp.status, assResp.len_status);
- copyOffset = copyOffset + assResp.len_status;
- memcpy(assRespPacket + copyOffset, assResp.assId, assResp.len_assId);
- copyOffset = copyOffset + assResp.len_assId;
- //copy all information elements
- for(int i = 0; i < numberOfAssInfoElems; i++)
- {
- if (taggedParams[i].len_data != -1) //if id == -1, we do not want to include the information element
- {
- memcpy(assRespPacket + copyOffset, &taggedParams[i].id, 1);
- copyOffset = copyOffset + 1;
- memcpy(assRespPacket + copyOffset, &taggedParams[i].len, 1);
- copyOffset = copyOffset + 1;
- memcpy(assRespPacket + copyOffset, taggedParams[i].data, taggedParams[i].len_data);
- copyOffset = copyOffset + taggedParams[i].len_data;
- }
- }
-
- memcpy(assRespPacket + copyOffset, assResp.fsc, assResp.len_fsc);
- copyOffset = copyOffset + assResp.len_fsc;
- //send packet
- return assRespPacket;
- }
- //Creates Probe response frame
- u_char *createProbeResponse(u_char *dstAddress, int *packetSize, u_char * radioTapHeader, u_char *myMAC)
- {
-
- #define numberOfProbeInfoElems (3) //number of information elements
- //definition of all info elements
- infoElem ssid = {
- 0, //id
- 4, //len
- 4, //real length of data
- "\x46\x55\x5a\x5a" //data
- };
- infoElem suppRates = {
- 1, //id
- 7, //len
- 7, //real length of data
- "\x96\x18\x24\x30\x48\x60\x6c" //data
- };
- infoElem ds = {
- 3, //id
- 1, //len
- 1, //real length of data
- "\x01" //data
- };
- //CHANGE WHEN NEW SUBFUZZER
- //create array of information elements
- infoElem taggedParams[numberOfProbeInfoElems] = {ssid, suppRates, ds};
- //length of all info elements, including id and len field
- int len_taggedParams = 0;
- for(int i = 0; i < numberOfProbeInfoElems; i++)
- {
- if (taggedParams[i].len_data != -1) //do not include when len_data == -1
- {
- //+2 to include id and len field size
- len_taggedParams = len_taggedParams + taggedParams[i].len_data+2;
- }
- }
- //fill in struct
- probeResponse probeResp = {
- 36, radioTapHeader, //RadioTap hdr
- 1, "\x50", //Type
- 1, "\x00", //Flags
- 2, "\x3a\x01", //Duration
- 6, dstAddress, //DST addr
- 6, myMAC, //Source addr
- 6, myMAC, //BSS addr
- 2, "\x00\x00", //Seq nr (overwritten by firmware)
- 8, "\x00\x00\x00\x00\x00\x00\x00\x00", //Timestamp (overwritten by firmware)
- 2, "\x64\x00", //Beacon interval
- 2, "\x01\x00", //Capab info
-
- len_taggedParams,
- taggedParams, //Information elements
- 4, "\x00\x00\x00\x00" //FSC (overwritten by firmware)
- };
- //calculate size of final packet
- *packetSize = probeResp.len_radioTapHdr
- + probeResp.len_type
- + probeResp.len_flags
- + probeResp.len_duration
- + probeResp.len_destAddr
- + probeResp.len_sourceAddr
- + probeResp.len_bssAddr
- + probeResp.len_seqNr
- + probeResp.len_timeStamp
- + probeResp.len_beaconInterval
- + probeResp.len_capabInfo
- + probeResp.len_taggedParams
- + probeResp.len_fsc;
-
- //define packet
- u_char *probeRespPacket = malloc(*packetSize);
- if(!probeRespPacket)
- {
- printf("Memory allocation error!\n");
- exit(-1);
- }
- //copy all struct fields into packet
- int copyOffset = 0;
- memcpy(probeRespPacket + copyOffset, probeResp.radioTapHdr, probeResp.len_radioTapHdr);
- copyOffset = copyOffset + probeResp.len_radioTapHdr;
- memcpy(probeRespPacket + copyOffset, probeResp.type, probeResp.len_type);
- copyOffset = copyOffset + probeResp.len_type;
- memcpy(probeRespPacket + copyOffset, probeResp.flags, probeResp.len_flags);
- copyOffset = copyOffset + probeResp.len_flags;
- memcpy(probeRespPacket + copyOffset, probeResp.duration, probeResp.len_duration);
- copyOffset = copyOffset + probeResp.len_duration;
- memcpy(probeRespPacket + copyOffset, probeResp.destAddr, probeResp.len_destAddr);
- copyOffset = copyOffset + probeResp.len_destAddr;
- memcpy(probeRespPacket + copyOffset, probeResp.sourceAddr, probeResp.len_sourceAddr);
- copyOffset = copyOffset + probeResp.len_sourceAddr;
- memcpy(probeRespPacket + copyOffset, probeResp.bssAddr, probeResp.len_bssAddr);
- copyOffset = copyOffset + probeResp.len_bssAddr;
- memcpy(probeRespPacket + copyOffset, probeResp.seqNr, probeResp.len_seqNr);
- copyOffset = copyOffset + probeResp.len_seqNr;
- memcpy(probeRespPacket + copyOffset, probeResp.timeStamp, probeResp.len_timeStamp);
- copyOffset = copyOffset + probeResp.len_timeStamp;
- memcpy(probeRespPacket + copyOffset, probeResp.beaconInterval, probeResp.len_beaconInterval);
- copyOffset = copyOffset + probeResp.len_beaconInterval;
- memcpy(probeRespPacket + copyOffset, probeResp.capabInfo, probeResp.len_capabInfo);
- copyOffset = copyOffset + probeResp.len_capabInfo;
- //copy all information elements
- for(int i = 0; i < numberOfProbeInfoElems; i++)
- {
- if (taggedParams[i].len_data != -1) //if id == -1, we do not want to include the information element
- {
- memcpy(probeRespPacket + copyOffset, &taggedParams[i].id, 1);
- copyOffset = copyOffset + 1;
- memcpy(probeRespPacket + copyOffset, &taggedParams[i].len, 1);
- copyOffset = copyOffset + 1;
- memcpy(probeRespPacket + copyOffset, taggedParams[i].data, taggedParams[i].len_data);
- copyOffset = copyOffset + taggedParams[i].len_data;
- }
- }
-
- memcpy(probeRespPacket + copyOffset, probeResp.fsc, probeResp.len_fsc);
- copyOffset = copyOffset + probeResp.len_fsc;
- //return packet
- return probeRespPacket;
- }
- //Creates Desassociation frame
- u_char *createDisAss(u_char *dstAddress, int *packetSize, u_char * radioTapHeader, u_char *myMAC)
- {
-
- //fill in struct
- disAss dis = {
- 36, radioTapHeader, //RadioTap hdr
- 1, "\xC0", //Type (set to deAUTHentication instead, since some devices ignore the disassociation frame)
- 1, "\x00", //Flags
- 2, "\x3a\x01", //Duration
- 6, dstAddress, //DST addr
- 6, myMAC, //Source addr
- 6, myMAC, //BSS addr
- 2, "\x00\x00", //Seq nr (overwritten by firmware)
- 2, "\x01\x00", //Reason code
- 4, "\x00\x00\x00\x00" //FSC (overwritten by firmware)
- };
- //calculate size of final packet
- *packetSize = dis.len_radioTapHdr
- + dis.len_type
- + dis.len_flags
- + dis.len_duration
- + dis.len_destAddr
- + dis.len_sourceAddr
- + dis.len_bssAddr
- + dis.len_seqNr
- + dis.len_reasonCode
- + dis.len_fsc;
-
- //define packet
- u_char *disPacket = malloc(*packetSize);
- if(!disPacket)
- {
- printf("Memory allocation error!\n");
- exit(-1);
- }
- //copy all struct fields into packet
- int copyOffset = 0;
- memcpy(disPacket + copyOffset, dis.radioTapHdr, dis.len_radioTapHdr);
- copyOffset = copyOffset + dis.len_radioTapHdr;
- memcpy(disPacket + copyOffset, dis.type, dis.len_type);
- copyOffset = copyOffset + dis.len_type;
- memcpy(disPacket + copyOffset, dis.flags, dis.len_flags);
- copyOffset = copyOffset + dis.len_flags;
- memcpy(disPacket + copyOffset, dis.duration, dis.len_duration);
- copyOffset = copyOffset + dis.len_duration;
- memcpy(disPacket + copyOffset, dis.destAddr, dis.len_destAddr);
- copyOffset = copyOffset + dis.len_destAddr;
- memcpy(disPacket + copyOffset, dis.sourceAddr, dis.len_sourceAddr);
- copyOffset = copyOffset + dis.len_sourceAddr;
- memcpy(disPacket + copyOffset, dis.bssAddr, dis.len_bssAddr);
- copyOffset = copyOffset + dis.len_bssAddr;
- memcpy(disPacket + copyOffset, dis.seqNr, dis.len_seqNr);
- copyOffset = copyOffset + dis.len_seqNr;
- memcpy(disPacket + copyOffset, dis.reasonCode, dis.len_reasonCode);
- copyOffset = copyOffset + dis.len_reasonCode;
- memcpy(disPacket + copyOffset, dis.fsc, dis.len_fsc);
- copyOffset = copyOffset + dis.len_fsc;
- //return packet
- return disPacket;
- }
|