uawdijnntqw1x1x1
IP : 216.73.217.47
Hostname : srv913213
Kernel : Linux srv913213 5.15.0-179-generic #189-Ubuntu SMP Tue May 5 18:20:56 UTC 2026 x86_64
Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,
OS : Linux
PATH:
/
var
/
www
/
yapwebtv.com
/
..
/
talentgenesis_admin_backend
/
node_modules
/
express-useragent
/
index.js
/
/
/** * * @revision $Id: index.js 2012-03-24 16:21:10 Aleksey $ * @created 2012-03-24 16:21:10 * @category Express Helpers * @package express-useragent * @version 1.0.15 * @copyright Copyright (c) 2009-2020 - All rights reserved. * @license MIT License * @author Aleksejs Gordejevs IK <aleksej@gordejev.lv> * @link http://www.gordejev.lv * */ var usrg = require('./lib/express-useragent'); var UserAgent = usrg.UserAgent; module.exports = new UserAgent(); module.exports.UserAgent = UserAgent; module.exports.express = function () { return function (req, res, next) { var source = req.headers['user-agent'] || ''; if (req.headers['x-ucbrowser-ua']) { //special case of UC Browser source = req.headers['x-ucbrowser-ua']; } var ua = new UserAgent(); if (typeof source === 'undefined') { source = "unknown"; } ua.Agent.source = source.replace(/^\s*/, '').replace(/\s*$/, ''); ua.Agent.os = ua.getOS(ua.Agent.source); ua.Agent.platform = ua.getPlatform(ua.Agent.source); ua.Agent.browser = ua.getBrowser(ua.Agent.source); ua.Agent.version = ua.getBrowserVersion(ua.Agent.source); ua.testNginxGeoIP(req.headers); ua.testBot(); ua.testMobile(); ua.testAndroidTablet(); ua.testTablet(); ua.testCompatibilityMode(); ua.testSilk(); ua.testKindleFire(); ua.testWechat(); req.useragent = ua.Agent; if ('function' === typeof res.locals) { res.locals({useragent: ua.Agent}); } else { res.locals.useragent = ua.Agent; } next(); }; };
/var/www/yapwebtv.com/../talentgenesis_admin_backend/node_modules/express-useragent/index.js