Identify the login name and the password, shown in plain text in the payload of the packets that you captured.
What will be an ideal response?
In Frame 14, login name ``root'' is shown as a raw packet without any encryption. Also in Frame
17, password ``rootroot'' is easily captured. This has high vulnerability.
You might also like to view...
When deleting a record, the record
a. May be retained in the master file, but marked as deleted. b. May be destroyed. c. May be placed in an activity file. d. a and c. e. None of the above.
There are several uses of the getline function. Assume the definition, string line1, line2; Which one of these allows specification of the character on which input stop?
a. cout << “Enter a line of input \n”; getline(cin, line1); b. cout << “Enter a line of input \n”; getline(cin, line1, ‘?’); c. cout << “Enter a line of input \n”; getline(cin, line1) >> line2;