✘✘ GRAYBYTE WORDPRESS FILE MANAGER ✘✘

​🇳​​🇦​​🇲​​🇪♯➤ server.blackpussy.asia ​🇻​♯➤ 5.14.0-611.20.1.el9_7.x86_64 #1 SMP 🇾​♯➤ 2026

𝗛𝗢𝗠𝗘 𝗜𝗗 ♯➤ 163.245.207.76 ♯➤ 𝗔𝗗𝗠𝗜𝗡 𝗜𝗗 216.73.216.243
𝗢𝗣𝗧𝗜𝗢𝗡𝗦 ♯ CRL ♯➤ 𝗢𝗞 ┃ WGT ♯➤ 𝗢𝗞 ┃ SDO ♯➤ 𝗢𝗞 ┃ PKEX ♯➤ 𝗢𝗙𝗙
𝗗𝗘𝗔𝗖𝗧𝗜𝗩𝗔𝗧𝗘𝗗 ♯➤ mail,mb_send_mail
𝗖𝗨𝗥𝗥𝗘𝗡𝗧 𝗙𝗜𝗟𝗘 : /usr/share/dbus-1/interfaces//org.freedesktop.Flatpak.xml
<!DOCTYPE node PUBLIC
"-//freedesktop//DTD D-BUS Object Introspection 1.0//EN"
"http://www.freedesktop.org/standards/dbus/1.0/introspect.dtd">

<!--
 Copyright (C) 2015 Red Hat, Inc.

 This library is free software; you can redistribute it and/or
 modify it under the terms of the GNU Lesser General Public
 License as published by the Free Software Foundation; either
 version 2 of the License, or (at your option) any later version.

 This library 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
 Lesser General Public License for more details.

 You should have received a copy of the GNU Lesser General
 Public License along with this library; if not, write to the
 Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
 Boston, MA 02110-1301, USA.

 Author: Alexander Larsson <alexl@redhat.com>
-->

