mirror of
https://github.com/ChronosX88/nesca.git
synced 2024-11-23 18:52:19 +00:00
Lists download fix.
This commit is contained in:
parent
01aa04d53e
commit
ad036ca03a
@ -1,5 +1,6 @@
|
|||||||
#include "FileDownloader.h"
|
#include "FileDownloader.h"
|
||||||
#include "fstream"
|
#include "fstream"
|
||||||
|
#include <algorithm>
|
||||||
|
|
||||||
std::string FileDownloader::lastModifiedNeg = "";
|
std::string FileDownloader::lastModifiedNeg = "";
|
||||||
std::string FileDownloader::lastModifiedL = "";
|
std::string FileDownloader::lastModifiedL = "";
|
||||||
@ -35,6 +36,7 @@ void checkWeb(const char *fileName, std::string *oldLM) {
|
|||||||
if(lm.compare(*oldLM) != 0) {
|
if(lm.compare(*oldLM) != 0) {
|
||||||
*oldLM = lm;
|
*oldLM = lm;
|
||||||
std::string res(buffer.substr(buffer.find("\r\n\r\n") + 4).c_str());
|
std::string res(buffer.substr(buffer.find("\r\n\r\n") + 4).c_str());
|
||||||
|
std::replace(res.begin(), res.end(), '\r', '\n');
|
||||||
std::ofstream out(fileName);
|
std::ofstream out(fileName);
|
||||||
out << std::string(res);
|
out << std::string(res);
|
||||||
out.close();
|
out.close();
|
||||||
|
27
login.txt
27
login.txt
@ -1,28 +1,55 @@
|
|||||||
admin
|
admin
|
||||||
|
|
||||||
root
|
root
|
||||||
|
|
||||||
123123
|
123123
|
||||||
|
|
||||||
123456
|
123456
|
||||||
|
|
||||||
12345
|
12345
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
cisco
|
cisco
|
||||||
|
|
||||||
super
|
super
|
||||||
|
|
||||||
meinsm
|
meinsm
|
||||||
|
|
||||||
monitor
|
monitor
|
||||||
|
|
||||||
test
|
test
|
||||||
|
|
||||||
ftp
|
ftp
|
||||||
|
|
||||||
1234
|
1234
|
||||||
|
|
||||||
administrator
|
administrator
|
||||||
|
|
||||||
qwerty
|
qwerty
|
||||||
|
|
||||||
recovery
|
recovery
|
||||||
|
|
||||||
Polycom
|
Polycom
|
||||||
|
|
||||||
system
|
system
|
||||||
|
|
||||||
naadmin
|
naadmin
|
||||||
|
|
||||||
telecom
|
telecom
|
||||||
|
|
||||||
dreambox
|
dreambox
|
||||||
|
|
||||||
master
|
master
|
||||||
|
|
||||||
Admin
|
Admin
|
||||||
|
|
||||||
guest
|
guest
|
||||||
|
|
||||||
backup
|
backup
|
||||||
|
|
||||||
cgadmin
|
cgadmin
|
||||||
|
|
||||||
0000
|
0000
|
||||||
|
|
||||||
1111
|
1111
|
@ -1,3 +1,6 @@
|
|||||||
|
pagerror
|
||||||
|
Error report
|
||||||
|
電話
|
||||||
reserveer
|
reserveer
|
||||||
kontakt
|
kontakt
|
||||||
ñàéò âðåìåí
|
ñàéò âðåìåí
|
||||||
@ -71,8 +74,10 @@ BlueBean
|
|||||||
Herzlich
|
Herzlich
|
||||||
Web-Based Configurator
|
Web-Based Configurator
|
||||||
Willkommen!
|
Willkommen!
|
||||||
|
Error 503
|
||||||
403 forbidden
|
403 forbidden
|
||||||
404 not found
|
404 not found
|
||||||
|
is not found
|
||||||
document not found
|
document not found
|
||||||
504 gateway timeout
|
504 gateway timeout
|
||||||
Defaultpage
|
Defaultpage
|
||||||
@ -501,7 +506,6 @@ opening soon
|
|||||||
openwebmail
|
openwebmail
|
||||||
Directory Listing Denied
|
Directory Listing Denied
|
||||||
page=about
|
page=about
|
||||||
pagerrorimg
|
|
||||||
pagos
|
pagos
|
||||||
CodeIgniter
|
CodeIgniter
|
||||||
parkerad
|
parkerad
|
||||||
|
135
nesca_3.cpp
135
nesca_3.cpp
@ -67,8 +67,6 @@ char trcPersKey[64] = {0};
|
|||||||
char gProxyIP[64] = {0};
|
char gProxyIP[64] = {0};
|
||||||
char gProxyPort[8] = {0};
|
char gProxyPort[8] = {0};
|
||||||
|
|
||||||
SOCKET lSock;
|
|
||||||
|
|
||||||
VerCheckerThread *vct = new VerCheckerThread();
|
VerCheckerThread *vct = new VerCheckerThread();
|
||||||
MSGCheckerThread *mct = new MSGCheckerThread();
|
MSGCheckerThread *mct = new MSGCheckerThread();
|
||||||
STh *stt = new STh();
|
STh *stt = new STh();
|
||||||
@ -147,6 +145,69 @@ int PhraseIndex = 0;
|
|||||||
QList<QString> PhraseLog;
|
QList<QString> PhraseLog;
|
||||||
bool ME2ScanFlag = true, QoSScanFlag = false, VoiceScanFlag = false, PieStatFlag = false;
|
bool ME2ScanFlag = true, QoSScanFlag = false, VoiceScanFlag = false, PieStatFlag = false;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
void _LoadPersInfoToLocalVars(int savedTabIndex) {
|
||||||
|
ZeroMemory(currentIP, sizeof(currentIP));
|
||||||
|
ZeroMemory(finalIP, sizeof(finalIP));
|
||||||
|
ZeroMemory(gPorts, sizeof(gPorts));
|
||||||
|
ZeroMemory(gTLD, sizeof(gTLD));
|
||||||
|
|
||||||
|
if (savedTabIndex == 0)
|
||||||
|
{
|
||||||
|
gMode = 0;
|
||||||
|
gThreads = ui->threadLine->text().toInt();
|
||||||
|
QString targetLine = ui->ipLine->text();
|
||||||
|
|
||||||
|
if (ui->ipLine->text().indexOf("-") > 0)
|
||||||
|
{
|
||||||
|
if (ui->ipLine->text().indexOf("/") < 0) {
|
||||||
|
QList<QString> splittedTargetLine = targetLine.split("-");
|
||||||
|
strcpy(currentIP, splittedTargetLine[0].toLocal8Bit().data());
|
||||||
|
strcpy(finalIP, splittedTargetLine[1].toLocal8Bit().data());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
if (ui->ipLine->text().indexOf("/") < 0)
|
||||||
|
{
|
||||||
|
strcpy(currentIP, ui->ipLine->text().toLocal8Bit().data());
|
||||||
|
strcat(currentIP, "-");
|
||||||
|
strcat(currentIP, ui->ipLine->text().toLocal8Bit().data());
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
strncpy(gPorts, ("-p" + ui->portLine->text()).toLocal8Bit().data(), 65536);
|
||||||
|
gPorts[ui->lineEditPort->text().length() + 2] = '\0';
|
||||||
|
}
|
||||||
|
else if (savedTabIndex == 1)
|
||||||
|
{
|
||||||
|
gMode = 1;
|
||||||
|
gThreads = ui->lineEditThread->text().toInt();
|
||||||
|
|
||||||
|
strcpy(currentIP, ui->lineEditStartIPDNS->text().toLocal8Bit().data());
|
||||||
|
strcpy(gTLD, ui->lineILVL->text().toLocal8Bit().data());
|
||||||
|
strncpy(gPorts, ("-p" + ui->lineEditPort->text()).toLocal8Bit().data(), 65536);
|
||||||
|
gPorts[ui->lineEditPort->text().length() + 2] = '\0';
|
||||||
|
}
|
||||||
|
else if (savedTabIndex == 2)
|
||||||
|
{
|
||||||
|
gMode = -1;
|
||||||
|
gThreads = ui->importThreads->text().toInt();
|
||||||
|
strncpy(gPorts, ("-p" + ui->importPorts->text()).toLocal8Bit().data(), 65536);
|
||||||
|
};
|
||||||
|
|
||||||
|
strcpy(trcSrv, ui->lineTrackerSrv->text().toLocal8Bit().data());
|
||||||
|
strcpy(trcScr, ui->lineTrackerScr->text().toLocal8Bit().data());
|
||||||
|
strncpy(trcPersKey, ui->linePersKey->text().toLocal8Bit().data(), 32);
|
||||||
|
memset(trcPersKey + 32, '\0', 1);
|
||||||
|
strcpy(trcSrvPortLine, ui->trcSrvPortLine->text().toLocal8Bit().data());
|
||||||
|
strncpy(gProxyIP, ui->systemProxyIP->text().toLocal8Bit().data(), 64);
|
||||||
|
gProxyIP[ui->systemProxyIP->text().size()] = '\0';
|
||||||
|
strncpy(gProxyPort, ui->systemProxyPort->text().toLocal8Bit().data(), 8);
|
||||||
|
gProxyPort[ui->systemProxyPort->text().size()] = '\0';
|
||||||
|
}
|
||||||
|
|
||||||
Ui::nesca_3Class *ui = new Ui::nesca_3Class;
|
Ui::nesca_3Class *ui = new Ui::nesca_3Class;
|
||||||
void setSceneArea()
|
void setSceneArea()
|
||||||
{
|
{
|
||||||
@ -1919,7 +1980,7 @@ void nesca_3::IPScanSeq()
|
|||||||
{
|
{
|
||||||
if(ui->portLine->text() != "")
|
if(ui->portLine->text() != "")
|
||||||
{
|
{
|
||||||
saveOptions();
|
_LoadPersInfoToLocalVars(savedTabIndex);
|
||||||
ui->labelParsed_Value->setText("0/0");
|
ui->labelParsed_Value->setText("0/0");
|
||||||
ui->labelOffline_Value->setText("0");
|
ui->labelOffline_Value->setText("0");
|
||||||
stopFirst = false;
|
stopFirst = false;
|
||||||
@ -2004,7 +2065,7 @@ void nesca_3::DNSScanSeq()
|
|||||||
{
|
{
|
||||||
if(ui->lineEditPort->text() != "")
|
if(ui->lineEditPort->text() != "")
|
||||||
{
|
{
|
||||||
saveOptions();
|
_LoadPersInfoToLocalVars(savedTabIndex);
|
||||||
ui->labelParsed_Value->setText("0/0");
|
ui->labelParsed_Value->setText("0/0");
|
||||||
ui->labelOffline_Value->setText("0");
|
ui->labelOffline_Value->setText("0");
|
||||||
if(ui->lineEditStartIPDNS->text().indexOf(".") > 0)
|
if(ui->lineEditStartIPDNS->text().indexOf(".") > 0)
|
||||||
@ -2063,7 +2124,7 @@ void nesca_3::ImportScanSeq()
|
|||||||
|
|
||||||
if(fileName != "")
|
if(fileName != "")
|
||||||
{
|
{
|
||||||
saveOptions();
|
_LoadPersInfoToLocalVars(savedTabIndex);
|
||||||
ui->tabMainWidget->setTabEnabled(0, false);
|
ui->tabMainWidget->setTabEnabled(0, false);
|
||||||
ui->tabMainWidget->setTabEnabled(1, false);
|
ui->tabMainWidget->setTabEnabled(1, false);
|
||||||
|
|
||||||
@ -2298,67 +2359,6 @@ void nesca_3::ConnectEvrthng()
|
|||||||
//connect ( irc_nmb, SIGNAL(sBlinkMessage()), this, SLOT(slotBlinkMessage()) );
|
//connect ( irc_nmb, SIGNAL(sBlinkMessage()), this, SLOT(slotBlinkMessage()) );
|
||||||
}
|
}
|
||||||
|
|
||||||
void _LoadPersInfoToLocalVars(int savedTabIndex) {
|
|
||||||
ZeroMemory(currentIP, sizeof(currentIP));
|
|
||||||
ZeroMemory(finalIP, sizeof(finalIP));
|
|
||||||
ZeroMemory(gPorts, sizeof(gPorts));
|
|
||||||
ZeroMemory(gTLD, sizeof(gTLD));
|
|
||||||
|
|
||||||
if(savedTabIndex == 0)
|
|
||||||
{
|
|
||||||
gMode = 0;
|
|
||||||
gThreads = ui->threadLine->text().toInt();
|
|
||||||
QString targetLine = ui->ipLine->text();
|
|
||||||
|
|
||||||
if(ui->ipLine->text().indexOf("-") > 0)
|
|
||||||
{
|
|
||||||
if(ui->ipLine->text().indexOf("/") < 0) {
|
|
||||||
QList<QString> splittedTargetLine = targetLine.split("-");
|
|
||||||
strcpy(currentIP, splittedTargetLine[0].toLocal8Bit().data());
|
|
||||||
strcpy(finalIP, splittedTargetLine[1].toLocal8Bit().data());
|
|
||||||
}
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
if(ui->ipLine->text().indexOf("/") < 0)
|
|
||||||
{
|
|
||||||
strcpy(currentIP, ui->ipLine->text().toLocal8Bit().data());
|
|
||||||
strcat(currentIP, "-");
|
|
||||||
strcat(currentIP, ui->ipLine->text().toLocal8Bit().data());
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
strncpy(gPorts, ("-p" + ui->portLine->text()).toLocal8Bit().data(), 65536);
|
|
||||||
gPorts[ui->lineEditPort->text().length() + 2] = '\0';
|
|
||||||
}
|
|
||||||
else if(savedTabIndex == 1)
|
|
||||||
{
|
|
||||||
gMode = 1;
|
|
||||||
gThreads = ui->lineEditThread->text().toInt();
|
|
||||||
|
|
||||||
strcpy(currentIP, ui->lineEditStartIPDNS->text().toLocal8Bit().data());
|
|
||||||
strcpy(gTLD, ui->lineILVL->text().toLocal8Bit().data());
|
|
||||||
strncpy(gPorts, ("-p" + ui->lineEditPort->text()).toLocal8Bit().data(), 65536);
|
|
||||||
gPorts[ui->lineEditPort->text().length() + 2] = '\0';
|
|
||||||
}
|
|
||||||
else if(savedTabIndex == 2)
|
|
||||||
{
|
|
||||||
gMode = -1;
|
|
||||||
gThreads = ui->importThreads->text().toInt();
|
|
||||||
strncpy(gPorts, ("-p" + ui->importPorts->text()).toLocal8Bit().data(), 65536);
|
|
||||||
};
|
|
||||||
|
|
||||||
strcpy(trcSrv, ui->lineTrackerSrv->text().toLocal8Bit().data());
|
|
||||||
strcpy(trcScr, ui->lineTrackerScr->text().toLocal8Bit().data());
|
|
||||||
strncpy(trcPersKey, ui->linePersKey->text().toLocal8Bit().data(), 32);
|
|
||||||
memset(trcPersKey + 32, '\0', 1);
|
|
||||||
strcpy(trcSrvPortLine, ui->trcSrvPortLine->text().toLocal8Bit().data());
|
|
||||||
strncpy(gProxyIP, ui->systemProxyIP->text().toLocal8Bit().data(), 64);
|
|
||||||
gProxyIP[ui->systemProxyIP->text().size()] = '\0';
|
|
||||||
strncpy(gProxyPort, ui->systemProxyPort->text().toLocal8Bit().data(), 8);
|
|
||||||
gProxyPort[ui->systemProxyPort->text().size()] = '\0';
|
|
||||||
}
|
|
||||||
|
|
||||||
void nesca_3::saveOptions()
|
void nesca_3::saveOptions()
|
||||||
{
|
{
|
||||||
_LoadPersInfoToLocalVars(savedTabIndex);
|
_LoadPersInfoToLocalVars(savedTabIndex);
|
||||||
@ -2779,13 +2779,12 @@ void nesca_3::ChangePingerOK(bool val)
|
|||||||
|
|
||||||
void nesca_3::STTTerminate()
|
void nesca_3::STTTerminate()
|
||||||
{
|
{
|
||||||
|
while (__savingBackUpFile) Sleep(100);
|
||||||
importFileName = "";
|
importFileName = "";
|
||||||
startFlag = false;
|
startFlag = false;
|
||||||
globalScanFlag = false;
|
globalScanFlag = false;
|
||||||
nCleanup();
|
nCleanup();
|
||||||
|
|
||||||
while(__savingBackUpFile) Sleep(100);
|
|
||||||
|
|
||||||
ui->tabMainWidget->setTabEnabled(0, true);
|
ui->tabMainWidget->setTabEnabled(0, true);
|
||||||
ui->tabMainWidget->setTabEnabled(1, true);
|
ui->tabMainWidget->setTabEnabled(1, true);
|
||||||
ui->tabMainWidget->setTabEnabled(2, true);
|
ui->tabMainWidget->setTabEnabled(2, true);
|
||||||
|
@ -307,7 +307,7 @@ void _SaveBackupToFile()
|
|||||||
|
|
||||||
void _saver()
|
void _saver()
|
||||||
{
|
{
|
||||||
Sleep(100);
|
Sleep(1000);
|
||||||
while(globalScanFlag)
|
while(globalScanFlag)
|
||||||
{
|
{
|
||||||
__savingBackUpFile = true;
|
__savingBackUpFile = true;
|
||||||
@ -2080,6 +2080,8 @@ int startScan(char* args) {
|
|||||||
stt->doEmitionGreenFoundData("Done. Saved: " + QString::number(saved) + "; Alive: " + QString::number(found) + ".");
|
stt->doEmitionGreenFoundData("Done. Saved: " + QString::number(saved) + "; Alive: " + QString::number(found) + ".");
|
||||||
stt->doEmitionChangeParsed(QString::number(saved) + "/" + QString::number(found));
|
stt->doEmitionChangeParsed(QString::number(saved) + "/" + QString::number(found));
|
||||||
stt->doEmitionChangeStatus("Idle");
|
stt->doEmitionChangeStatus("Idle");
|
||||||
|
|
||||||
|
Sleep(1000); //Wait for lock release
|
||||||
stt->doEmitionKillSttThread();
|
stt->doEmitionKillSttThread();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
52
pass.txt
52
pass.txt
@ -1,53 +1,105 @@
|
|||||||
root
|
root
|
||||||
|
|
||||||
admin
|
admin
|
||||||
|
|
||||||
password
|
password
|
||||||
|
|
||||||
123456
|
123456
|
||||||
|
|
||||||
1234
|
1234
|
||||||
|
|
||||||
12345
|
12345
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
ADMIN
|
ADMIN
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
cisco
|
cisco
|
||||||
|
|
||||||
ftp
|
ftp
|
||||||
|
|
||||||
ROOT
|
ROOT
|
||||||
|
|
||||||
123123
|
123123
|
||||||
|
|
||||||
pass
|
pass
|
||||||
|
|
||||||
passwd
|
passwd
|
||||||
|
|
||||||
qwerty
|
qwerty
|
||||||
|
|
||||||
meinsm
|
meinsm
|
||||||
|
|
||||||
monitor
|
monitor
|
||||||
|
|
||||||
user
|
user
|
||||||
|
|
||||||
test
|
test
|
||||||
|
|
||||||
sysadm
|
sysadm
|
||||||
|
|
||||||
admin123
|
admin123
|
||||||
|
|
||||||
Admin
|
Admin
|
||||||
|
|
||||||
123321
|
123321
|
||||||
|
|
||||||
12344321
|
12344321
|
||||||
|
|
||||||
toor
|
toor
|
||||||
|
|
||||||
qwerty123
|
qwerty123
|
||||||
|
|
||||||
1q2w3e4r
|
1q2w3e4r
|
||||||
|
|
||||||
987654321
|
987654321
|
||||||
|
|
||||||
system
|
system
|
||||||
|
|
||||||
telecom
|
telecom
|
||||||
|
|
||||||
dreambox
|
dreambox
|
||||||
|
|
||||||
111111
|
111111
|
||||||
|
|
||||||
1111
|
1111
|
||||||
|
|
||||||
654321
|
654321
|
||||||
|
|
||||||
!@#$%^
|
!@#$%^
|
||||||
|
|
||||||
0000
|
0000
|
||||||
|
|
||||||
000000
|
000000
|
||||||
|
|
||||||
master
|
master
|
||||||
|
|
||||||
12345678
|
12345678
|
||||||
|
|
||||||
666666
|
666666
|
||||||
|
|
||||||
123123123
|
123123123
|
||||||
|
|
||||||
123454321
|
123454321
|
||||||
|
|
||||||
0123456789
|
0123456789
|
||||||
|
|
||||||
qqqqqq
|
qqqqqq
|
||||||
|
|
||||||
administrator
|
administrator
|
||||||
|
|
||||||
sys
|
sys
|
||||||
|
|
||||||
guest
|
guest
|
||||||
|
|
||||||
backup
|
backup
|
||||||
|
|
||||||
fujiyama
|
fujiyama
|
||||||
|
|
||||||
super
|
super
|
||||||
|
|
||||||
P@ssw0rd
|
P@ssw0rd
|
||||||
|
|
||||||
passw0rd
|
passw0rd
|
25
sshpass.txt
25
sshpass.txt
@ -1,26 +1,51 @@
|
|||||||
hw230f8034t:17932yhf823
|
hw230f8034t:17932yhf823
|
||||||
|
|
||||||
root:root
|
root:root
|
||||||
|
|
||||||
root:admin
|
root:admin
|
||||||
|
|
||||||
admin:admin
|
admin:admin
|
||||||
|
|
||||||
admin:root
|
admin:root
|
||||||
|
|
||||||
backup:backup
|
backup:backup
|
||||||
|
|
||||||
guest:guest
|
guest:guest
|
||||||
|
|
||||||
root:master
|
root:master
|
||||||
|
|
||||||
root:1234
|
root:1234
|
||||||
|
|
||||||
admin:master
|
admin:master
|
||||||
|
|
||||||
admin:111111
|
admin:111111
|
||||||
|
|
||||||
root:12345
|
root:12345
|
||||||
|
|
||||||
root:123456
|
root:123456
|
||||||
|
|
||||||
admin:1234
|
admin:1234
|
||||||
|
|
||||||
admin:12345
|
admin:12345
|
||||||
|
|
||||||
root:12345678
|
root:12345678
|
||||||
|
|
||||||
root:123123
|
root:123123
|
||||||
|
|
||||||
admin:123456
|
admin:123456
|
||||||
|
|
||||||
admin:12345678
|
admin:12345678
|
||||||
|
|
||||||
root:654321
|
root:654321
|
||||||
|
|
||||||
admin:123123
|
admin:123123
|
||||||
|
|
||||||
admin:654321
|
admin:654321
|
||||||
|
|
||||||
root:password
|
root:password
|
||||||
|
|
||||||
admin:pasword
|
admin:pasword
|
||||||
|
|
||||||
root:1qazXSW@
|
root:1qazXSW@
|
||||||
|
|
||||||
test:test
|
test:test
|
@ -1,3 +1,5 @@
|
|||||||
[FAIL]
|
[FAIL]
|
||||||
|
|
||||||
admin
|
admin
|
||||||
|
|
||||||
root
|
root
|
@ -1,10 +1,19 @@
|
|||||||
[FAIL]
|
[FAIL]
|
||||||
|
|
||||||
admin
|
admin
|
||||||
|
|
||||||
root
|
root
|
||||||
|
|
||||||
pass
|
pass
|
||||||
|
|
||||||
password
|
password
|
||||||
|
|
||||||
toor
|
toor
|
||||||
|
|
||||||
123123
|
123123
|
||||||
|
|
||||||
123456
|
123456
|
||||||
|
|
||||||
12345
|
12345
|
||||||
|
|
||||||
qwerty
|
qwerty
|
Loading…
Reference in New Issue
Block a user