From 3978d5582c4fc3b7735776e174ba0157cb0347ac Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tuncay=20=C3=87OLAK?= Date: Wed, 16 Sep 2020 09:59:52 +0300 Subject: [PATCH] Syncing /usr/share/ahenk to src and recreating ahenk.install --- .../base/default_policy/default_policy.py | 65 ++++---- .../ahenk/base/registration/registration.py | 1 + usr/share/ahenk/base/util/util.py | 11 +- usr/share/ahenk/plugins/browser/policy.py | 5 +- usr/share/ahenk/plugins/conky/policy.py | 12 +- usr/share/ahenk/plugins/conky/safe.py | 6 +- usr/share/ahenk/plugins/ldap/rename_entry.py | 64 +++++--- .../plugins/remote-access/setup-vnc-server.py | 139 +++++++++--------- 8 files changed, 159 insertions(+), 144 deletions(-) diff --git a/usr/share/ahenk/base/default_policy/default_policy.py b/usr/share/ahenk/base/default_policy/default_policy.py index 7b8c345..9da2b6c 100644 --- a/usr/share/ahenk/base/default_policy/default_policy.py +++ b/usr/share/ahenk/base/default_policy/default_policy.py @@ -41,78 +41,65 @@ class DefaultPolicy: self.logger.error('Firefox installation path not found') self.logger.info("if mozilla profile is not created run firefox to create profile for user: " + username) - if not Util.is_exist("/home/" + username + "/.mozilla/"): + homedir = self.util.get_homedir(username) + self.logger.info("Get home directory is {0} of {1} for firefox default policy".format(homedir, username)) + if not Util.is_exist("{0}/.mozilla/".format(homedir)): self.logger.info("firefox profile does not exist. Check autostart file.") - if not Util.is_exist("/home/" + username + "/.config/autostart/"): + if not Util.is_exist("{0}/.config/autostart/".format(homedir)): self.logger.info(".config/autostart folder does not exist. Creating folder.") - Util.create_directory("/home/" + username + "/.config/autostart/") + Util.create_directory("{0}/.config/autostart/".format(homedir)) else: self.logger.info(".config/autostart folder exists.") - self.logger.info( - "Checking if {0}-autostart-for-profile.desktop autorun file exists.".format(exec_command)) + self.logger.info("Checking if {0}-autostart-for-profile.desktop autorun file exists.".format(exec_command)) - if not Util.is_exist( - "/home/" + username + "/.config/autostart/{0}-autostart-for-profile.desktop".format(exec_command)): - self.logger.info( - "{0}-autostart-for-profile.desktop autorun file does not exists. Creating file.".format( - exec_command)) - Util.create_file( - "/home/" + username + "/.config/autostart/{0}-autostart-for-profile.desktop".format(exec_command)) + if not Util.is_exist("{0}/.config/autostart/{1}-autostart-for-profile.desktop".format(homedir, exec_command)): + self.logger.info("{0}-autostart-for-profile.desktop autorun file does not exists. Creating file.".format(exec_command)) + Util.create_file("{0}/.config/autostart/{1}-autostart-for-profile.desktop".format(homedir, exec_command)) content = "[Desktop Entry]\n\n" \ "Type=Application\n\n" \ "Exec={0}{1} www.liderahenk.org".format(firefox_path, exec_command) - Util.write_file( - "/home/" + username + "/.config/autostart/{0}-autostart-for-profile.desktop".format(exec_command), - content) - self.logger.info( - "Autorun config is written to {0}-autostart-for-profile.desktop.".format(exec_command)) + Util.write_file("{0}/.config/autostart/{1}-autostart-for-profile.desktop".format(homedir, exec_command), content) + self.logger.info("Autorun config is written to {0}-autostart-for-profile.desktop.".format(exec_command)) else: self.logger.info("{0}-autostart-for-profile.desktop exists".format(exec_command)) else: self.logger.info(".mozilla firefox profile path exists. Delete autorun file.") - Util.delete_file( - "/home/" + username + "/.config/autostart/{0}-autostart-for-profile.desktop".format(exec_command)) - + Util.delete_file("{0}/.config/autostart/{1}-autostart-for-profile.desktop".format(homedir, exec_command)) ## disabled update package notify for user def disable_update_package_notify(self, username): - + homedir = self.util.get_homedir(username) + self.logger.info("Get home directory is {0} of {1} for disable update package notify".format(homedir, username)) xfce4_notify_template_path = "/usr/share/ahenk/base/default_policy/config-files/xfce4-notifyd.xml" - - fileName = "/home/{0}/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-notifyd.xml".format(username) + fileName = "{0}/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-notifyd.xml".format(homedir) if not self.util.is_exist(fileName): ## if configuration file does not exist will be create /home/{username}/.config/xfce4/xfconf/xfce-perchannel-xml/ self.logger.info("Configuration file does not exist") - self.util.create_directory("/home/{0}/.config/xfce4/xfconf/xfce-perchannel-xml/".format(username)) - self.logger.info("Created directory /home/{0}/.config/xfce4/xfconf/xfce-perchannel-xml/".format(username)) - self.util.copy_file(xfce4_notify_template_path, "/home/{0}/.config/xfce4/xfconf/xfce-perchannel-xml/".format(username)) + self.util.create_directory("{0}/.config/xfce4/xfconf/xfce-perchannel-xml/".format(homedir)) + self.logger.info("Created directory {0}/.config/xfce4/xfconf/xfce-perchannel-xml/".format(homedir)) + self.util.copy_file(xfce4_notify_template_path, "{0}/.config/xfce4/xfconf/xfce-perchannel-xml/".format(homedir)) self.logger.info("Copy xfce4-notifyd.xml template file") - gid = self.util.file_group("/home/{0}".format(username)) - cmd = "chown -R {0}:{1} /home/{0}/.config".format(username, gid) + gid = self.util.file_group(homedir) + cmd = "chown -R {0}:{1} {2}/.config".format(username, gid, homedir) self.util.execute(cmd) - self.logger.info("Set permissons for /home/{0}.config directory".format(username)) - - self.notifyd_xml_parser(username) + self.logger.info("Set permissons for {0}/.config directory".format(homedir)) + self.notifyd_xml_parser(username, homedir) else: self.logger.info("Configuration file exist") - self.notifyd_xml_parser(username) - + self.notifyd_xml_parser(username, homedir) pk_update_icon_file = "/etc/xdg/autostart/pk-update-icon.desktop" if self.util.is_exist(pk_update_icon_file): self.logger.info("{0} file exists".format(pk_update_icon_file)) self.util.rename_file(pk_update_icon_file, pk_update_icon_file+".ahenk") self.logger.info("Renamed from {0} to {0}.ahenk".format(pk_update_icon_file)) self.logger.info("Disabled autostart for pk-update-icon") - else: self.logger.info("File not found") - self.logger.info("Disable notifications if there is a package update notification for user: " + username) - def notifyd_xml_parser(self, username): - - fileName = "/home/{0}/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-notifyd.xml".format(username) + def notifyd_xml_parser(self, username, homedir): + fileName = "{0}/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-notifyd.xml".format(homedir) tree = ET.parse(fileName) root = tree.getroot() app_name_for_blocking = "pk-update-icon" @@ -144,4 +131,4 @@ class DefaultPolicy: new_element.attrib["value"] = app_name_for_blocking tree.write(fileName) else: - self.logger.info("'" + app_name_for_blocking + "' is already added to muted_applications tag.") \ No newline at end of file + self.logger.info("'" + app_name_for_blocking + "' is already added to muted_applications tag.") diff --git a/usr/share/ahenk/base/registration/registration.py b/usr/share/ahenk/base/registration/registration.py index 93c9e73..8058e25 100644 --- a/usr/share/ahenk/base/registration/registration.py +++ b/usr/share/ahenk/base/registration/registration.py @@ -280,6 +280,7 @@ class Registration: System.Hardware.BaseBoard.product_name()[0] == 0 else 'n/a', 'hardware.baseboard.serialNumber': System.Hardware.BaseBoard.serial_number()[1].replace('\n', '') if System.Hardware.BaseBoard.serial_number()[0] == 0 else 'n/a', + 'processor': System.Hardware.Cpu.brand(), } return json.dumps(params) diff --git a/usr/share/ahenk/base/util/util.py b/usr/share/ahenk/base/util/util.py index 0be4356..3e5cb1e 100644 --- a/usr/share/ahenk/base/util/util.py +++ b/usr/share/ahenk/base/util/util.py @@ -14,6 +14,7 @@ import subprocess import uuid import locale from base.scope import Scope +from os.path import expanduser class Util: @@ -450,8 +451,12 @@ class Util: result_code, p_out, p_err = Util.execute("ls {}".format(xfce4_session)) if result_code == 0: desktop_env = "xfce" - return desktop_env - - + # return home directory for user. "/home/username" + @staticmethod + def get_homedir(user): + try: + return expanduser("~{0}".format(user)) + except: + raise diff --git a/usr/share/ahenk/plugins/browser/policy.py b/usr/share/ahenk/plugins/browser/policy.py index 6c51fea..9d7cfd8 100644 --- a/usr/share/ahenk/plugins/browser/policy.py +++ b/usr/share/ahenk/plugins/browser/policy.py @@ -131,7 +131,10 @@ class Browser(AbstractPlugin): def find_user_preference_paths(self, user_name): paths = [] - firefox_path = '/home/' + user_name + '/.mozilla/firefox/' + homedir = self.get_homedir(user_name) + self.logger.info("Get home directory is {0} of {1} for firefox policy".format(homedir, user_name)) + firefox_path = '{0}/.mozilla/firefox/'.format(homedir) + self.logger.info("Firefox path is {0}".format(firefox_path)) if self.is_exist(firefox_path + 'profiles.ini'): profile_ini_file = open(firefox_path + 'profiles.ini', 'r') profile_ini_file_lines = profile_ini_file.readlines() diff --git a/usr/share/ahenk/plugins/conky/policy.py b/usr/share/ahenk/plugins/conky/policy.py index 539b089..cd8ea15 100644 --- a/usr/share/ahenk/plugins/conky/policy.py +++ b/usr/share/ahenk/plugins/conky/policy.py @@ -20,6 +20,7 @@ class Conky(AbstractPlugin): self.autostart_dir_path = '{0}.config/autostart/' self.autorun_file_path = '{0}conky.desktop' self.logger.debug('Parameters were initialized.') + self.homedir = None def handle_policy(self): try: @@ -36,7 +37,9 @@ class Conky(AbstractPlugin): if 'username' in self.context.data and self.context.get('username') is not None: self.logger.debug('This is user profile, parameters reinitializing.') self.username = self.context.get('username') - self.conky_config_file_dir = '{0}.conky/'.format(self.Sessions.user_home_path(self.username)) + self.homedir = self.get_homedir(self.username) + '/' + self.logger.info("Get home directory of {0}".format(self.homedir)) + self.conky_config_file_dir = '{0}.conky/'.format(self.homedir) self.conky_config_file_path = '{0}conky.conf'.format(self.conky_config_file_dir) self.machine_profile = False @@ -110,15 +113,14 @@ class Conky(AbstractPlugin): if self.Sessions.user_name() is not None and len(self.Sessions.user_name()) > 0: for username in self.Sessions.user_name(): self.logger.debug('Removing conf file of user {0}'.format(username)) - self.delete_file(self.autorun_file_path.format( self.autostart_dir_path.format(self.Sessions.user_home_path(username)))) + self.delete_file(self.autorun_file_path.format( self.autostart_dir_path.format(self.homedir))) else: self.logger.debug('There are no user') else: - home_path = self.Sessions.user_home_path(self.username) self.logger.debug('Creating autorun file for user {0}'.format(self.username)) - self.create_autorun_file(self.autostart_dir_path.format(home_path), + self.create_autorun_file(self.autostart_dir_path.format(self.homedir), self.conky_config_file_path, - self.autorun_file_path.format(self.autostart_dir_path.format(home_path))) + self.autorun_file_path.format(self.autostart_dir_path.format(self.homedir))) self.logger.debug('Autorun created') def create_autorun_file(self, autostart_path, conky_config_file_path, autorun_file_path): diff --git a/usr/share/ahenk/plugins/conky/safe.py b/usr/share/ahenk/plugins/conky/safe.py index 8429d9d..f9b3329 100644 --- a/usr/share/ahenk/plugins/conky/safe.py +++ b/usr/share/ahenk/plugins/conky/safe.py @@ -17,7 +17,8 @@ class Safe(AbstractPlugin): self.logger.debug('Conky named processes will be killed.') self.execute('killall -9 conky') # delete autostart and conky config file of logout username - self.conky_config_file_dir = '{0}.conky/'.format(self.Sessions.user_home_path(self.username)) + self.homedir = self.get_homedir(self.username) + '/' + self.conky_config_file_dir = '{0}.conky/'.format(self.homedir) self.conky_config_file_path = '{0}conky.conf'.format(self.conky_config_file_dir) if self.is_exist(self.conky_config_file_dir): self.logger.debug('Conky config file will be deleted of {0}.'.format(self.username)) @@ -25,8 +26,7 @@ class Safe(AbstractPlugin): self.autostart_dir_path = '{0}.config/autostart/' self.autorun_file_path = '{0}conky.desktop' - home_path = self.Sessions.user_home_path(self.username) - auto_start_file = self.autorun_file_path.format(self.autostart_dir_path.format(home_path)) + auto_start_file = self.autorun_file_path.format(self.autostart_dir_path.format(self.homedir)) if self.is_exist(auto_start_file): self.delete_file(auto_start_file) self.logger.debug('Removing autostart file of user {0}'.format(self.username)) diff --git a/usr/share/ahenk/plugins/ldap/rename_entry.py b/usr/share/ahenk/plugins/ldap/rename_entry.py index 4d7c71b..ef13d68 100644 --- a/usr/share/ahenk/plugins/ldap/rename_entry.py +++ b/usr/share/ahenk/plugins/ldap/rename_entry.py @@ -1,50 +1,74 @@ #!/usr/bin/python3 # -*- coding: utf-8 -*- # Author: Edip YILDIZ -# Author: Tuncay ÇOLAK +# Author: Hasan Kara from base.model.enum.content_type import ContentType import json, threading - - from base.plugin.abstract_plugin import AbstractPlugin - -import threading +from base.scope import Scope -class UpdateEntry(AbstractPlugin): +class RenameEntry(AbstractPlugin): def __init__(self, data, context): super(AbstractPlugin, self).__init__() + scope = Scope().get_instance() self.data = data self.context = context self.logger = self.get_logger() self.message_code = self.get_message_code() + self.conf_manager = scope.get_configuration_manager() + self.hostname_file = '/etc/hostname' - - - def update_dn(self, jid, newDn): - cols = ['dn']; - values = [newDn] - return self.db_service.update('registration', cols, values, 'jid=\''+jid+'\'') + def update_dn(self, old_cn, new_cn, new_dn): + return self.db_service.update('registration', ['jid', 'dn'], [new_cn, new_dn], ' jid = ' + '\'' + old_cn + '\'') def handle_task(self): try: - dn = self.data['dn'] - jid= self.db_service.select_one_result('registration','jid','registered = 1') + old_dn = self.data['dn'] + old_cn = self.data['old_cn'] + new_cn = self.data['new_cn'] + directory_server = self.data['directory_server'] + new_dn = str(old_dn).replace(old_cn, new_cn) + + self.logger.debug('Renaming hostname from: ' + old_cn + " to: " + new_cn) + self.write_file(self.hostname_file, new_cn) - cn = self.data['oldCn'] - newCn = self.data['newCn'] + ## update agent db + jid = self.db_service.select_one_result('registration','jid','registered = 1') + new_dn = str(old_dn).replace(old_cn, new_cn) - newDn=str(dn).replace(cn,newCn) + self.update_dn(old_cn, new_cn, new_dn) + if directory_server == "LDAP": + # update SSSD conf agent DN + sssd_config_file_path = "/etc/sssd/sssd.conf" + file_sssd = open(sssd_config_file_path, 'r') + file_data = file_sssd.read() + old_dn_in_sssd = "" + new_dn_in_sssd = "ldap_default_bind_dn = " + new_dn + "\n" + with open(sssd_config_file_path) as fp: + for line in fp: + if line.startswith('ldap_default_bind_dn'): + old_dn_in_sssd = line + file_data = file_data.replace(old_dn_in_sssd, new_dn_in_sssd) - self.update_dn(jid,newDn) + file_sssd.close() + file_sssd = open(sssd_config_file_path, 'w') + file_sssd.write(file_data) + file_sssd.close() + # update ahenk.conf + self.conf_manager.set('CONNECTION', 'uid', new_cn) + with open('/etc/ahenk/ahenk.conf', 'w') as configfile: + self.conf_manager.write(configfile) + self.context.create_response(code=self.message_code.TASK_PROCESSED.value, message='Ahenk adı başarı ile değiştirildi.', - data=json.dumps({'Dn': newDn}), + data=json.dumps({'Dn': new_dn}), content_type=ContentType.APPLICATION_JSON.value) + self.execute("systemctl restart ahenk.service") except Exception as e: @@ -55,5 +79,5 @@ class UpdateEntry(AbstractPlugin): def handle_task(task, context): - cls = UpdateEntry(task, context) + cls = RenameEntry(task, context) cls.handle_task() diff --git a/usr/share/ahenk/plugins/remote-access/setup-vnc-server.py b/usr/share/ahenk/plugins/remote-access/setup-vnc-server.py index c46abc5..82c5065 100644 --- a/usr/share/ahenk/plugins/remote-access/setup-vnc-server.py +++ b/usr/share/ahenk/plugins/remote-access/setup-vnc-server.py @@ -5,10 +5,8 @@ import json import time from base64 import b64encode from os import urandom - from base.plugin.abstract_plugin import AbstractPlugin - class SetupVnc(AbstractPlugin): """docstring for SetupVnc""" @@ -21,7 +19,6 @@ class SetupVnc(AbstractPlugin): self.port = self.get_port_number() self.logger.debug('Parameters were initialized') - def handle_task(self): self.logger.debug('Handling task') try: @@ -33,7 +30,6 @@ class SetupVnc(AbstractPlugin): self.data['password'] = self.password self.data['host'] = ip_addresses self.logger.debug('Response data created') - if self.data['permission'] == "yes": message = "VNC başarılı bir şekilde yapılandırıldı!\n{0} ip'li bilgisayara uzak erişim sağlanacaktır.\nKullanıcısının izni için lütfen bekleyiniz...'".format(self.data['host']) elif self.data['permission'] == "no": @@ -52,83 +48,83 @@ class SetupVnc(AbstractPlugin): message='VNC sunucusu çalışırken bir hata oluştu.') def run_vnc_server(self): + user_name = self.db_service.select_one_result('session', 'username', " 1=1 order by id desc ") + self.logger.info('get logon username is {0}'.format(user_name)) + self.logger.debug('Is VNC server installed?') + if self.is_installed('x11vnc') is False: + self.logger.debug('VNC server not found, it is installing') + self.install_with_apt_get('x11vnc') - users = self.Sessions.user_name() - self.logger.debug('[XMessage] users : ' + str(users)) + self.logger.debug('VNC server was installed') + self.logger.debug('Killing running VNC proceses') + self.execute("ps aux | grep x11vnc | grep 'port " + self.port + "' | awk '{print $2}' | xargs kill -9", + result=False) + self.logger.debug('Running VNC proceses were killed') + self.logger.debug('Getting display and username...') + display_number = self.get_username_display(user_name) + # if len(arr) < 1: + # raise NameError('Display not found!') - for user in users: - user_display = self.Sessions.display(user) + # params = str(arr[0]).split(' ') + homedir = self.get_homedir(user_name) + self.logger.info("Get home directory of {0} is {1}".format(user_name, homedir)) + # self.logger.info("--------->>>> " + str(params)) + self.logger.debug('Username:{0} Display:{1}'.format(user_name, display_number)) + if self.is_exist('{0}/.vncahenk{1}'.format(homedir, user_name)) is True: + self.delete_folder('{0}/.vncahenk{1}'.format(homedir, user_name)) + self.logger.debug('Cleaning previous configurations.') + self.logger.debug('Creating user VNC conf file as user') + self.execute('su - {0} -c "mkdir -p {1}/.vncahenk{0}"'.format(user_name, homedir), result=False) + self.logger.debug('Creating password as user') + self.execute('su - {0} -c "x11vnc -storepasswd {1} {2}/.vncahenk{3}/x11vncpasswd"'.format(user_name, self.password, homedir, + user_name), result=False) + self.logger.debug('Running VNC server as user.') + if self.data['permission'] == "yes": + self.send_notify("Liderahenk", + "Lider Ahenk Sistem Yoneticisi tarafindan\n5 sn sonra bilgisayarınıza uzak erişim sağlanacaktır.\nBağlantı kapatıldıktan sonra ayrıca bilgilendirilecektir.", + ":0", user_name, timeout=50000) + time.sleep(5) + self.execute('su - {0} -c "x11vnc -accept \'popup\' -gone \'popup\' -rfbport {1} -rfbauth {2}/.vncahenk{0}/x11vncpasswd -o {2}/.vncahenk{3}/vnc.log -display :{4}"'.format( + user_name, self.port, homedir, user_name, display_number), result=False) + elif self.data["permission"] == "no": + self.logger.info("Lider Ahenk sistem yöneticisi 5 sn sonra bilgisayarınıza uzak erişim sağlayacaktır. ") + self.send_notify("Liderahenk", + "Lider Ahenk Sistem Yoneticisi tarafindan\n5 sn sonra bilgisayarınıza uzak erişim sağlanacaktır.\nBağlantı kapatıldıktan sonra ayrıca bilgilendirilecektir.", + ":0", user_name, timeout=50000) + time.sleep(5) + self.execute('su - {0} -c "x11vnc -gone \'popup\' -rfbport {1} -rfbauth {2}/.vncahenk{0}/x11vncpasswd -o {2}/.vncahenk{3}/vnc.log -display :{4}"'.format( + user_name, self.port, homedir, user_name, display_number), result=False) + else: + self.execute('su - {0} -c "x11vnc -rfbport {1} -rfbauth {2}/.vncahenk{0}/x11vncpasswd -o {2}/.vncahenk{3}/vnc.log -display :{4}"'.format( + user_name, self.port, homedir, user_name, display_number), result=False) + self.logger.info("Lider Ahenk sistem yöneticisi tarafından kullanıcı izni ve bildirim gerektirmeksizin uzak erişim sağlanmıştır") - self.logger.debug('Is VNC server installed?') + def get_username_display(self, user): + # result_code, p_out, p_err = self.execute("who | awk '{print $1, $5}' | sed 's/(://' | sed 's/)//'", result=True) + # self.logger.debug('Getting display result code:{0}'.format(str(result_code))) + # + # result = [] + # lines = str(p_out).split('\n') + # for line in lines: + # arr = line.split(' ') + # if len(arr) > 1 and str(arr[1]).isnumeric() is True: + # result.append(line) + # return result - if self.is_installed('x11vnc') is False: - self.logger.debug('VNC server not found, it is installing') - self.install_with_apt_get('x11vnc') - - self.logger.debug('VNC server was installed') - self.logger.debug('Killing running VNC proceses') - self.execute("ps aux | grep x11vnc | grep 'port " + self.port + "' | awk '{print $2}' | xargs kill -9", - result=False) - self.logger.debug('Running VNC proceses were killed') - self.logger.debug('Getting display and username...') - - arr = self.get_username_display() - - if len(arr) < 1: - raise NameError('Display not found!') - - params = str(arr[0]).split(' ') - - self.logger.info("--------->>>> "+str(params)) - - self.logger.debug('Username:{0} Display:{1}'.format(params[0], params[1])) - - if self.is_exist('/home/{0}/.vncahenk{0}'.format(params[0])) is True: - self.logger.debug('Cleaning previous configurations.') - # self.delete_folder('/home/{0}/.vncahenk{0}'.format(params[0])) - - self.logger.debug('Creating user VNC conf file as user') - self.execute('su - {0} -c "mkdir -p /home/{0}/.vncahenk{1}"'.format(params[0], params[0]), result=False) - - self.logger.debug('Creating password as user') - self.execute('su - {0} -c "x11vnc -storepasswd {1} /home/{0}/.vncahenk{2}/x11vncpasswd"'.format(params[0], self.password, params[0]), result=False) - - self.logger.debug('Running VNC server as user.') - - if self.data['permission'] == "yes": - self.send_notify("Liderahenk", "Lider Ahenk Sistem Yoneticisi tarafindan\n5 sn sonra bilgisayarınıza uzak erişim sağlanacaktır.\nBağlantı kapatıldıktan sonra ayrıca bilgilendirilecektir.",":0", params[0], timeout=50000) - time.sleep(5) - - self.execute('su - {0} -c "x11vnc -accept \'popup\' -gone \'popup\' -rfbport {1} -rfbauth /home/{0}/.vncahenk{2}/x11vncpasswd -o /home/{0}/.vncahenk{3}/vnc.log -display :{4}"'.format( - params[0], self.port, params[0], params[0], params[1]), result=False) - elif self.data["permission"] == "no": - - self.logger.info("Lider Ahenk sistem yöneticisi 5 sn sonra bilgisayarınıza uzak erişim sağlayacaktır. ") - - self.send_notify("Liderahenk", "Lider Ahenk Sistem Yoneticisi tarafindan\n5 sn sonra bilgisayarınıza uzak erişim sağlanacaktır.\nBağlantı kapatıldıktan sonra ayrıca bilgilendirilecektir.", ":0", params[0], timeout=50000) - time.sleep(5) - - self.execute('su - {0} -c "x11vnc -gone \'popup\' -rfbport {1} -rfbauth /home/{0}/.vncahenk{2}/x11vncpasswd -o /home/{0}/.vncahenk{3}/vnc.log -display :{4}"'.format( - params[0], self.port, params[0], params[0], params[1]), result=False) - - else: - self.execute( - 'su - {0} -c "x11vnc -rfbport {1} -rfbauth /home/{0}/.vncahenk{2}/x11vncpasswd -o /home/{0}/.vncahenk{3}/vnc.log -display :{4}"'.format( - params[0], self.port, params[0], params[0], params[1]), result=False) - self.logger.info("Lider Ahenk sistem yöneticisi tarafından kullanıcı izni ve bildirim gerektirmeksizin uzak erişim sağlanmıştır") - - def get_username_display(self): result_code, p_out, p_err = self.execute("who | awk '{print $1, $5}' | sed 's/(://' | sed 's/)//'", result=True) - - self.logger.debug('Getting display result code:{0}'.format(str(result_code))) - + display_number = None result = [] lines = str(p_out).split('\n') for line in lines: arr = line.split(' ') if len(arr) > 1 and str(arr[1]).isnumeric() is True: result.append(line) - return result + for res in result: + arr = res.split(" ") + username = arr[0] + if username == user: + display_number = arr[1] + return display_number def create_password(self, pass_range): self.logger.debug('Password created') @@ -139,9 +135,6 @@ class SetupVnc(AbstractPlugin): self.logger.debug('Target port is 5999') return '5999' - - def handle_task(task, context): vnc = SetupVnc(task, context) vnc.handle_task() -