<node name="/" xmlns:doc="http://www.freedesktop.org/dbus/1.0/doc.dtd">
  <!--
      org.freedesktop.Flatpak.SessionHelper:
      @short_description: Flatpak session service

      The Flatpak session service is used by the
      <command>flatpak run</command> command
      to bridge various resources from the host system into Flatpak
      sandboxes. It is not intended to be contacted by third-party
      applications or libraries.

      This interface is provided on the D-Bus session bus by the
      well-known D-Bus name org.freedesktop.Flatpak,
      at the object path /org/freedesktop/Flatpak/SessionHelper.

      Note that the service owning the org.freedesktop.Flatpak
      well-known name also exports the
      org.freedesktop.Flatpak.Development interface. As a result,
      letting a sandboxed application contact that well-known name
      is a sandbox escape, which must only be allowed for trusted
      applications where there is not intended to be any security
      boundary between sandbox and host system.

      This documentation describes version 1 of this interface.
  -->
  <interface name='org.freedesktop.Flatpak.SessionHelper'>
    <!--
        version:

        The API version number.
        This documentation describes version 1 of this interface.
    -->
    <property name="version" type="u" access="read"/>

    <!--
        RequestSession:
        @data: Information about the new session

        Set up monitoring and resources for a
        <command>flatpak run</command> session.
        See the Flatpak source code for details.
    -->
    <method name="RequestSession">
      <arg type='a{sv}' name='data' direction='out'/>
    </method>
  </interface>

  <!--
      org.freedesktop.Flatpak.Development:
      @short_description: Flatpak development interface

      The Development interface lets any client, possibly in a sandbox if
      it has access to the session helper, spawn a process on the host,
      outside any sandbox.

      Clearly this is not something you typically want a sandboxed app to
      do: it is a sandbox escape allowing arbitrary code execution,
      and must not be allowed for applications where sandboxing is
      intended to be a security boundary.

      However, it is very useful when using Flatpak for distribution and
      choice of runtime library stack, without intending to create a
      security boundary. For instance, if an IDE like GNOME Builder is
      distributed as a trusted Flatpak app and will be used to build other
      Flatpak apps, it needs to use this facility to launch a Flatpak
      build operation inside the sandbox, because otherwise recursive
      calls to flatpak will not work.

      This interface is provided on the D-Bus session bus by the
      well-known D-Bus name org.freedesktop.Flatpak,
      at the object path /org/freedesktop/Flatpak/Development.

      This documentation describes version 1 of this interface.
  -->
  <interface name='org.freedesktop.Flatpak.Development'>
    <!--
        version:

        The API version number.
        This documentation describes version 1 of this interface.
    -->
    <property name="version" type="u" access="read"/>

    <!--
        HostCommand:
        @cwd_path: the working directory for the new process
        @argv: the argv for the new process, starting with the executable to launch
        @fds: an array of file descriptors to pass to the new process
        @envs: an array of variable/value pairs for the environment of the new process
        @flags: flags
        @pid: the PID of the new process

        This method lets trusted applications (insider or outside a
        sandbox) run arbitrary commands in the user's session, outside
        any sandbox.

        The following flags values are supported:

        <variablelist>
          <varlistentry>
            <term>1 (FLATPAK_HOST_COMMAND_FLAGS_CLEAR_ENV)</term>
            <listitem><para>
              Clear the environment.
            </para></listitem>
          </varlistentry>
          <varlistentry>
            <term>2 (FLATPAK_HOST_COMMAND_FLAGS_WATCH_BUS)</term>
            <listitem><para>
              Kill the sandbox when the caller disappears from the session bus.
            </para></listitem>
          </varlistentry>
        </variablelist>

        Unknown (unsupported) flags are an error and will cause HostCommand()
        to fail.

        Note that unlike org.freedesktop.portal.Flatpak.Spawn(), there
        is no options parameter here.
    -->
    <method name="HostCommand">
      <annotation name="org.gtk.GDBus.C.UnixFD" value="true"/>
      <arg type='ay' name='cwd_path' direction='in'/>
      <arg type='aay' name='argv' direction='in'/>
      <arg type='a{uh}' name='fds' direction='in'/>
      <arg type='a{ss}' name='envs' direction='in'/>
      <arg type='u' name='flags' direction='in'/>
      <arg type='u' name='pid' direction='out'/>
    </method>

    <!--
        HostCommandSignal:
        @pid: the process ID on the host system
        @signal: the signal to send (see <citerefentry><refentrytitle>signal</refentrytitle><manvolnum>7</manvolnum></citerefentry>)
        @to_process_group: whether to send the signal to the process group

        This method lets you send a Unix signal to a process
        that was started with org.freedesktop.Flatpak.Development.HostCommand().
        The @pid argument here must be a PID that was returned by a
        call to HostCommand() from the same sender: terminating unrelated
        processes is not allowed.
    -->
    <method name="HostCommandSignal">
      <arg type='u' name='pid' direction='in'/>
      <arg type='u' name='signal' direction='in'/>
      <arg type='b' name='to_process_group' direction='in'/>
    </method>

    <!--
        HostCommandExited:
        @pid: the PID of the process that has ended
        @exit_status: the wait status (see <citerefentry><refentrytitle>waitpid</refentrytitle><manvolnum>2</manvolnum></citerefentry>)

        Emitted when a process started by
        org.freedesktop.Flatpak.Development.HostCommand() exits.
        Use g_spawn_check_exit_status(), or the macros such as
        WIFEXITED documented in
        <citerefentry><refentrytitle>waitpid</refentrytitle><manvolnum>2</manvolnum></citerefentry>,
        to interpret the @exit_status.

        This signal is not emitted for processes that were not launched
        directly by HostCommand(), for example if a process launched by
        HostCommand() runs foreground or background child processes.
    -->
    <signal name="HostCommandExited">
      <arg type='u' name='pid' direction='out'/>
      <arg type='u' name='exit_status' direction='out'/>
    </signal>

  </interface>

  <!--
      org.freedesktop.Flatpak.SystemHelper:
      @short_description: Flatpak system service

      The Flatpak system service is used by the libflatpak library
      to manipulate Flatpak applications and runtimes that are installed
      system-wide, for example when implementing
      <command>flatpak install</command>.
      It is not intended to be contacted by third-party applications
      or libraries. See the Flatpak source code for more
      details of this interface's methods.

      This interface is provided on the D-Bus system bus by the
      well-known D-Bus name org.freedesktop.Flatpak.SystemHelper,
      at the object path /org/freedesktop/Flatpak/SystemHelper.

      The system helper runs as a privileged user at the system level,
      and receives method calls from less-privileged users.
      Authorization for method calls on this interface is mediated by
      polkit (formerly PolicyKit) using the policy configuration
      org.freedesktop.Flatpak.policy, and can be configured by
      system administrators in the same way as for any other system service
      that uses polkit.
  -->
  <interface name='org.freedesktop.Flatpak.SystemHelper'>
    <property name="version" type="u" access="read"/>

    <method name="Deploy">
      <arg type='ay' name='repo_path' direction='in'/>
      <arg type='u' name='flags' direction='in'/>
      <arg type='s' name='ref' direction='in'/>
      <arg type='s' name='origin' direction='in'/>
      <arg type='as' name='subpaths' direction='in'/>
      <arg type='as' name='previous_ids' direction='in'/>
      <arg type='s' name='installation' direction='in'/>
    </method>

    <method name="DeployAppstream">
      <arg type='ay' name='repo_path' direction='in'/>
      <arg type='u' name='flags' direction='in'/>
      <arg type='s' name='origin' direction='in'/>
      <arg type='s' name='arch' direction='in'/>
      <arg type='s' name='installation' direction='in'/>
    </method>

    <method name="Uninstall">
      <arg type='u' name='flags' direction='in'/>
      <arg type='s' name='ref' direction='in'/>
      <arg type='s' name='installation' direction='in'/>
    </method>

    <method name="InstallBundle">
      <arg type='ay' name='bundle_path' direction='in'/>
      <arg type='u' name='flags' direction='in'/>
      <arg type='s' name='remote' direction='in'/>
      <arg type='s' name='installation' direction='in'/>
      <arg type='s' name='ref' direction='out'/>
    </method>

    <method name="ConfigureRemote">
      <arg type='u' name='flags' direction='in'/>
      <arg type='s' name='remote' direction='in'/>
      <arg type='s' name='config' direction='in'/>
      <arg type='ay' name='gpg_key' direction='in'>
        <annotation name="org.gtk.GDBus.C.ForceGVariant" value="true"/>
      </arg>
      <arg type='s' name='installation' direction='in'/>
    </method>

    <method name="Configure">
      <arg type='u' name='flags' direction='in'/>
      <arg type='s' name='key' direction='in'/>
      <arg type='s' name='value' direction='in'/>
      <arg type='s' name='installation' direction='in'/>
    </method>

    <method name="UpdateRemote">
      <arg type='u' name='flags' direction='in'/>
      <arg type='s' name='remote' direction='in'/>
      <arg type='s' name='installation' direction='in'/>
      <arg type='ay' name='summary_path' direction='in'/>
      <arg type='ay' name='summary_sig_path' direction='in'/>
    </method>

    <method name="RemoveLocalRef">
      <arg type='u' name='flags' direction='in'/>
      <arg type='s' name='remote' direction='in'/>
      <arg type='s' name='ref' direction='in'/>
      <arg type='s' name='installation' direction='in'/>
    </method>

    <method name="PruneLocalRepo">
      <arg type='u' name='flags' direction='in'/>
      <arg type='s' name='installation' direction='in'/>
    </method>

    <method name="RunTriggers">
      <arg type='u' name='flags' direction='in'/>
      <arg type='s' name='installation' direction='in'/>
    </method>

    <method name="EnsureRepo">
      <arg type='u' name='flags' direction='in'/>
      <arg type='s' name='installation' direction='in'/>
    </method>

    <method name="UpdateSummary">
      <arg type='u' name='flags' direction='in'/>
      <arg type='s' name='installation' direction='in'/>
    </method>

    <method name="GenerateOciSummary">
      <arg type='u' name='flags' direction='in'/>
      <arg type='s' name='origin' direction='in'/>
      <arg type='s' name='installation' direction='in'/>
    </method>

    <method name="CancelPull">
      <arg type='u' name='flags' direction='in'/>
      <arg type='s' name='installation' direction='in'/>
      <arg type='s' name='src_dir' direction='in'/>
    </method>

    <method name="GetRevokefsFd">
      <annotation name="org.gtk.GDBus.C.UnixFD" value="true"/>
      <arg type='u' name='flags' direction='in'/>
      <arg type='s' name='installation' direction='in'/>
      <arg type='h' name='fd_index' direction='out'/>
      <arg type='s' name='src_dir' direction='out'/>
    </method>

  </interface>

