Home Files
Adminer
Execute Command
PHP Eval
Symlink
File Upload
Owner :
www-data
PHP Version
5.6.40-0+deb8u12
Disk Space
40.96 GB
Server Addr
19-www4
Your IP
10.10.10.40
Edit File
File:
#!/usr/bin/perl # listen.cgi # Convert an RMD file to WAV format require './vgetty-lib.pl'; &ReadParse(); @conf = &get_config(); $dir = $in{'mode'} ? &messages_dir(\@conf) : &receive_dir(\@conf); $in{'file'} =~ /\.\./ && &error($text{'listen_efile'}); $path = "$dir/$in{'file'}"; -r $path || &error($text{'listen_epath'}); print "Content-type: audio/wav\n\n"; $esc = quotemeta($path); open(OUT, "rmdtopvf $esc 2>/dev/null | pvftowav 2>/dev/null |"); while(read(OUT, $buf, 1024)) { print $buf; } close(OUT);