55 lines
1.8 KiB
C++
55 lines
1.8 KiB
C++
#include "handler.hpp"
|
|
#include <filesystem>
|
|
#include <fstream>
|
|
#include <string_view>
|
|
|
|
const std::filesystem::path kPATH{"/var/finger/users/"};
|
|
|
|
std::string process(const std::string &username) {
|
|
RealFilesystemWrapper fs;
|
|
return process(username, fs);
|
|
}
|
|
|
|
std::string process(const std::string &username, const IFilesystemWrapper &fs) {
|
|
try {
|
|
// Check for directory traversal patterns
|
|
if (username.find("../") != std::string::npos ||
|
|
username.find("..\\") != std::string::npos ||
|
|
username.find("%2e%2e%2f") != std::string::npos ||
|
|
username.find("%2e%2e%5c") != std::string::npos ||
|
|
username.find("%2E%2E%2F") != std::string::npos ||
|
|
username.find("%2E%2E%5C") != std::string::npos ||
|
|
username.find("..%2f") != std::string::npos ||
|
|
username.find("..%5c") != std::string::npos ||
|
|
username.find("..%2F") != std::string::npos ||
|
|
username.find("..%5C") != std::string::npos) {
|
|
throw InvalidInput("Directory traversal detected in username");
|
|
}
|
|
|
|
if (username.find("/") != std::string::npos) {
|
|
throw InvalidInput("Path detected in username");
|
|
}
|
|
} catch (InvalidInput &e) {
|
|
return std::string("InvalidInput: ") + e.what() + std::string("\r\n");
|
|
}
|
|
|
|
// Attempt to open the plan file (if any) and return the contents as a string
|
|
std::filesystem::path planPath = kPATH / username;
|
|
|
|
// Check if the plan file exists using the filesystem wrapper
|
|
if (!fs.exists(planPath)) {
|
|
// If no plan file exists, return just the username
|
|
return username;
|
|
}
|
|
|
|
// Try to read the plan file using the filesystem wrapper
|
|
std::string content = fs.read_file(planPath);
|
|
|
|
if (content.empty()) {
|
|
// If file exists but is empty or couldn't be read, return just the username
|
|
return username;
|
|
}
|
|
|
|
return content;
|
|
}
|