</node>

Current_dir [ 𝗡𝗢𝗧 𝗪𝗥𝗜𝗧𝗘𝗔𝗕𝗟𝗘 ] Document_root [ 𝗪𝗥𝗜𝗧𝗘𝗔𝗕𝗟𝗘 ]

Current_dir [ 𝗡𝗢𝗧 𝗪𝗥𝗜𝗧𝗘𝗔𝗕𝗟𝗘 ] Document_root [ 𝗪𝗥𝗜𝗧𝗘𝗔𝗕𝗟𝗘 ]


[ Back ]
𝗡𝗔𝗠𝗘
𝗦𝗜𝗭𝗘
𝗟𝗔𝗦𝗧 𝗧𝗢𝗨𝗖𝗛
𝗨𝗦𝗘𝗥
𝗦𝗧𝗔𝗧𝗨𝗦
𝗙𝗨𝗡𝗖𝗧𝗜𝗢𝗡𝗦
..
--
17 Jan 2026 3.22 PM
root / root
0755
org.freedesktop.Flatpak.Authenticator.xml
12.722 KB
17 Apr 2024 5.19 PM
root / root
0644
org.freedesktop.Flatpak.xml
12.512 KB
17 Apr 2024 5.19 PM
root / root
0644
org.freedesktop.LogControl1.xml
1.927 KB
25 Jun 2026 12.27 AM
root / root
0644
org.freedesktop.RealtimeKit1.xml
2.13 KB
2 Oct 2024 9.35 PM
root / root
0644
org.freedesktop.Tracker3.Miner.Files.Index.xml
0.406 KB
11 Jun 2021 10.53 PM
root / root
0644
org.freedesktop.Tracker3.Miner.xml
2.139 KB
11 Jun 2021 10.53 PM
root / root
0644
org.freedesktop.fwupd.xml
6.023 KB
13 Apr 2026 8.35 AM
root / root
0644
org.freedesktop.hostname1.xml
4.731 KB
25 Jun 2026 12.27 AM
root / root
0644
org.freedesktop.impl.portal.Access.xml
3.727 KB
12 Nov 2019 5.55 PM
root / root
0644
org.freedesktop.impl.portal.Account.xml
3.345 KB
16 Apr 2022 8.41 PM
root / root
0644
org.freedesktop.impl.portal.AppChooser.xml
5.081 KB
9 Nov 2021 12.40 AM
root / root
0644
org.freedesktop.impl.portal.Background.xml
3.986 KB
20 Feb 2020 6.56 PM
root / root
0644
org.freedesktop.impl.portal.Email.xml
3.463 KB
20 Feb 2020 6.56 PM
root / root
0644
org.freedesktop.impl.portal.FileChooser.xml
13.445 KB
18 Apr 2021 3.55 AM
root / root
0644
org.freedesktop.impl.portal.Inhibit.xml
5.315 KB
12 Nov 2019 5.55 PM
root / root
0644
org.freedesktop.impl.portal.Lockdown.xml
1.698 KB
12 Nov 2019 5.55 PM
root / root
0644
org.freedesktop.impl.portal.Notification.xml
2.816 KB
12 Nov 2019 5.55 PM
root / root
0644
org.freedesktop.impl.portal.PermissionStore.xml
6.913 KB
9 Nov 2021 12.40 AM
root / root
0644
org.freedesktop.impl.portal.Print.xml
5.963 KB
12 Nov 2019 5.55 PM
root / root
0644
org.freedesktop.impl.portal.RemoteDesktop.xml
13.523 KB
12 Nov 2019 5.55 PM
root / root
0644
org.freedesktop.impl.portal.Request.xml
1.673 KB
12 Nov 2019 5.55 PM
root / root
0644
org.freedesktop.impl.portal.ScreenCast.xml
12.214 KB
16 Apr 2022 8.41 PM
root / root
0644
org.freedesktop.impl.portal.Screenshot.xml
4.245 KB
12 Nov 2019 5.55 PM
root / root
0644
org.freedesktop.impl.portal.Secret.xml
2.564 KB
16 Apr 2022 8.41 PM
root / root
0644
org.freedesktop.impl.portal.Session.xml
1.691 KB
12 Nov 2019 5.55 PM
root / root
0644
org.freedesktop.impl.portal.Settings.xml
3.358 KB
9 Nov 2021 12.40 AM
root / root
0644
org.freedesktop.impl.portal.Wallpaper.xml
2.228 KB
1 Aug 2022 9.40 PM
root / root
0644
org.freedesktop.locale1.xml
2.506 KB
25 Jun 2026 12.27 AM
root / root
0644
org.freedesktop.login1.Manager.xml
16.598 KB
25 Jun 2026 12.27 AM
root / root
0644
org.freedesktop.login1.Seat.xml
2.42 KB
25 Jun 2026 12.27 AM
root / root
0644
org.freedesktop.login1.Session.xml
6.233 KB
25 Jun 2026 12.27 AM
root / root
0644
org.freedesktop.login1.User.xml
3.361 KB
25 Jun 2026 12.27 AM
root / root
0644
org.freedesktop.portal.Account.xml
3.456 KB
16 Apr 2022 8.41 PM
root / root
0644
org.freedesktop.portal.Background.xml
3.939 KB
1 Aug 2022 9.40 PM
root / root
0644
org.freedesktop.portal.Camera.xml
3.054 KB
1 Aug 2022 9.40 PM
root / root
0644
org.freedesktop.portal.Device.xml
2.569 KB
24 Jun 2022 2.25 PM
root / root
0644
org.freedesktop.portal.Documents.xml
11.155 KB
1 Aug 2022 9.40 PM
root / root
0644
org.freedesktop.portal.Email.xml
4.779 KB
20 Feb 2020 6.56 PM
root / root
0644
org.freedesktop.portal.FileChooser.xml
14.801 KB
9 Nov 2021 12.40 AM
root / root
0644
org.freedesktop.portal.FileTransfer.xml
5.525 KB
1 Aug 2022 9.40 PM
root / root
0644
org.freedesktop.portal.Flatpak.xml
22.175 KB
17 Apr 2024 5.19 PM
root / root
0644
org.freedesktop.portal.GameMode.xml
8.876 KB
1 Aug 2022 9.40 PM
root / root
0644
org.freedesktop.portal.Inhibit.xml
7.114 KB
1 Aug 2022 9.40 PM
root / root
0644
org.freedesktop.portal.Location.xml
6.237 KB
1 Aug 2022 9.40 PM
root / root
0644
org.freedesktop.portal.MemoryMonitor.xml
2.021 KB
20 Feb 2020 6.56 PM
root / root
0644
org.freedesktop.portal.NetworkMonitor.xml
4.781 KB
12 Nov 2019 5.55 PM
root / root
0644
org.freedesktop.portal.Notification.xml
6.528 KB
1 Aug 2022 9.40 PM
root / root
0644
org.freedesktop.portal.OpenURI.xml
7.746 KB
1 Aug 2022 9.40 PM
root / root
0644
org.freedesktop.portal.PowerProfileMonitor.xml
1.669 KB
9 Nov 2021 12.40 AM
root / root
0644
org.freedesktop.portal.Print.xml
14.107 KB
9 Nov 2021 12.41 AM
root / root
0644
org.freedesktop.portal.ProxyResolver.xml
1.929 KB
12 Nov 2019 5.55 PM
root / root
0644
org.freedesktop.portal.Realtime.xml
2.473 KB
1 Aug 2022 9.40 PM
root / root
0644
org.freedesktop.portal.RemoteDesktop.xml
15.761 KB
1 Aug 2022 9.40 PM
root / root
0644
org.freedesktop.portal.Request.xml
3.455 KB
12 Nov 2019 5.55 PM
root / root
0644
org.freedesktop.portal.ScreenCast.xml
13.374 KB
1 Aug 2022 9.40 PM
root / root
0644
org.freedesktop.portal.Screenshot.xml
4.619 KB
1 Aug 2022 9.40 PM
root / root
0644
org.freedesktop.portal.Secret.xml
3.208 KB
1 Aug 2022 9.40 PM
root / root
0644
org.freedesktop.portal.Session.xml
2.881 KB
1 Aug 2022 9.40 PM
root / root
0644
org.freedesktop.portal.Settings.xml
3.296 KB
9 Nov 2021 12.40 AM
root / root
0644
org.freedesktop.portal.Trash.xml
1.705 KB
16 Apr 2022 8.41 PM
root / root
0644
org.freedesktop.portal.Wallpaper.xml
3.455 KB
1 Aug 2022 9.40 PM
root / root
0644
org.freedesktop.systemd1.Automount.xml
17.314 KB
25 Jun 2026 12.27 AM
root / root
0644
org.freedesktop.systemd1.Device.xml
16.704 KB
25 Jun 2026 12.27 AM
root / root
0644
org.freedesktop.systemd1.Job.xml
2.203 KB
25 Jun 2026 12.27 AM
root / root
0644
org.freedesktop.systemd1.Manager.xml
35.329 KB
25 Jun 2026 12.27 AM
root / root
0644
org.freedesktop.systemd1.Mount.xml
57.278 KB
25 Jun 2026 12.27 AM
root / root
0644
org.freedesktop.systemd1.Path.xml
17.627 KB
25 Jun 2026 12.27 AM
root / root
0644
org.freedesktop.systemd1.Scope.xml
30.264 KB
25 Jun 2026 12.27 AM
root / root
0644
org.freedesktop.systemd1.Service.xml
63.951 KB
25 Jun 2026 12.27 AM
root / root
0644
org.freedesktop.systemd1.Slice.xml
28.354 KB
25 Jun 2026 12.27 AM
root / root
0644
org.freedesktop.systemd1.Socket.xml
63.877 KB
25 Jun 2026 12.27 AM
root / root
0644
org.freedesktop.systemd1.Swap.xml
56.201 KB
25 Jun 2026 12.27 AM
root / root
0644
org.freedesktop.systemd1.Target.xml
16.639 KB
25 Jun 2026 12.27 AM
root / root
0644
org.freedesktop.systemd1.Timer.xml
18.73 KB
25 Jun 2026 12.27 AM
root / root
0644
org.freedesktop.systemd1.Unit.xml
16.574 KB
25 Jun 2026 12.27 AM
root / root
0644
org.freedesktop.timedate1.xml
2.861 KB
25 Jun 2026 12.27 AM
root / root
0644

✘✘ GRAYBYTE WORDPRESS FILE MANAGER @ 2026 CONTACT ME ✘✘
Static GIF Static GIF