? Fallagassrini

Fallagassrini Bypass Shell

echo"
Fallagassrini
";
Current Path : /home1/savoy/public_html/savoyglobal.net/busybees/application/views/settings/

Linux gator3171.hostgator.com 4.19.286-203.ELK.el7.x86_64 #1 SMP Wed Jun 14 04:33:55 CDT 2023 x86_64
Upload File :
Current File : /home1/savoy/public_html/savoyglobal.net/busybees/application/views/settings/edit_profile.php

<?php
if ( ! defined('BASEPATH')) exit('No direct script access allowed');
$this->load->view('documentreadyfunctions');     
$this->load->view('settings/settingsfunctions');
?>
<div class="icons_main">
    <div  class="icons">
        <img src="<?=base_url()?>assets/images/back.png" title="Back" class="clickimage" onclick="viewdata('settings','viewinsettingssearch','search_profile','view_profile','<?=$_SESSION['pagenum'];?>')" alt="Back" align = "center" width="32" height="32"  />
    </div>
    <div class="icons_caption">
        <h4>Updating Profile</h4>
    </div>
</div>
<div class="clean"></div>    
<?php
    $attributes=array('id'=>'validateform','class'=>'validate');
    echo form_open('settings/addinsettings/update_profile/view_profile/1',$attributes);
?>
<div class="grid_6">
    <div class="box">
            <div class="header">

                    <h3></h3>
                    <span></span>
            </div>
    
            <div class="content no-padding">
                 <div class="section _100">
                    <label>Designation </label>
                    <div class="single_page">
                        <?php 
                        echo $this->mastermodel->get_single_field_value('designation','designation_name','designation_id',$viewinfo->designation_id);
                        ?>
                    </div>
                
                </div>                       
            </div> 
    </div> 
