Linux polon 4.19.0-27-amd64 #1 SMP Debian 4.19.316-1 (2024-06-25) x86_64
Apache/2.4.59 (Debian)
: 10.2.73.233 | : 3.21.244.34
Cant Read [ /etc/named.conf ]
5.6.40-64+0~20230107.71+debian10~1.gbp673146
www-data
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
/
home /
ifk /
web /
framework /
Wsat /
pages /
[ HOME SHELL ]
Name
Size
Permission
Action
layout
[ DIR ]
drwxr-xr-x
TWsatGenerateAR.page
2.77
KB
-rw-r--r--
TWsatGenerateAR.php
2.07
KB
-rw-r--r--
TWsatHome.page
700
B
-rw-r--r--
TWsatHome.php
349
B
-rw-r--r--
TWsatLogin.page
2.34
KB
-rw-r--r--
TWsatLogin.php
897
B
-rw-r--r--
TWsatScaffolding.page
94
B
-rw-r--r--
TWsatScaffolding.php
352
B
-rw-r--r--
config.xml
380
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : TWsatGenerateAR.php
<?php /** * @author Daniel Sampedro Bello <darthdaniel85@gmail.com> * @link http://www.pradosoft.com/ * @copyright Copyright © 2005-2013 PradoSoft * @license http://www.pradosoft.com/license/ * @version $Id$ * @since 3.3 * @package Wsat.pages */ Prado::using("System.Wsat.TWsatARGenerator"); class TWsatGenerateAR extends TPage { public function generate($sender) { if ($this->IsValid) { $tableName = $this->table_name->Text; $outputFolderNs = $this->output_folder->Text; $classPrefix = $this->class_prefix->Text; $classSuffix = $this->class_suffix->Text; try { $ar_generator = new TWsatARGenerator(); $ar_generator->setOpFile($outputFolderNs); $ar_generator->setClasPrefix($classPrefix); $ar_generator->setClassSufix($classSuffix); if ($this->build_rel->Checked) $ar_generator->buildRelations(); if ($tableName != "*") $ar_generator->generate($tableName); else $ar_generator->generateAll(); $this->feedback_panel->CssClass = "green_panel"; $this->generation_msg->Text = "The code has been generated successfully."; } catch (Exception $ex) { $this->feedback_panel->CssClass = "red_panel"; $this->generation_msg->Text = $ex->getMessage(); } $this->feedback_panel->Visible = true; } } public function preview($sender) { // throw new THttpException(500, "Not implemented yet."); } }
Close