Description Summary If integrity check values or "checksums" are omitted from a
protocol, there is no way of determining if data has been corrupted in
transmission.
Extended Description The failure to include checksum functionality in a protocol removes the first application-level check of data that can be used. The end-to-end philosophy of checks states that integrity checks should be performed at the lowest level that they can be completely implemented. Excluding further sanity checks and input validation performed by applications, the protocol's checksum is the most important level of checksum, since it can be performed more completely than at any previous level and takes into account entire messages, as opposed to single packets. Failure to add this functionality to a protocol specification, or in the implementation of that protocol, needlessly ignores a simple solution for a very significant problem and should never be skipped.
Example 1 C and C++ int r,s;struct hostent *h; struct sockaddr_in rserv,lserv; h=gethostbyname("127.0.0.1"); rserv.sin_family=h->h_addrtype; memcpy((char *) &rserv.sin_addr.s_addr,
h->h_addr_list[0], h->h_length); rserv.sin_port= htons(1008); s = socket(AF_INET,SOCK_DGRAM,0); lserv.sin_family = AF_INET; lserv.sin_addr.s_addr = htonl(INADDR_ANY); lserv.sin_port = htons(0); r = bind(s, (struct sockaddr *)
&lserv,sizeof(lserv)); sendto(s,important_data,strlen(important_data)+1,0, (struct
sockaddr *) &rserv, sizeof(rserv)); while(true) { DatagramPacket rp=new
DatagramPacket(rData,rData.length);
outSock.receive(rp);
String in = new String(p.getData(),0, rp.getLength());
InetAddress IPAddress = rp.getAddress();
int port = rp.getPort();
out = secret.getBytes();
DatagramPacket sp =new DatagramPacket(out,out.length,
IPAddress, port);
outSock.send(sp);
}
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
Page Last Updated:
October 29, 2009
|
|
CWE is a Software Assurance strategic initiative sponsored by the National Cyber Security Division of the U.S. Department of Homeland Security. This Web site is hosted by The MITRE Corporation. Contact cwe@mitre.org for more information. |
|||