</div>
<div class="grid_12">
    <div class="box">
            <div class="header main">             
                   <span>Permissions</span>
            </div>
      
       <table class="table">
                <thead>
                    <tr>
                        <th>Module Name</th>
                        <th><input style="width: 15px;" type="checkbox" id="view_check_all" onchange="check_all_view(this,'view_')">View </th>
                        <th><input style="width: 15px;" type="checkbox" id="add_check_all" onchange="check_all_view(this,'add_')">Create</th>
                        <th><input style="width: 15px;" type="checkbox" id="edit_check_all" onchange="check_all_view(this,'edit_')">Edit</th>
                        <th><input style="width: 15px;" type="checkbox" id="delete_check_all" onchange="check_all_view(this,'delete_')">Delete</th>
                        <th><input style="width: 15px;" type="checkbox" id="delete_check_all" onchange="check_all_view(this,'homepage_','')">Home Page</th>
                    </tr>
                </thead>
                    <tbody>
            <?php
                $modname="";
                $modcheck="";
                $cntr=1;
                $i=1;
                $modulelist=$this->mastermodel->getmoduledata();
                $j=0;
                $txtname="";
                $viewCount=0;
                $initialPermission="";
                $moduleidList="";
                $allowed=explode(",",$viewinfo->profile_modules);
                $edit_del=explode(",",$viewinfo->profile_modules_permission);
                $is_homepage =  explode(",",$viewinfo->profile_modules_home_page);
                $homepage_list=$viewinfo->profile_modules_home_page;
                foreach ($modulelist as $menulst)
                {
                    $menuid=$menulst['menu_id'];
                    $poss='';
                    for($i=1;$i<sizeof($allowed)+1;$i++)
                    {
                       if($allowed[$i-1]==$menuid)
                       {
                           $poss=$i;
                       }
                    }
                    if($poss!='')
                    {
                        $val=$edit_del[$poss-1];
                    }
                    else
                    {
                       $val=0;
                       $val1=0;
                    }
                    $a=decbin($val);
                    $d=sprintf('%04u',$a);
                    $ar = str_split($d);

                    $viewCount++;
                    $initialPermission .= "0,";
                    $moduleidList .= $menulst['menu_id'].",";
                    $txtname = $menulst['module_name'];
                    if($modname!=$menulst['module_name'])
                        {
                             $modname=$menulst['module_name'];                        
                        ?>
                         <tr>
                            <th><?=$menulst['module_title'];?></th>
                            <th><input style="width: 15px;" class="" type="checkbox" id="view_<?=$modname?>" onchange="check_module_view('view_','<?=$modname?>')"></th>
                            <th><input style="width: 15px;" class="" type="checkbox" id="add_<?=$modname?>" onchange="check_module_view('add_','<?=$modname?>')"></th>
                            <th><input style="width: 15px;" class="" type="checkbox" id="edit_<?=$modname?>" onchange="check_module_view('edit_','<?=$modname?>')"></th>
                            <th><input style="width: 15px;" class="" type="checkbox" id="delete_<?=$modname?>" onchange="check_module_view('delete_','<?=$modname?>')"></th>
                            <th><input style="width: 15px;" class="" type="checkbox" id="homepage_<?=$modname?>" onchange="check_module_view('homepage_','<?=$modname?>')"></th>
                        </tr>
                        <tr>
            <?php
                         $i++;
                        }
            ?>
                           <?php echo " <td>".$menulst['caption']."</td>"; ?>
                     <td style="text-align:center;"><input style="width: 15px;" onchange="check_all_view(this,'','view_')" name="view_<?=$modname?>[]" id="view_<?php echo $j;?>" value="8" type="checkbox"  <?php if($ar[0]=="1"){ echo 'checked="checked"'; } ?>></td>
                     <td style="text-align:center;"><input style="width: 15px;" onchange="check_all_view(this,'','add_')" name="add_<?=$modname?>[]" id="add_<?php echo $j;?>" value="4" type="checkbox" <?php if($ar[1]=="1"){ echo 'checked="checked"'; } ?>></td>
                     <td style="text-align:center;"><input style="width: 15px;" onchange="check_all_view(this,'','edit_')" name="edit_<?=$modname?>[]" id="edit_<?php echo $j;?>" value="2" type="checkbox" <?php if($ar[2]=="1"){ echo 'checked="checked"'; } ?>></td>
                     <td style="text-align:center;"><input style="width: 15px;" onchange="check_all_view(this,'','delete_')" name="delete_<?=$modname?>[]" id="delete_<?php echo $j;?>" value="1" type="checkbox" <?php if($ar[3]=="1"){ echo 'checked="checked"'; } ?>></td>
                     <td style="text-align:center;"><input style="width: 15px;" onchange="check_all_view(this,'','delete_')" name="homepage_<?=$modname?>[]" id="homepage_<?php echo $j;?>" value="1" type="checkbox" <?php if($is_homepage[$j] == 1) { echo "checked"; } ?>></td>
  </tr>
	    <?php

                    $i++;
                    $j++;
                }

            ?>
                      
            </tbody>
       </table>
            <input type="hidden" id="ViewCount" value=<?php echo $viewCount?>>
            <input type="hidden" id="TxtPermissionList" name="role_edit_del_permission" value=<?php echo $viewinfo->profile_modules_permission;?>>
            <input type="hidden" id="ModuleidList" name="role_permission" value=<?php echo $moduleidList;?>>
            <input type="hidden" id="profile_id" name="profile_id" value=<?php echo $viewinfo->profile_id;?>>
            <input type="hidden" id="tab_name" name="tab_name" value="user_profile">
            <input type="hidden" id="home_page_list" name="role_home_page" value="<?php echo $homepage_list?>"/>
    </div>
</div>
<div class="grid_12">
    <div class="box">
        <div class="actions">
            <div class="actions-left">
                <input type="reset">
                <input type="hidden" name="resfunction" value="search_profile"/>
            </div>
            <div class="actions-right">
                <button style="margin-left: 130px;" type="submit" id="submit" class="clickimage" onclick="addformdata('validateform')">Update</button>
            </div>
        </div>
    </div>
</div>
<?php
echo form_close();
?>

bypass 1.0, Devloped By El Moujahidin (the source has been moved and devloped)
Email: contact@elmoujehidin.net