ServerProfiler.exe can now b purchased from the DarkWeb

This commit is contained in:
danielyxie 2018-12-25 02:16:34 -08:00
parent 928faa5b4c
commit 376e520a60
3 changed files with 18 additions and 15 deletions

15
dist/engine.bundle.js vendored

@ -42980,14 +42980,15 @@ Object.defineProperty(exports, "__esModule", { value: true });
const DarkWebItem_1 = __webpack_require__(/*! ./DarkWebItem */ 195); const DarkWebItem_1 = __webpack_require__(/*! ./DarkWebItem */ 195);
const Programs_1 = __webpack_require__(/*! ../Programs/Programs */ 24); const Programs_1 = __webpack_require__(/*! ../Programs/Programs */ 24);
exports.DarkWebItems = { exports.DarkWebItems = {
BruteSSHProgram: new DarkWebItem_1.DarkWebItem(Programs_1.Programs.BruteSSHProgram.name, 500000, "Opens up SSH Ports"), BruteSSHProgram: new DarkWebItem_1.DarkWebItem(Programs_1.Programs.BruteSSHProgram.name, 500e3, "Opens up SSH Ports"),
FTPCrackProgram: new DarkWebItem_1.DarkWebItem(Programs_1.Programs.FTPCrackProgram.name, 1500000, "Opens up FTP Ports"), FTPCrackProgram: new DarkWebItem_1.DarkWebItem(Programs_1.Programs.FTPCrackProgram.name, 1500e3, "Opens up FTP Ports"),
RelaySMTPProgram: new DarkWebItem_1.DarkWebItem(Programs_1.Programs.RelaySMTPProgram.name, 5000000, "Opens up SMTP Ports"), RelaySMTPProgram: new DarkWebItem_1.DarkWebItem(Programs_1.Programs.RelaySMTPProgram.name, 5e6, "Opens up SMTP Ports"),
HTTPWormProgram: new DarkWebItem_1.DarkWebItem(Programs_1.Programs.HTTPWormProgram.name, 30000000, "Opens up HTTP Ports"), HTTPWormProgram: new DarkWebItem_1.DarkWebItem(Programs_1.Programs.HTTPWormProgram.name, 30e6, "Opens up HTTP Ports"),
SQLInjectProgram: new DarkWebItem_1.DarkWebItem(Programs_1.Programs.SQLInjectProgram.name, 250000000, "Opens up SQL Ports"), SQLInjectProgram: new DarkWebItem_1.DarkWebItem(Programs_1.Programs.SQLInjectProgram.name, 250e6, "Opens up SQL Ports"),
DeepscanV1: new DarkWebItem_1.DarkWebItem(Programs_1.Programs.DeepscanV1.name, 500000, "Enables 'scan-analyze' with a depth up to 5"), DeepscanV1: new DarkWebItem_1.DarkWebItem(Programs_1.Programs.DeepscanV1.name, 500000, "Enables 'scan-analyze' with a depth up to 5"),
DeepscanV2: new DarkWebItem_1.DarkWebItem(Programs_1.Programs.DeepscanV2.name, 25000000, "Enables 'scan-analyze' with a depth up to 10"), DeepscanV2: new DarkWebItem_1.DarkWebItem(Programs_1.Programs.DeepscanV2.name, 25e6, "Enables 'scan-analyze' with a depth up to 10"),
AutolinkProgram: new DarkWebItem_1.DarkWebItem(Programs_1.Programs.AutoLink.name, 1000000, "Enables direct connect via 'scan-analyze'"), AutolinkProgram: new DarkWebItem_1.DarkWebItem(Programs_1.Programs.AutoLink.name, 1e6, "Enables direct connect via 'scan-analyze'"),
ServerProfilerProgram: new DarkWebItem_1.DarkWebItem(Programs_1.Programs.ServerProfiler.name, 1e6, "Displays hacking and Netscript-related information about a server"),
}; };

@ -525,6 +525,7 @@ export let CONSTANTS: IMap<any> = {
find a pop-up/dialog box that doesnt support this, let me know specifically which one find a pop-up/dialog box that doesnt support this, let me know specifically which one
('Enter' for the default option, 'Esc' for cancelling and closing the pop-up box) ('Enter' for the default option, 'Esc' for cancelling and closing the pop-up box)
* Added "brace_style = preserve_inline" configuration to Script Editor Beautifier * Added "brace_style = preserve_inline" configuration to Script Editor Beautifier
* ServerProfiler.exe can now be purchased from the Dark Web
` `
} }

@ -3,12 +3,13 @@ import { IMap } from "../types";
import { Programs } from "../Programs/Programs"; import { Programs } from "../Programs/Programs";
export const DarkWebItems: IMap<DarkWebItem> = { export const DarkWebItems: IMap<DarkWebItem> = {
BruteSSHProgram: new DarkWebItem(Programs.BruteSSHProgram.name, 500000, "Opens up SSH Ports"), BruteSSHProgram: new DarkWebItem(Programs.BruteSSHProgram.name, 500e3, "Opens up SSH Ports"),
FTPCrackProgram: new DarkWebItem(Programs.FTPCrackProgram.name, 1500000, "Opens up FTP Ports"), FTPCrackProgram: new DarkWebItem(Programs.FTPCrackProgram.name, 1500e3, "Opens up FTP Ports"),
RelaySMTPProgram: new DarkWebItem(Programs.RelaySMTPProgram.name, 5000000, "Opens up SMTP Ports"), RelaySMTPProgram: new DarkWebItem(Programs.RelaySMTPProgram.name, 5e6, "Opens up SMTP Ports"),
HTTPWormProgram: new DarkWebItem(Programs.HTTPWormProgram.name, 30000000, "Opens up HTTP Ports"), HTTPWormProgram: new DarkWebItem(Programs.HTTPWormProgram.name, 30e6, "Opens up HTTP Ports"),
SQLInjectProgram: new DarkWebItem(Programs.SQLInjectProgram.name, 250000000, "Opens up SQL Ports"), SQLInjectProgram: new DarkWebItem(Programs.SQLInjectProgram.name, 250e6, "Opens up SQL Ports"),
DeepscanV1: new DarkWebItem(Programs.DeepscanV1.name, 500000, "Enables 'scan-analyze' with a depth up to 5"), DeepscanV1: new DarkWebItem(Programs.DeepscanV1.name, 500000, "Enables 'scan-analyze' with a depth up to 5"),
DeepscanV2: new DarkWebItem(Programs.DeepscanV2.name, 25000000, "Enables 'scan-analyze' with a depth up to 10"), DeepscanV2: new DarkWebItem(Programs.DeepscanV2.name, 25e6, "Enables 'scan-analyze' with a depth up to 10"),
AutolinkProgram: new DarkWebItem(Programs.AutoLink.name, 1000000, "Enables direct connect via 'scan-analyze'"), AutolinkProgram: new DarkWebItem(Programs.AutoLink.name, 1e6, "Enables direct connect via 'scan-analyze'"),
ServerProfilerProgram: new DarkWebItem(Programs.ServerProfiler.name, 1e6, "Displays hacking and Netscript-related information about a server"),
}; };