summaryrefslogtreecommitdiffstats
path: root/src/Daemon/MiddleWare.cpp
diff options
context:
space:
mode:
authorJiri Moskovcak <jmoskovc@redhat.com>2010-01-28 14:40:24 +0100
committerJiri Moskovcak <jmoskovc@redhat.com>2010-01-28 14:40:24 +0100
commitc3bf1893e3ac66149e5c400dadae62478e57fb18 (patch)
tree539ef7e03f61e63ce68c5a190427e1ae15ddc5df /src/Daemon/MiddleWare.cpp
parente0b3196cfb2e02b34a7f73e5136366bcde06da99 (diff)
downloadabrt-c3bf1893e3ac66149e5c400dadae62478e57fb18.tar.gz
abrt-c3bf1893e3ac66149e5c400dadae62478e57fb18.tar.xz
abrt-c3bf1893e3ac66149e5c400dadae62478e57fb18.zip
reenabled gpg check
- we still just check only the signature of the package, which doesn't tell us if the files on the disk weren't changed, but will at least filter not official packages
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 01c3850b..ba7e0a05 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;
}
+ */
}
}