Untitled

 avatar
unknown
plain_text
2 years ago
512 B
9
Indexable
SetConsoleTitleA("server_data.php Reader In C++");
	Client cli("http://185.255.92.58");
	string y_oke;
	auto response = cli.Post("/growtopia/server_data.php");
	y_oke = response->body;
	string fnc = "|";
	vector<string> y = split(y_oke.c_str(), fnc);
	std::string strings(y[1].c_str());
	strings = std::regex_replace(strings, std::regex("\nport"), "");
	cout << "[LOGS]server_data.php Has Parse\n";
	cout << "[IP]" + strings + "\n";
	cout << "[PORT]" + to_string(stoi(y[2])) + "\n";
	system("PAUSE");