Linux v69820.1blu.de 4.15.0 #1 SMP Mon Sep 30 15:36:27 MSK 2024 x86_64
Apache/2.4.58
Server IP : 195.90.215.149 & Your IP : 216.73.216.250
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
libexec /
Delete
Unzip
Name
Size
Permission
Date
Action
coreutils
[ DIR ]
drwxr-xr-x
2026-04-26 19:49
docker
[ DIR ]
drwxr-xr-x
2024-07-09 19:56
dpkg
[ DIR ]
drwxr-xr-x
2026-07-29 12:52
gcc
[ DIR ]
drwxr-xr-x
2024-07-09 21:57
man-db
[ DIR ]
drwxr-xr-x
2024-07-10 10:54
p11-kit
[ DIR ]
drwxr-xr-x
2025-11-01 13:54
sudo
[ DIR ]
drwxr-xr-x
2026-04-26 19:49
udisks2
[ DIR ]
drwxr-xr-x
2025-11-01 13:53
at-spi-bus-launcher
30.38
KB
-rwxr-xr-x
2024-04-08 14:37
at-spi2-registryd
82.77
KB
-rwxr-xr-x
2024-04-08 14:37
dconf-service
74.23
KB
-rwxr-xr-x
2025-05-20 21:15
gcr-prompter
14.3
KB
-rwxr-xr-x
2024-04-08 14:39
gcr-ssh-agent
62.52
KB
-rwxr-xr-x
2024-04-04 14:50
gcr-ssh-askpass
18.35
KB
-rwxr-xr-x
2024-04-08 14:39
gcr4-ssh-askpass
18.35
KB
-rwxr-xr-x
2024-04-04 14:50
glib-pacrunner
22.23
KB
-rwxr-xr-x
2024-03-31 05:56
gnome-session-binary
270.91
KB
-rwxr-xr-x
2024-04-15 15:49
gnome-session-check-accelerated
18.31
KB
-rwxr-xr-x
2024-04-15 15:49
gnome-session-check-accelerated-gl-helper
22.38
KB
-rwxr-xr-x
2024-04-15 15:49
gnome-session-check-accelerated-gles-helper
14.38
KB
-rwxr-xr-x
2024-04-15 15:49
gnome-session-ctl
18.38
KB
-rwxr-xr-x
2024-04-15 15:49
gnome-session-failed
22.31
KB
-rwxr-xr-x
2024-04-15 15:49
gnome-terminal-preferences
178.45
KB
-rwxr-xr-x
2024-03-31 06:13
gnome-terminal-server
322.91
KB
-rwxr-xr-x
2024-03-31 06:13
gvfs-udisks2-volume-monitor
182.97
KB
-rwxr-xr-x
2026-03-18 16:12
gvfsd
38.3
KB
-rwxr-xr-x
2026-03-18 16:12
gvfsd-burn
38.3
KB
-rwxr-xr-x
2026-03-18 16:12
gvfsd-computer
46.44
KB
-rwxr-xr-x
2026-03-18 16:12
gvfsd-localtest
46.3
KB
-rwxr-xr-x
2026-03-18 16:12
gvfsd-metadata
66.38
KB
-rwxr-xr-x
2026-03-18 16:12
gvfsd-trash
54.3
KB
-rwxr-xr-x
2026-03-18 16:12
packagekit-direct
134.3
KB
-rwxr-xr-x
2026-04-20 12:20
packagekitd
298.51
KB
-rwxr-xr-x
2026-04-20 12:20
pk-debconf-helper
14.3
KB
-rwxr-xr-x
2026-04-20 12:20
pk-offline-update
26.3
KB
-rwxr-xr-x
2026-04-20 12:20
polkit-agent-helper-1
18.3
KB
-rwsr-xr-x
2026-04-10 10:57
run-systemd-session
1.61
KB
-rwxr-xr-x
2024-04-09 05:24
ubuntu-advantage-desktop-daemon
62.23
KB
-rwxr-xr-x
2024-10-04 16:05
upowerd
142.44
KB
-rwxr-xr-x
2024-04-08 07:42
vte-urlencode-cwd
14.15
KB
-rwxr-xr-x
2024-06-12 14:26
xdg-desktop-portal
872.86
KB
-rwxr-xr-x
2026-04-23 21:56
xdg-desktop-portal-gtk
306.63
KB
-rwxr-xr-x
2024-03-31 17:28
xdg-desktop-portal-rewrite-launchers
22.31
KB
-rwxr-xr-x
2026-04-23 21:56
xdg-desktop-portal-validate-icon
14.42
KB
-rwxr-xr-x
2026-04-23 21:56
xdg-document-portal
190.98
KB
-rwxr-xr-x
2026-04-23 21:56
xdg-permission-store
78.59
KB
-rwxr-xr-x
2026-04-23 21:56
Save
Rename
#!/bin/sh set -e # some old Qt programs still check this long-deprecated env var dbus-update-activation-environment --systemd GNOME_DESKTOP_SESSION_ID=this-is-deprecated # stop any lingering active units from a previous session systemctl --user stop graphical-session.target graphical-session-pre.target # robustness: if the previous graphical session left some failed units, # reset them so that they don't break this startup for unit in $(systemctl --user --no-legend --state=failed list-units | cut -f1 -d' '); do if [ "$(systemctl --user show -p PartOf --value $unit)" = "graphical-session.target" ]; then systemctl --user reset-failed $unit fi done # FIXME: synthesize After=graphical-session-pre.target dependencies until this # can be done declaratively (https://github.com/systemd/systemd/issues/3750) # This could be a generator, but we don't want to penalize non-graphical logins # with this. systemctl --user list-unit-files --no-legend | while read unit status _; do [ "${unit%.service}" != "$unit" ] || continue [ "$status" != "$disabled" ] || continue if [ "$(systemctl --user show -p PartOf --value $unit)" = "graphical-session.target" ]; then mkdir -p "$XDG_RUNTIME_DIR/systemd/user/${unit}.d" printf '[Unit]\nAfter=graphical-session-pre.target\n' > "$XDG_RUNTIME_DIR/systemd/user/${unit}.d/graphical-session-pre.conf" fi done systemctl --user daemon-reload systemctl --user start --wait "$1" dbus-update-activation-environment --systemd GNOME_DESKTOP_SESSION_ID= # Delay killing the X server until all graphical units stopped systemctl --user stop graphical-session-pre.target