⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.93
Server IP:
65.108.141.171
Server:
Linux server.heloix.com 5.4.0-214-generic #234-Ubuntu SMP Fri Mar 14 23:50:27 UTC 2025 x86_64
Server Software:
Apache
PHP Version:
7.4.33
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
usr
/
share
/
webmin
/
mysql
/
View File Name :
download.cgi
#!/usr/bin/perl # download.cgi # Output the contents of a blob field if (-r 'mysql-lib.pl') { require './mysql-lib.pl'; } else { require './postgresql-lib.pl'; } &ReadParse(); &can_edit_db($in{'db'}) || &error($text{'dbase_ecannot'}); @str = &table_structure($in{'db'}, $in{'table'}); # Get search and limiting SQL ($search, $searchhids, $searchargs) = &get_search_args(\%in); $limitsql = &get_search_limit(\%in); ($sortsql, $sorthids, $sortargs) = &get_search_sort(\%in); $d = &execute_sql($in{'db'}, "select * from "."e_table($in{'table'})." $search $limitsql $sortsql"); # Work out the MIME type based on the data $data = $d->{'data'}->[$in{'row'}]->[$in{'col'}]; if ($data =~ /^\s*(<!doctype|<html|<head|<title)/i) { $type = "text/html"; } elsif ($data =~ /^GIF89/) { $type = "image/gif"; } elsif ($data =~ /^\377\330\377\340/) { $type = "image/jpeg"; } elsif ($data =~ /^%PDF/) { $type = "application/pdf"; } elsif ($data =~ /^[\040-\176\r\n\t]+$/) { $type = "text/plain"; } else { $type = "application/octet-stream"; } print "Content-type: $type\n\n"; print $data;