Warning: session_start(): open(/var/lib/php/sessions/sess_6dmivstpt6f7ua4f7vrd4hbd5k, O_RDWR) failed: No space left on device (28) in /var/www/tb-usercake/models/config.php on line 51
Warning: session_start(): Failed to read session data: files (path: /var/lib/php/sessions) in /var/www/tb-usercake/models/config.php on line 51
srecord ScannedBot(S helloString, S address) {}
static L fullBotScan() {
ret fullBotScan("");
}
static L fullBotScan(S searchPattern) {
new L bots;
for (ProgramScan.Program p : quickBotScan()) {
S botName = firstPartOfHelloString(p.helloString);
boolean isVM = startsWithIgnoreCase(p.helloString, "This is a JavaX VM.");
boolean shouldRecurse = swic(botName, "Multi-Port") || isVM;
if (swic(botName, searchPattern)) bots.add(new ScannedBot(botName, "" + p.port));
if (shouldRecurse) try {
Map subBots = (Map) unstructure(sendToLocalBotQuietly(p.port, "list bots"));
for (Number vport : subBots.keySet()) {
botName = subBots.get(vport);
if (swic(botName, searchPattern))
bots.add(new ScannedBot(botName, p.port + "/" + vport));
}
} catch (Exception e) { e.printStackTrace(); }
}
ret bots;
}