summaryrefslogtreecommitdiffstats
path: root/src/Daemon/MiddleWare.cpp
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2010-01-28 15:34:08 +0100
committerDenys Vlasenko <vda.linux@googlemail.com>2010-01-28 15:34:08 +0100
commit9180163f65df24d7df684a1baa2ee3bb253bf516 (patch)
treee1ee68d387dfb4358b897d78eccee4e7e565ea17 /src/Daemon/MiddleWare.cpp
parentefb5ca1baa123a357fad58849b10fb8845cef165 (diff)
parent099f3cac8c2bf532a796468fb2950c4551c85960 (diff)
downloadabrt-9180163f65df24d7df684a1baa2ee3bb253bf516.tar.gz
abrt-9180163f65df24d7df684a1baa2ee3bb253bf516.tar.xz
abrt-9180163f65df24d7df684a1baa2ee3bb253bf516.zip
Merge branch 'master' into rhel6
Conflicts: src/Daemon/abrt.conf Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'src/Daemon/MiddleWare.cpp')
-rw-r--r--src/Daemon/MiddleWare.cpp7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/Daemon/MiddleWare.cpp b/src/Daemon/MiddleWare.cpp
index 01c3850..ba7e0a0 100644
--- a/src/Daemon/MiddleWare.cpp
+++ b/src/Daemon/MiddleWare.cpp
@@ -655,6 +655,12 @@ static mw_result_t SavePackageDescriptionToDebugDump(
log("Package '%s' isn't signed with proper key", packageName.c_str());
return MW_GPG_ERROR;
}
+ /*
+ Checking the MD5 sum requires to run prelink to "un-prelink" the
+ binaries - this is considered potential security risk so we don't
+ use it, until we find some non-intrusive way
+ */
+ /*
if (!CheckHash(packageName.c_str(), pExecutable))
{
error_msg("Executable '%s' seems to be modified, "
@@ -662,6 +668,7 @@ static mw_result_t SavePackageDescriptionToDebugDump(
pExecutable, packageName.c_str());
return MW_GPG_ERROR;
}
+ */
}
}