Skip to content

Commit

Permalink
Fixed typos.
Browse files Browse the repository at this point in the history
  • Loading branch information
JusticeRage committed Mar 14, 2018
1 parent bd6cf44 commit 236ce91
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions plugins/plugin_authenticode/plugin_authenticode_commons.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ void check_version_info(const mana::PE& pe, pResult res)
auto found_strings = m->at(0)->get_found_strings();
if (found_strings.size() > 0)
{
res->set_summary("The programs tries to mislead users about its origins.");
res->set_summary("The program tries to mislead users about its origins.");
if ((m->at(0)->get_metadata()["type"] == "homograph")) {
res->add_information("The PE uses homographs to impersonate a well known company!");
}
Expand All @@ -71,10 +71,10 @@ void check_version_info(const mana::PE& pe, pResult res)
<< " but is not signed!";
res->add_information(ss.str());
}

res->raise_level(MALICIOUS);
}
}
}

} // namespace plugin
} // namespace plugin
2 changes: 1 addition & 1 deletion plugins/plugin_virustotal/plugin_virustotal.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ class VirusTotalPlugin : public IPlugin
else if (it->value_.get_int() == -2) // Response Code = -2: scan queued.
{
res->set_summary("No VirusTotal score.");
res->add_information("A scan if the file is currently queued.");
res->add_information("A scan of the file is currently queued.");
return res;
}
}
Expand Down

0 comments on commit 236ce91

Please sign in to comment.