Learning Goal: I’m working on a c++ question and need an explanation and answer to help me learn.Given the C++ program below discuss and identify the possible security vulnerabilities that may exist. Discuss solutions to minimize the vulnerabilities. Discuss and identify possible problems that can result in errors for string manipulation of data. The analysis should be close to 1 paragraph. CODING: #include#include#include#includeusing namespace std;void reversal();int main(){string readLine;ofstream outFile(“CSC450_CT5_mod5.txt”, ios::app);cout<<“Enter a string to add to CSC450_CT5_mod5.txt: “;getline(cin, readLine);outFile<<“n”<<readLine<<endl;outFile.close();reversal();return 0;}void reversal(){ifstream inFile(“CSC450_CT5_mod5.txt”);string linesArr = “”, readLine;while(getline(inFile,readLine)){while (readLine.length()==0 )getline(inFile,readLine);linesArr += readLine+”n”;}int fileLength = linesArr.size();for(int i=0; i<fileLength/2; i++){char t_c = linesArr[i];linesArr[i] = linesArr[fileLength-i-1];linesArr[fileLength-i-1] = t_c;}linesArr.erase(0, 1);ofstream outFile(“CSC450-mod5-reverse.txt”);outFile<<linesArr<<endl;outFile.close();}
Requirements: 100
Delivering a high-quality product at a reasonable price is not enough anymore.
That’s why we have developed 5 beneficial guarantees that will make your experience with our service enjoyable, easy, and safe.
You have to be 100% sure of the quality of your product to give a money-back guarantee. This describes us perfectly. Make sure that this guarantee is totally transparent.
Read moreEach paper is composed from scratch, according to your instructions. It is then checked by our plagiarism-detection software. There is no gap where plagiarism could squeeze in.
Read moreThanks to our free revisions, there is no way for you to be unsatisfied. We will work on your paper until you are completely happy with the result.
Read moreYour email is safe, as we store it according to international data protection rules. Your bank details are secure, as we use only reliable payment systems.
Read moreBy sending us your money, you buy the service we provide. Check out our terms and conditions if you prefer business talks to be laid out in official language.
Read more
Recent Comments