⚝
One Hat Cyber Team
⚝
Your IP:
18.190.154.24
Server IP:
162.254.39.145
Server:
Linux premium289.web-hosting.com 4.18.0-513.11.1.lve.el8.x86_64 #1 SMP Thu Jan 18 16:21:02 UTC 2024 x86_64
Server Software:
LiteSpeed
PHP Version:
8.2.28
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
lib
/
node_modules
/
npm
/
lib
/
utils
/
View File Name :
replace-info.js
const URL = require('url').URL // replaces auth info in an array // of arguments or in a strings function replaceInfo (arg) { const isArray = Array.isArray(arg) const isString = typeof arg === 'string' if (!isArray && !isString) return arg const args = isString ? arg.split(' ') : arg const info = args.map(arg => { try { const url = new URL(arg) return url.password === '' ? arg : arg.replace(url.password, '***') } catch (e) { return arg } }) return isString ? info.join(' ') : info } module.exports = replaceInfo