http://www.mediafire.com/?1r6fvgm28nw9ox9
thats the source. PM me for the decrypted WORKING exe
This is the source of Cod tool not cod tool. Also version 1.5
Virus scan:
http://www.virustotal.com/url-scan/report.html?id=912e33bcbc8fba5adad38547f526837e-1312595280
Proof
Taken from On_Load event. This is the news updater i believe.
thats the source. PM me for the decrypted WORKING exe
This is the source of Cod tool not cod tool. Also version 1.5
Virus scan:
http://www.virustotal.com/url-scan/report.html?id=912e33bcbc8fba5adad38547f526837e-1312595280
Proof
Taken from On_Load event. This is the news updater i believe.
Code:
private void (object, EventArgs)
{
if ((Application.OpenForms["Main"] as .). != "1")
{
try
{
string str = this..Text.Replace("'", "").Replace("&", "and").Replace("\"", "").Replace(Environment.NewLine, " ").Trim();
string str2 = this..Text.Replace("'", "").Replace("\"", "").Replace("&", "and").Trim();
if ((str != "") && (str2 != ""))
{
this..Navigate("http://codtool.com/get.php?k=0a4d9e21f738c2c14fbf354f4b48568e&n=" + str2 + "&f=" + str);
MessageBox.Show("Message sent successfully! Thanks!");
this..Text = "";
}
else
{
MessageBox.Show("Please complete the entire form.");
}
}
catch (Exception)
{
MessageBox.Show("Could not connect to server.", "Connection Error");
}
}
else
{
MessageBox.Show("Program is currently in offline mode.\nCould not send message.", "Offline Mode");
}
}