40 lines
953 B
JavaScript
40 lines
953 B
JavaScript
/** @param {import(".").NS } ns */
|
|
// import { EXCLUDE_SERVERS } from "./constants.js";
|
|
|
|
export const EXCLUDE_SERVERS = [
|
|
'home',
|
|
'CSEC',
|
|
'avmnite-02h',
|
|
'I.I.I.I',
|
|
'run4theh111z'
|
|
];
|
|
|
|
for (let index = 0; index < 1024; index++) {
|
|
EXCLUDE_SERVERS.push(`home-${index}`);
|
|
}
|
|
|
|
|
|
const DARKWEB_PROGRAMS = [
|
|
{ name: 'BruteSSH.exe', cost: 0 },
|
|
{ name: 'FTPCrack.exe', cost: 1500000 },
|
|
{ name: 'relaySMTP.exe', cost: 5000000 },
|
|
{ name: 'HTTPWorm.exe', cost: 30000000 },
|
|
{ name: 'SQLInject.exe', cost: 250000000 },
|
|
{ name: 'ServerProfiler.exe', cost: 500000 },
|
|
{ name: 'DeepscanV1.exe', cost: 500000 },
|
|
{ name: 'DeepscanV2.exe', cost: 25000000 },
|
|
{ name: 'AutoLink.exe', cost: 1000000 },
|
|
{ name: 'Formulas.exe', cost: 5000000000 }
|
|
];
|
|
|
|
|
|
const COMPLETED_FACTIONS = [
|
|
'CyberSec',
|
|
'Netburners',
|
|
'NiteSec',
|
|
'The Black Hand',
|
|
'Aevum',
|
|
'Sector-12',
|
|
'Volhaven',
|
|
'Tian Di Hui'
|
|
]; |