Sign Up
Log In
Log In
or
Sign Up
Places
All Projects
Status Monitor
Collapse sidebar
openSUSE:11.4
rpmlint
CheckDBUSServices.py
Overview
Repositories
Revisions
Requests
Users
Attributes
Meta
File CheckDBUSServices.py of Package rpmlint
# vim:sw=4:et ############################################################################# # File : CheckDBUSServices.py # Package : rpmlint # Author : Ludwig Nussel # Purpose : Check for DBUS services that are not authorized by the security team ############################################################################# # http://techbase.kde.org/Development/Tutorials/D-Bus/Autostart_Services from Filter import * import AbstractCheck import re import os import string SERVICES_WHITELIST = Config.getOption('DBUSServices.WhiteList', ()) # set of file names # need to end with / so we don't catch directories _dbus_system_paths = [ "/usr/share/dbus-1/system-services/", "/etc/dbus-1/system.d/" ] class DBUSServiceCheck(AbstractCheck.AbstractCheck): def __init__(self): AbstractCheck.AbstractCheck.__init__(self, "CheckDBUSServices") def check(self, pkg): global SERVICES_WHITELIST global _dbus_system_paths if pkg.isSource(): return files = pkg.files() for f in files: if f in pkg.ghostFiles(): continue for p in _dbus_system_paths: if f.startswith(p): bn = f[len(p):] if not bn in SERVICES_WHITELIST: printError(pkg, "suse-dbus-unauthorized-service", f) check=DBUSServiceCheck() if Config.info: addDetails( 'suse-dbus-unauthorized-service', """The package installs a DBUS system service file. If the package is intended for inclusion in any SUSE product please open a bug report to request review of the service by the security team.""", )
Locations
Projects
Search
Status Monitor
Help
OpenBuildService.org
Documentation
API Documentation
Code of Conduct
Contact
Support
@OBShq
Terms
openSUSE Build Service is sponsored by
The Open Build Service is an
openSUSE project
.
Sign Up
Log In
Places
Places
All Projects
Status Monitor