25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
 
 

29 satır
475 B

#include "src/system/betatest.hpp"
#include <fstream>
#include <string>
bool checkBetaTest()
{
std::string betaFlag = "7h1s_i5_n0t_a_b3t4_tE5t_k3y";
std::string tmp;
int result = -1;
try
{
std::fstream betaFile("beta.test");
if (betaFile) {
betaFile >> tmp;
result = tmp.compare("SlashRootCTF{" + betaFlag + "}");
}
}
catch(...)
{
return false;
}
return result == 0;
}