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

Software: Apache/2.2.22 (Debian). PHP/5.6.36 

uname -a: Linux h05.hvosting.ua 4.9.110-amd64 #3 SMP Sun Nov 4 16:27:09 UTC 2018 x86_64 

uid=1389(h33678) gid=1099(h33678) groups=1099(h33678),502(mgrsecure) 

Safe-mode: OFF (not secure)

/home/h33678/data/www/schedule.ikt.org.ua/   drwxrwxrwx
Free 106.22 GB of 200.55 GB (52.96%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     admin.js (3.71 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
$(document).ready(function()
{
   var fromDay, fromHour, fromRoom, toDay, toRoom, fromRoom, toRoom, toHour;
   $(".move").on('click', function() {
       var td = $(this).closest('td');
       var day = td.attr('day'), hour = td.attr('hour');
       var room = $(this).prevUntil('.room').find('.room').text();
       $.post('/admin-asynch.php', {oper : 'GetFreeMatrix', 'day_name' : day, 'hour_name' : hour, 'room_name': room}, function(data)
       {
           fromDay = day;
           fromRoom = room;
           fromHour = hour;
           $("#modal").show();
           $("#modal").html(data);
           $("#modal .matrix td").on('click', function()
           {
               var td = $(this);
               toDay = td.attr('day');
               toHour = td.attr('hour');
               $.post('/admin-asynch.php', {oper : 'GetFreeRooms', 'day_name' : toDay, 'hour_name' : toHour}, function(data)
               {
                   $("#modal").show();
                   $("#modal").html('');
                   var elem = document.createElement('div');
                   elem.classList.add('items');
                   for(var i in data) {
                       var span = document.createElement('div');
                       span.innerHTML = data[i];
                       elem.appendChild(span);
                   }
                   document.getElementById('modal').append(elem);
                   elem = document.createElement('div');
                   elem.classList.add('close');
                   elem.innerHTML = 'Закрити';
                   document.getElementById('modal').append(elem);
                   $('#modal .close').on('click', function()
                   {
                       $("#modal").hide();
                   });
                   $("#modal .items > div").on('click', function()
                   {
                       toRoom = $(this).text();
                       $.post('/admin-asynch.php', {oper : 'MovePair',
                           'from_day' : fromDay, 'from_hour' : fromHour, 'from_room' : fromRoom,
                           'to_day' : toDay, 'to_hour' : toHour, 'to_room' : toRoom}, function(data) {
                           location.reload();
                       });
                   })
               }, 'json');
           });
       }, 'html');
   });

   $(".room").on('click', function()
   {
      var td = $(this).closest('td');
      var day = td.attr('day'), hour = td.attr('hour');
      var oldRoom = $(this).text();
      var self = this;
      $.post('/admin-asynch.php', {oper : 'GetFreeRooms', 'day_name' : day, 'hour_name' : hour}, function(data)
      {
          $("#modal").show();
          $("#modal").html('');
          var elem = document.createElement('div');
          elem.classList.add('items');
          for(var i in data) {
             var span = document.createElement('div');
             span.innerHTML = data[i];
             elem.appendChild(span);
          }
          document.getElementById('modal').append(elem);
          elem = document.createElement('div');
          elem.classList.add('close');
          elem.innerHTML = 'Закрити';
          document.getElementById('modal').append(elem);
          $('#modal .close').on('click', function()
          {
             $("#modal").hide();
          });
          $("#modal .items > div").on('click', function()
          {
              var room = $(this).text();
              $.post('/admin-asynch.php', {oper : 'ChangeRoom', 'day_name' : day, 'hour_name' : hour, 'old_room' : oldRoom, 'new_room' : room}, function(data) {
                  location.reload();
              });
          })
      }, 'json');
   });
});

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ ok ]

:: Make Dir ::
 
[ ok ]
:: Make File ::
 
[ ok ]

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

--[ c99shell v. 2.0 [PHP 7 Update] [25.02.2019] maintained by PinoyWH1Z | C99Shell Github | Generation time: 0.0123 ]--