mirror of
https://github.com/ChronosX88/nesca.git
synced 2024-11-23 18:52:19 +00:00
Merge branch 'master' of git.d3w.org:cora32/nesca
Conflicts: CheckKey_Th.cpp CheckProxy_Th.cpp IRCPinger_Th.cpp connector.cpp externData.h externFunctions.h main.cpp mainResources.h nesca_3.cpp nesca_3.h nesca_3.ui nesca_startModule.cpp
This commit is contained in:
commit
6392572f9f
BIN
00000036.wav
Normal file
BIN
00000036.wav
Normal file
Binary file not shown.
@ -212,9 +212,15 @@ int KeyCheckerMain()
|
|||||||
|
|
||||||
if(strstr(msg, "202 Accepted") != NULL)
|
if(strstr(msg, "202 Accepted") != NULL)
|
||||||
{
|
{
|
||||||
|
<<<<<<< HEAD
|
||||||
|
|
||||||
stt->doEmitionGreenFoundData("[Key check] -OK. Key is valid!");
|
stt->doEmitionGreenFoundData("[Key check] -OK. Key is valid!");
|
||||||
|
|
||||||
|
=======
|
||||||
|
#pragma region QTGUI_Area
|
||||||
|
stt->doEmitionGreenFoundData("[Key check] -OK. Key is valid!");
|
||||||
|
#pragma endregion
|
||||||
|
>>>>>>> 1f26df077976493c1916f7764c83dc03da1445fa
|
||||||
CSSOCKET(sock);
|
CSSOCKET(sock);
|
||||||
|
|
||||||
if(emitIfOK == 0) stt->doEmitionStartScanIP();
|
if(emitIfOK == 0) stt->doEmitionStartScanIP();
|
||||||
@ -224,11 +230,19 @@ int KeyCheckerMain()
|
|||||||
}
|
}
|
||||||
else if(strstr(msg, "400 Bad Request") != NULL)
|
else if(strstr(msg, "400 Bad Request") != NULL)
|
||||||
{
|
{
|
||||||
|
<<<<<<< HEAD
|
||||||
|
|
||||||
QString errorDef = GetNSErrorDefinition(msg, "notify");
|
QString errorDef = GetNSErrorDefinition(msg, "notify");
|
||||||
if(errorDef == "Invalid access key") stt->doEmitionYellowFoundData("[NS-Track] [Key is unauthorized] A valid key is required.");
|
if(errorDef == "Invalid access key") stt->doEmitionYellowFoundData("[NS-Track] [Key is unauthorized] A valid key is required.");
|
||||||
else stt->doEmitionYellowFoundData("[NS-Track] -FAIL! [400 Bad Request : " + GetNSErrorDefinition(msg, "notify") + "]");
|
else stt->doEmitionYellowFoundData("[NS-Track] -FAIL! [400 Bad Request : " + GetNSErrorDefinition(msg, "notify") + "]");
|
||||||
|
|
||||||
|
=======
|
||||||
|
#pragma region QTGUI_Area
|
||||||
|
QString errorDef = GetNSErrorDefinition(msg, "notify");
|
||||||
|
if(errorDef == "Invalid access key") stt->doEmitionYellowFoundData("[NS-Track] [Key is unauthorized] A valid key is required.");
|
||||||
|
else stt->doEmitionYellowFoundData("[NS-Track] -FAIL! [400 Bad Request : " + GetNSErrorDefinition(msg, "notify") + "]");
|
||||||
|
#pragma endregion
|
||||||
|
>>>>>>> 1f26df077976493c1916f7764c83dc03da1445fa
|
||||||
CSSOCKET(sock);
|
CSSOCKET(sock);
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
@ -240,12 +254,20 @@ int KeyCheckerMain()
|
|||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
<<<<<<< HEAD
|
||||||
|
|
||||||
|
=======
|
||||||
|
#pragma region QTGUI_Area
|
||||||
|
>>>>>>> 1f26df077976493c1916f7764c83dc03da1445fa
|
||||||
char header[64] = {0};
|
char header[64] = {0};
|
||||||
getSubStrEx(msg, "http/1.1 ", "\r\n", header, 64);
|
getSubStrEx(msg, "http/1.1 ", "\r\n", header, 64);
|
||||||
stt->doEmitionYellowFoundData("[Key check] -FAIL! An error occured. (" + QString::number(WSAGetLastError()) + ") Header: <u>" + QString::fromLocal8Bit(header) + "</u>");
|
stt->doEmitionYellowFoundData("[Key check] -FAIL! An error occured. (" + QString::number(WSAGetLastError()) + ") Header: <u>" + QString::fromLocal8Bit(header) + "</u>");
|
||||||
if(gDebugMode) stt->doEmitionDebugFoundData(QString(msg));
|
if(gDebugMode) stt->doEmitionDebugFoundData(QString(msg));
|
||||||
|
<<<<<<< HEAD
|
||||||
|
|
||||||
|
=======
|
||||||
|
#pragma endregion
|
||||||
|
>>>>>>> 1f26df077976493c1916f7764c83dc03da1445fa
|
||||||
CSSOCKET(sock);
|
CSSOCKET(sock);
|
||||||
return -1;
|
return -1;
|
||||||
};
|
};
|
||||||
@ -255,12 +277,20 @@ int KeyCheckerMain()
|
|||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
<<<<<<< HEAD
|
||||||
|
|
||||||
|
=======
|
||||||
|
#pragma region QTGUI_Area
|
||||||
|
>>>>>>> 1f26df077976493c1916f7764c83dc03da1445fa
|
||||||
stt->doEmitionRedFoundData("[Key check] -Balancer replied with invalid string.");
|
stt->doEmitionRedFoundData("[Key check] -Balancer replied with invalid string.");
|
||||||
if(gDebugMode) stt->doEmitionDebugFoundData(QString(msg));
|
if(gDebugMode) stt->doEmitionDebugFoundData(QString(msg));
|
||||||
CSSOCKET(sock);
|
CSSOCKET(sock);
|
||||||
return -1;
|
return -1;
|
||||||
|
<<<<<<< HEAD
|
||||||
|
|
||||||
|
=======
|
||||||
|
#pragma endregion
|
||||||
|
>>>>>>> 1f26df077976493c1916f7764c83dc03da1445fa
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
1
ClassDiagram1.cd
Normal file
1
ClassDiagram1.cd
Normal file
@ -0,0 +1 @@
|
|||||||
|
|
227
debugData.txt
Normal file
227
debugData.txt
Normal file
@ -0,0 +1,227 @@
|
|||||||
|
==========================
|
||||||
|
SSH-2.0-dropbear_0.48
|
||||||
|
|
||||||
|
==========================
|
||||||
|
==========================
|
||||||
|
|
||||||
|
GET / HTTP/1.1
|
||||||
|
Host: 222.2.124.6:21
|
||||||
|
Accept: text/html, application/xml;q=0.9, application/xhtml+xml, image/png, image/jpeg, image/gif, image/x-xbitmap, */*;q=0.1
|
||||||
|
Accept-Language: us-US,ru;q=0.9,en;q=0.8
|
||||||
|
Accept-Charset: iso-8859-1, utf-8, utf-16, *;q=0.1
|
||||||
|
Accept-Encoding: text, identity, *;q=0
|
||||||
|
User-Agent: Mozilla/5.0 (X11; U; Linux i686; us; rv:1.9.0.11) Gecko/2009060308 Ubuntu/9.04 (jaunty) Firefox/3.0.11
|
||||||
|
Connection: close
|
||||||
|
|
||||||
|
==========================
|
||||||
|
220-MegaBit Gear TE4121C FTP server ready
|
||||||
|
220 FTE4121_0113C (Tue Jan 14 18:20:09 JST 2003)
|
||||||
|
530 USER and PASS required
|
||||||
|
530 USER and PASS required
|
||||||
|
|
||||||
|
==========================
|
||||||
|
==========================
|
||||||
|
|
||||||
|
GET / HTTP/1.1
|
||||||
|
Host: 222.2.124.25:21
|
||||||
|
Accept: text/html, application/xml;q=0.9, application/xhtml+xml, image/png, image/jpeg, image/gif, image/x-xbitmap, */*;q=0.1
|
||||||
|
Accept-Language: us-US,ru;q=0.9,en;q=0.8
|
||||||
|
Accept-Charset: iso-8859-1, utf-8, utf-16, *;q=0.1
|
||||||
|
Accept-Encoding: text, identity, *;q=0
|
||||||
|
User-Agent: Mozilla/5.0 (X11; U; Linux i686; us; rv:1.9.0.11) Gecko/2009060308 Ubuntu/9.04 (jaunty) Firefox/3.0.11
|
||||||
|
Connection: close
|
||||||
|
|
||||||
|
==========================
|
||||||
|
220 (vsFTPd 1.2.0)
|
||||||
|
530 Please login with USER and PASS.
|
||||||
|
530 Please login with USER and PASS.
|
||||||
|
530 Please login with USER and PASS.
|
||||||
|
530 Please login with USER and PASS.
|
||||||
|
530 Please login with USER and PASS.
|
||||||
|
530 Please login with USER and PASS.
|
||||||
|
530 Please login with USER and PASS.
|
||||||
|
530 Please login with USER and PASS.
|
||||||
|
530 Please login with USER and PASS.
|
||||||
|
|
||||||
|
==========================
|
||||||
|
==========================
|
||||||
|
|
||||||
|
GET / HTTP/1.1
|
||||||
|
Host: 222.2.124.44:21
|
||||||
|
Accept: text/html, application/xml;q=0.9, application/xhtml+xml, image/png, image/jpeg, image/gif, image/x-xbitmap, */*;q=0.1
|
||||||
|
Accept-Language: us-US,ru;q=0.9,en;q=0.8
|
||||||
|
Accept-Charset: iso-8859-1, utf-8, utf-16, *;q=0.1
|
||||||
|
Accept-Encoding: text, identity, *;q=0
|
||||||
|
User-Agent: Mozilla/5.0 (X11; U; Linux i686; us; rv:1.9.0.11) Gecko/2009060308 Ubuntu/9.04 (jaunty) Firefox/3.0.11
|
||||||
|
Connection: close
|
||||||
|
|
||||||
|
==========================
|
||||||
|
220-MegaBit Gear TE4121C FTP server ready
|
||||||
|
220 FTE4121_0113C (Tue Jan 14 18:20:09 JST 2003)
|
||||||
|
530 USER and PASS required
|
||||||
|
530 USER and PASS required
|
||||||
|
|
||||||
|
==========================
|
||||||
|
==========================
|
||||||
|
|
||||||
|
GET / HTTP/1.1
|
||||||
|
Host: 222.2.124.65:21
|
||||||
|
Accept: text/html, application/xml;q=0.9, application/xhtml+xml, image/png, image/jpeg, image/gif, image/x-xbitmap, */*;q=0.1
|
||||||
|
Accept-Language: us-US,ru;q=0.9,en;q=0.8
|
||||||
|
Accept-Charset: iso-8859-1, utf-8, utf-16, *;q=0.1
|
||||||
|
Accept-Encoding: text, identity, *;q=0
|
||||||
|
User-Agent: Mozilla/5.0 (X11; U; Linux i686; us; rv:1.9.0.11) Gecko/2009060308 Ubuntu/9.04 (jaunty) Firefox/3.0.11
|
||||||
|
Connection: close
|
||||||
|
|
||||||
|
==========================
|
||||||
|
220-MegaBit Gear TE4121C FTP server ready
|
||||||
|
220 FTE4121_0113C (Tue Jan 14 18:20:09 JST 2003)
|
||||||
|
530 USER and PASS required
|
||||||
|
530 USER and PASS required
|
||||||
|
|
||||||
|
==========================
|
||||||
|
==========================
|
||||||
|
|
||||||
|
GET / HTTP/1.1
|
||||||
|
Host: 222.2.124.200:21
|
||||||
|
Accept: text/html, application/xml;q=0.9, application/xhtml+xml, image/png, image/jpeg, image/gif, image/x-xbitmap, */*;q=0.1
|
||||||
|
Accept-Language: us-US,ru;q=0.9,en;q=0.8
|
||||||
|
Accept-Charset: iso-8859-1, utf-8, utf-16, *;q=0.1
|
||||||
|
Accept-Encoding: text, identity, *;q=0
|
||||||
|
User-Agent: Mozilla/5.0 (X11; U; Linux i686; us; rv:1.9.0.11) Gecko/2009060308 Ubuntu/9.04 (jaunty) Firefox/3.0.11
|
||||||
|
Connection: close
|
||||||
|
|
||||||
|
==========================
|
||||||
|
220-MegaBit Gear TE4121C FTP server ready
|
||||||
|
220 FTE4121_0113C (Tue Jan 14 18:20:09 JST 2003)
|
||||||
|
530 USER and PASS required
|
||||||
|
530 USER and PASS required
|
||||||
|
|
||||||
|
==========================
|
||||||
|
==========================
|
||||||
|
|
||||||
|
GET / HTTP/1.1
|
||||||
|
Host: 222.2.144.207:21
|
||||||
|
Accept: text/html, application/xml;q=0.9, application/xhtml+xml, image/png, image/jpeg, image/gif, image/x-xbitmap, */*;q=0.1
|
||||||
|
Accept-Language: us-US,ru;q=0.9,en;q=0.8
|
||||||
|
Accept-Charset: iso-8859-1, utf-8, utf-16, *;q=0.1
|
||||||
|
Accept-Encoding: text, identity, *;q=0
|
||||||
|
User-Agent: Mozilla/5.0 (X11; U; Linux i686; us; rv:1.9.0.11) Gecko/2009060308 Ubuntu/9.04 (jaunty) Firefox/3.0.11
|
||||||
|
Connection: close
|
||||||
|
|
||||||
|
==========================
|
||||||
|
220 Simple FTPd welcomes you.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
==========================
|
||||||
|
==========================
|
||||||
|
|
||||||
|
GET / HTTP/1.1
|
||||||
|
Host: 222.2.147.250:21
|
||||||
|
Accept: text/html, application/xml;q=0.9, application/xhtml+xml, image/png, image/jpeg, image/gif, image/x-xbitmap, */*;q=0.1
|
||||||
|
Accept-Language: us-US,ru;q=0.9,en;q=0.8
|
||||||
|
Accept-Charset: iso-8859-1, utf-8, utf-16, *;q=0.1
|
||||||
|
Accept-Encoding: text, identity, *;q=0
|
||||||
|
User-Agent: Mozilla/5.0 (X11; U; Linux i686; us; rv:1.9.0.11) Gecko/2009060308 Ubuntu/9.04 (jaunty) Firefox/3.0.11
|
||||||
|
Connection: close
|
||||||
|
|
||||||
|
==========================
|
||||||
|
220 FTP server ready.
|
||||||
|
500 'GET' command not understood.
|
||||||
|
|
||||||
|
==========================
|
||||||
|
==========================
|
||||||
|
|
||||||
|
==========================
|
||||||
|
SSH-2.0-dropbear
|
||||||
|
|
||||||
|
==========================
|
||||||
|
==========================
|
||||||
|
|
||||||
|
==========================
|
||||||
|
SSH-2.0-dropbear
|
||||||
|
|
||||||
|
==========================
|
||||||
|
==========================
|
||||||
|
|
||||||
|
GET / HTTP/1.1
|
||||||
|
Host: 222.2.175.116:21
|
||||||
|
Accept: text/html, application/xml;q=0.9, application/xhtml+xml, image/png, image/jpeg, image/gif, image/x-xbitmap, */*;q=0.1
|
||||||
|
Accept-Language: us-US,ru;q=0.9,en;q=0.8
|
||||||
|
Accept-Charset: iso-8859-1, utf-8, utf-16, *;q=0.1
|
||||||
|
Accept-Encoding: text, identity, *;q=0
|
||||||
|
User-Agent: Mozilla/5.0 (X11; U; Linux i686; us; rv:1.9.0.11) Gecko/2009060308 Ubuntu/9.04 (jaunty) Firefox/3.0.11
|
||||||
|
Connection: close
|
||||||
|
|
||||||
|
==========================
|
||||||
|
220 FTP server ready.
|
||||||
|
500 'GET' command not understood.
|
||||||
|
|
||||||
|
==========================
|
||||||
|
==========================
|
||||||
|
|
||||||
|
GET / HTTP/1.1
|
||||||
|
Host: 222.2.175.94:21
|
||||||
|
Accept: text/html, application/xml;q=0.9, application/xhtml+xml, image/png, image/jpeg, image/gif, image/x-xbitmap, */*;q=0.1
|
||||||
|
Accept-Language: us-US,ru;q=0.9,en;q=0.8
|
||||||
|
Accept-Charset: iso-8859-1, utf-8, utf-16, *;q=0.1
|
||||||
|
Accept-Encoding: text, identity, *;q=0
|
||||||
|
User-Agent: Mozilla/5.0 (X11; U; Linux i686; us; rv:1.9.0.11) Gecko/2009060308 Ubuntu/9.04 (jaunty) Firefox/3.0.11
|
||||||
|
Connection: close
|
||||||
|
|
||||||
|
==========================
|
||||||
|
220 Simple FTPd welcomes you.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
==========================
|
||||||
|
==========================
|
||||||
|
|
||||||
|
GET / HTTP/1.1
|
||||||
|
Host: 222.2.189.106:21
|
||||||
|
Accept: text/html, application/xml;q=0.9, application/xhtml+xml, image/png, image/jpeg, image/gif, image/x-xbitmap, */*;q=0.1
|
||||||
|
Accept-Language: us-US,ru;q=0.9,en;q=0.8
|
||||||
|
Accept-Charset: iso-8859-1, utf-8, utf-16, *;q=0.1
|
||||||
|
Accept-Encoding: text, identity, *;q=0
|
||||||
|
User-Agent: Mozilla/5.0 (X11; U; Linux i686; us; rv:1.9.0.11) Gecko/2009060308 Ubuntu/9.04 (jaunty) Firefox/3.0.11
|
||||||
|
Connection: close
|
||||||
|
|
||||||
|
==========================
|
||||||
|
220 Simple FTPd welcomes you.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
==========================
|
||||||
|
==========================
|
||||||
|
|
||||||
|
==========================
|
||||||
|
SSH-2.0-OpenSSH_6.6p1-hpn14v4
|
||||||
|
|
||||||
|
==========================
|
||||||
|
==========================
|
||||||
|
|
||||||
|
GET / HTTP/1.1
|
||||||
|
Host: 222.3.13.167:21
|
||||||
|
Accept: text/html, application/xml;q=0.9, application/xhtml+xml, image/png, image/jpeg, image/gif, image/x-xbitmap, */*;q=0.1
|
||||||
|
Accept-Language: us-US,ru;q=0.9,en;q=0.8
|
||||||
|
Accept-Charset: iso-8859-1, utf-8, utf-16, *;q=0.1
|
||||||
|
Accept-Encoding: text, identity, *;q=0
|
||||||
|
User-Agent: Mozilla/5.0 (X11; U; Linux i686; us; rv:1.9.0.11) Gecko/2009060308 Ubuntu/9.04 (jaunty) Firefox/3.0.11
|
||||||
|
Connection: close
|
||||||
|
|
||||||
|
==========================
|
||||||
|
220 ibs-soho FTP server (Version 6.4/OpenBSD/Linux-ftpd-0.17) ready.
|
||||||
|
500 'GET / HTTP/1.1': command not understood.
|
||||||
|
500 'HOST: 222.3.13.167:21': command not understood.
|
||||||
|
500 'ACCEPT: text/html, application/xml;q=0.9, application/xhtml+xml, image/png, image/jpeg, image/gif, image/x-xbitmap, */*;q=0.1': command not understood.
|
||||||
|
500 'ACCEPT-LANGUAGE: us-US,ru;q=0.9,en;q=0.8': command not understood.
|
||||||
|
500 'ACCEPT-CHARSET: iso-8859-1, utf-8, utf-16, *;q=0.1': command not understood.
|
||||||
|
500 'ACCEPT-ENCODING: text, identity, *;q=0': command not understood.
|
||||||
|
500 'USER-AGENT: Mozilla/5.0 (X11; U; Linux i686; us; rv:1.9.0.11) Gecko/2009060308 Ubuntu/9.04 (jaunty) Firefox/3.0.11': command not understood.
|
||||||
|
500 'CONNECTION: close': command not understood.
|
||||||
|
500 '': command not understood.
|
||||||
|
|
||||||
|
==========================
|
||||||
|
==========================
|
||||||
|
|
3045
finder.cpp
Normal file
3045
finder.cpp
Normal file
File diff suppressed because it is too large
Load Diff
27
login.txt
Normal file
27
login.txt
Normal file
@ -0,0 +1,27 @@
|
|||||||
|
admin
|
||||||
|
root
|
||||||
|
123123
|
||||||
|
123456
|
||||||
|
12345
|
||||||
|
|
||||||
|
|
||||||
|
cisco
|
||||||
|
super
|
||||||
|
meinsm
|
||||||
|
monitor
|
||||||
|
test
|
||||||
|
ftp
|
||||||
|
1234
|
||||||
|
administrator
|
||||||
|
qwerty
|
||||||
|
recovery
|
||||||
|
Polycom
|
||||||
|
system
|
||||||
|
naadmin
|
||||||
|
telecom
|
||||||
|
dreambox
|
||||||
|
master
|
||||||
|
Admin
|
||||||
|
Root
|
||||||
|
guest
|
||||||
|
backup
|
804
negatives.txt
Normal file
804
negatives.txt
Normal file
@ -0,0 +1,804 @@
|
|||||||
|
yadro.ru
|
||||||
|
Authorization Required
|
||||||
|
Firewall Authentication required before
|
||||||
|
liveinternet
|
||||||
|
#[Dlink]
|
||||||
|
session_login.php?reload=1
|
||||||
|
D-RMS
|
||||||
|
atwiki
|
||||||
|
studio
|
||||||
|
McMyAdmin
|
||||||
|
Aviso de Bloqueio
|
||||||
|
Servico nao disponivel
|
||||||
|
Content-Encoding: gzip
|
||||||
|
no connections allowed
|
||||||
|
pocket-solution
|
||||||
|
trustclick
|
||||||
|
#[/Dlink]
|
||||||
|
530 User access denied
|
||||||
|
prelogin
|
||||||
|
service temporarily unavailable
|
||||||
|
service is temporary unavailable
|
||||||
|
service unavailable
|
||||||
|
403 - forbidden
|
||||||
|
403 access denied
|
||||||
|
is still available
|
||||||
|
php framework
|
||||||
|
BlueBean
|
||||||
|
Herzlich
|
||||||
|
Web-Based Configurator
|
||||||
|
Willkommen!
|
||||||
|
403 forbidden
|
||||||
|
404 not found
|
||||||
|
document not found
|
||||||
|
504 gateway timeout
|
||||||
|
Defaultpage
|
||||||
|
500 internal server error
|
||||||
|
500 - internal server error
|
||||||
|
502 bad gateway
|
||||||
|
505 http version
|
||||||
|
501 not implemented
|
||||||
|
bad request - invalid hostname
|
||||||
|
http error 400.
|
||||||
|
bad request (invalid hostname)
|
||||||
|
include_path=
|
||||||
|
function.require
|
||||||
|
failed to open stream
|
||||||
|
"./cgi-bin/start.cgi?UID=-1&TEMP="
|
||||||
|
408 request time-out
|
||||||
|
421 service not available
|
||||||
|
500 OOPS
|
||||||
|
Comming Soon
|
||||||
|
is sample html
|
||||||
|
/js/thickbox.js
|
||||||
|
google_ad_slot
|
||||||
|
plone
|
||||||
|
openmail
|
||||||
|
You don't have permission
|
||||||
|
institute
|
||||||
|
google-analytics.com
|
||||||
|
googlesyndication
|
||||||
|
temporarily offline
|
||||||
|
temporarily unavailable
|
||||||
|
MELOOK
|
||||||
|
>log in
|
||||||
|
.js_check.html
|
||||||
|
/about-our-site.html
|
||||||
|
/auth.
|
||||||
|
/acquittal.html
|
||||||
|
/building.html
|
||||||
|
/cart/view
|
||||||
|
/catalog/search.php
|
||||||
|
/cgi-bin/welcome.cgi
|
||||||
|
/welcome/
|
||||||
|
application/x-shockwave-flash
|
||||||
|
/customer
|
||||||
|
/esi.cgi?page=status-index.xml
|
||||||
|
/guarantee
|
||||||
|
/html/index.asp
|
||||||
|
/iisstart.asp
|
||||||
|
/images/final-hp
|
||||||
|
/install.php
|
||||||
|
/kontakty
|
||||||
|
/manga/index.cgi
|
||||||
|
/manual/
|
||||||
|
/order
|
||||||
|
/privacy
|
||||||
|
/news
|
||||||
|
/portal-login
|
||||||
|
/product.php
|
||||||
|
/rpauth.html
|
||||||
|
/servlet/wap/login
|
||||||
|
site introuvable
|
||||||
|
shop
|
||||||
|
sell
|
||||||
|
/company
|
||||||
|
/brand
|
||||||
|
/signin
|
||||||
|
/simple.html
|
||||||
|
/soap/
|
||||||
|
/support/
|
||||||
|
/terms
|
||||||
|
/ui/
|
||||||
|
/user/index.php
|
||||||
|
/weblogin.htm
|
||||||
|
/xampp/
|
||||||
|
/zimbra
|
||||||
|
:5000/
|
||||||
|
?hipname=
|
||||||
|
@bk.ru
|
||||||
|
@gmail.com
|
||||||
|
@inbox.ru
|
||||||
|
@list.ru
|
||||||
|
@mail.ru
|
||||||
|
@rambler.ru
|
||||||
|
@yandex.ru
|
||||||
|
+home_42+
|
||||||
|
+i1+
|
||||||
|
+vt_docsystem+
|
||||||
|
16 ch
|
||||||
|
a test web page
|
||||||
|
clinic
|
||||||
|
museum
|
||||||
|
It's works
|
||||||
|
Adobe GoLive
|
||||||
|
Remote Link2
|
||||||
|
about/
|
||||||
|
aboutus
|
||||||
|
about-us
|
||||||
|
about us
|
||||||
|
acceso denegado
|
||||||
|
acceso sistema
|
||||||
|
access the sharecenter
|
||||||
|
actiontec_bottom
|
||||||
|
adsense
|
||||||
|
afrekenen
|
||||||
|
ahcom tecnologia
|
||||||
|
alfresco
|
||||||
|
app service
|
||||||
|
apache_pb.gif
|
||||||
|
airties
|
||||||
|
aktualizacji
|
||||||
|
amicaweb
|
||||||
|
Alan Adı
|
||||||
|
and supervision tool
|
||||||
|
annex b
|
||||||
|
apache http server test
|
||||||
|
apache software foundation
|
||||||
|
apache tomcat
|
||||||
|
apache ha sido instalado
|
||||||
|
application manager
|
||||||
|
apteka
|
||||||
|
arteco ivs spa
|
||||||
|
at&t
|
||||||
|
at-img634
|
||||||
|
autenticacao de acesso
|
||||||
|
auto_detect_lang.asp
|
||||||
|
aviso legal
|
||||||
|
backgroundimagecache
|
||||||
|
bad request
|
||||||
|
baidu
|
||||||
|
beratung
|
||||||
|
berneck
|
||||||
|
btnLive
|
||||||
|
business invest
|
||||||
|
best domain names
|
||||||
|
bitrix
|
||||||
|
bluedragon
|
||||||
|
blog
|
||||||
|
blog/about/
|
||||||
|
blog/comments/
|
||||||
|
bubba|2
|
||||||
|
buffalo inc
|
||||||
|
buy
|
||||||
|
cable modem
|
||||||
|
cafe
|
||||||
|
call us
|
||||||
|
calorie
|
||||||
|
cannot be displayed
|
||||||
|
cannot find
|
||||||
|
ccnwebsrvcontroller
|
||||||
|
church
|
||||||
|
canopy
|
||||||
|
casino
|
||||||
|
cautivo
|
||||||
|
check_hj.html
|
||||||
|
check_user_agent
|
||||||
|
checking javascript support
|
||||||
|
checking language
|
||||||
|
checkpoint.com
|
||||||
|
cheditor
|
||||||
|
chiliproject
|
||||||
|
check availability
|
||||||
|
citrix/xenapp
|
||||||
|
client
|
||||||
|
cloud
|
||||||
|
cmside.htm
|
||||||
|
company.
|
||||||
|
comcast business
|
||||||
|
coming soon
|
||||||
|
commercial property
|
||||||
|
configuration manager
|
||||||
|
configuration file does not
|
||||||
|
confixx
|
||||||
|
construcci
|
||||||
|
consulta
|
||||||
|
contac
|
||||||
|
come back later
|
||||||
|
contat
|
||||||
|
control de inventarios
|
||||||
|
control de solicitudes
|
||||||
|
controles de acceso
|
||||||
|
currently unavailable
|
||||||
|
cooking
|
||||||
|
coltd
|
||||||
|
co.ltd
|
||||||
|
co.,ltd
|
||||||
|
#QNAP shit
|
||||||
|
could be ipv6 addr
|
||||||
|
cp-gateway
|
||||||
|
create an account
|
||||||
|
create new account
|
||||||
|
credit
|
||||||
|
currently measuring
|
||||||
|
currently unreachable
|
||||||
|
cs3 dreamweaver
|
||||||
|
FrontPage
|
||||||
|
TESTPAGE
|
||||||
|
Too many connections
|
||||||
|
BB-HGW
|
||||||
|
OS X Lion
|
||||||
|
Inspire DVR
|
||||||
|
DVR Components Download
|
||||||
|
Homepage Builder
|
||||||
|
dashboard.css
|
||||||
|
dating
|
||||||
|
dbox
|
||||||
|
de iis
|
||||||
|
design house
|
||||||
|
de subsidios
|
||||||
|
de turismo
|
||||||
|
default page
|
||||||
|
default parallels plesk panel
|
||||||
|
default plesk page
|
||||||
|
default web
|
||||||
|
defaultwebpage
|
||||||
|
desserts
|
||||||
|
default-site
|
||||||
|
development company
|
||||||
|
development work
|
||||||
|
device configuration
|
||||||
|
default index file
|
||||||
|
dgc hotspot
|
||||||
|
dishes
|
||||||
|
docsis
|
||||||
|
docsis_system.asp
|
||||||
|
dominio
|
||||||
|
domain error
|
||||||
|
domain has been blocked
|
||||||
|
domain has been registered
|
||||||
|
domain name registration
|
||||||
|
domain registered
|
||||||
|
domainapps.com
|
||||||
|
sale
|
||||||
|
domeny
|
||||||
|
domeingeregistreerd
|
||||||
|
down for maint
|
||||||
|
draytek corp
|
||||||
|
dreambox webcontrol
|
||||||
|
drupal
|
||||||
|
Dreamweaver MX
|
||||||
|
due to maintance
|
||||||
|
dsnextgen.com
|
||||||
|
dsparking.com
|
||||||
|
DATA LAN DISK
|
||||||
|
TEST SITE
|
||||||
|
eap web interface
|
||||||
|
echolife
|
||||||
|
ediciones tierrazul
|
||||||
|
elipgo
|
||||||
|
emta settings
|
||||||
|
en construction
|
||||||
|
enigin plc
|
||||||
|
enigma web interface
|
||||||
|
entertainment
|
||||||
|
equipe ahcom
|
||||||
|
erro ao resolver
|
||||||
|
The requested URL
|
||||||
|
error.asp
|
||||||
|
empty page
|
||||||
|
errors.umi-cms.ru
|
||||||
|
e-trayz
|
||||||
|
evaluaciones
|
||||||
|
exchange/
|
||||||
|
ezwatch pro
|
||||||
|
education
|
||||||
|
fax
|
||||||
|
fax.
|
||||||
|
fax:
|
||||||
|
fax :
|
||||||
|
fashion
|
||||||
|
Fireworks MX
|
||||||
|
fast35xx
|
||||||
|
facebook
|
||||||
|
football
|
||||||
|
forex
|
||||||
|
forgot password
|
||||||
|
free delivery
|
||||||
|
free to play
|
||||||
|
freepbx
|
||||||
|
free-shipping
|
||||||
|
fritz!box
|
||||||
|
functioning normally
|
||||||
|
future home of
|
||||||
|
gaiyou
|
||||||
|
glassfish server
|
||||||
|
globesurfer
|
||||||
|
gmbh
|
||||||
|
industrial
|
||||||
|
help.html
|
||||||
|
market
|
||||||
|
guarantee
|
||||||
|
h.264
|
||||||
|
h264
|
||||||
|
hc.ru
|
||||||
|
hectrix ltd
|
||||||
|
hipname
|
||||||
|
hipoteka
|
||||||
|
hitron technologies
|
||||||
|
holding page
|
||||||
|
holding_page
|
||||||
|
home gateway
|
||||||
|
home.
|
||||||
|
hosting
|
||||||
|
hostline.ru
|
||||||
|
help desk
|
||||||
|
hotspot login
|
||||||
|
htmlanvview:
|
||||||
|
icecast2
|
||||||
|
ie-plugin
|
||||||
|
iis7
|
||||||
|
iis8
|
||||||
|
images/spacer.jpg
|
||||||
|
images/ub15.gif
|
||||||
|
in construction
|
||||||
|
index.cgi?active
|
||||||
|
index.php?action=login
|
||||||
|
info experts
|
||||||
|
information services 8
|
||||||
|
ingrese usuario
|
||||||
|
inicio
|
||||||
|
initservicecookie
|
||||||
|
inloggen
|
||||||
|
insurance
|
||||||
|
intelligent digital security system
|
||||||
|
into the public_html directory
|
||||||
|
invalid url
|
||||||
|
iomega
|
||||||
|
iis windows
|
||||||
|
customer
|
||||||
|
is functioning normally
|
||||||
|
is under construction
|
||||||
|
ispmanager control panel
|
||||||
|
it works
|
||||||
|
ibm websphere
|
||||||
|
is now configured
|
||||||
|
is currently undergoing
|
||||||
|
jbossweb
|
||||||
|
join us
|
||||||
|
joinmember
|
||||||
|
juniper
|
||||||
|
jste heslo
|
||||||
|
kerio connect
|
||||||
|
keyhole peeks
|
||||||
|
kablosuz
|
||||||
|
kloxo control panel
|
||||||
|
kontakt
|
||||||
|
kredyt
|
||||||
|
lacie nas
|
||||||
|
latest tweets
|
||||||
|
legal policies
|
||||||
|
log_off_page.htm
|
||||||
|
login page
|
||||||
|
login para acesso
|
||||||
|
logistics
|
||||||
|
lvrweb
|
||||||
|
epanel
|
||||||
|
commerc
|
||||||
|
official website
|
||||||
|
WebFig
|
||||||
|
in manutenzione
|
||||||
|
Domain is not authorized
|
||||||
|
in costruzione
|
||||||
|
mail_manager
|
||||||
|
magnesium
|
||||||
|
management console
|
||||||
|
mbanking
|
||||||
|
olaHola
|
||||||
|
Wireless N ADSL
|
||||||
|
Account Suspended
|
||||||
|
Session limit reached
|
||||||
|
Access Error: Access Denied
|
||||||
|
Aethra
|
||||||
|
meble
|
||||||
|
microsoft exchange
|
||||||
|
mijn account
|
||||||
|
mobile phone was detected
|
||||||
|
mobile web viewer
|
||||||
|
mobile_viewer_login
|
||||||
|
mobile login
|
||||||
|
Mobile Parking
|
||||||
|
modem (administrator
|
||||||
|
m&w
|
||||||
|
munin
|
||||||
|
my account
|
||||||
|
my cart
|
||||||
|
my homepage
|
||||||
|
myauth
|
||||||
|
navatom
|
||||||
|
navigate to public landing page
|
||||||
|
netdvrv
|
||||||
|
netsafe utm
|
||||||
|
netsurveillance
|
||||||
|
nettalk
|
||||||
|
netvideo
|
||||||
|
newocx
|
||||||
|
nicht aufgeschaltet
|
||||||
|
no web site
|
||||||
|
no site on this
|
||||||
|
nothing to see
|
||||||
|
nothing here
|
||||||
|
not authorized to view
|
||||||
|
nuuo network video recorder
|
||||||
|
nuuo web
|
||||||
|
ntt docomo
|
||||||
|
nvr
|
||||||
|
no longer available
|
||||||
|
o nas
|
||||||
|
obs-helper/menu.jsp
|
||||||
|
official site
|
||||||
|
olvido su password
|
||||||
|
oncell warning
|
||||||
|
one time payment
|
||||||
|
one web server
|
||||||
|
online dating
|
||||||
|
online store
|
||||||
|
oracle application server
|
||||||
|
our partners
|
||||||
|
outlook web
|
||||||
|
oma domain
|
||||||
|
on varattu
|
||||||
|
opening soon
|
||||||
|
openwebmail
|
||||||
|
Directory Listing Denied
|
||||||
|
page=about
|
||||||
|
pagerrorimg
|
||||||
|
pagos
|
||||||
|
parkerad
|
||||||
|
parking.
|
||||||
|
paradox ip module
|
||||||
|
parallels confixx
|
||||||
|
parallels operations automation default
|
||||||
|
parent.location=
|
||||||
|
partners
|
||||||
|
paypal
|
||||||
|
pharmacy
|
||||||
|
phone system
|
||||||
|
phpmyadmin
|
||||||
|
pills
|
||||||
|
place holder
|
||||||
|
placeholder
|
||||||
|
plakaty
|
||||||
|
platinbox
|
||||||
|
please login
|
||||||
|
plesk
|
||||||
|
poker
|
||||||
|
polycom '+model
|
||||||
|
por internet
|
||||||
|
portada
|
||||||
|
portal de
|
||||||
|
postinfo.html
|
||||||
|
price
|
||||||
|
prikol
|
||||||
|
privacy policies
|
||||||
|
virtual private server
|
||||||
|
pro-agro apm
|
||||||
|
produc
|
||||||
|
produtos
|
||||||
|
symfony-project
|
||||||
|
professions
|
||||||
|
File not found
|
||||||
|
sonicwall
|
||||||
|
promo
|
||||||
|
product_id
|
||||||
|
presentation page
|
||||||
|
qnap turbo nas
|
||||||
|
Qloud Server
|
||||||
|
read more
|
||||||
|
redirect server
|
||||||
|
redmine
|
||||||
|
reserviert
|
||||||
|
reg.demos.ru
|
||||||
|
register now
|
||||||
|
registrato
|
||||||
|
register your domain
|
||||||
|
registrarse
|
||||||
|
reklam
|
||||||
|
related searches
|
||||||
|
relatives
|
||||||
|
relaxcms.com
|
||||||
|
remote access controller
|
||||||
|
remote monitoring system
|
||||||
|
remote video surveillance
|
||||||
|
reserved domain
|
||||||
|
residential gateway login
|
||||||
|
restaurant
|
||||||
|
redevelopment
|
||||||
|
rpauth.html
|
||||||
|
rpsys.html
|
||||||
|
ruby on rails
|
||||||
|
ru-center
|
||||||
|
rss buddy
|
||||||
|
roundcube
|
||||||
|
s.r.l.
|
||||||
|
sakura internet
|
||||||
|
sabnzbd
|
||||||
|
samsung digital
|
||||||
|
sapphire journal
|
||||||
|
sbuilder.ru
|
||||||
|
scam_2nd.sis
|
||||||
|
search.
|
||||||
|
searchnut.com
|
||||||
|
searchpage.aspx
|
||||||
|
searchremagnified
|
||||||
|
secure login page
|
||||||
|
securepaynet
|
||||||
|
sedoparking.com
|
||||||
|
selectkind.html
|
||||||
|
server application error
|
||||||
|
server default page
|
||||||
|
servicio
|
||||||
|
shared ip
|
||||||
|
sign in now
|
||||||
|
silverlight
|
||||||
|
sistema fenix
|
||||||
|
sistemas
|
||||||
|
site offline
|
||||||
|
site_manager
|
||||||
|
site just created
|
||||||
|
sitemap
|
||||||
|
site or Page Not Found
|
||||||
|
site is not
|
||||||
|
site_map
|
||||||
|
saitmap
|
||||||
|
stay tuned
|
||||||
|
sitio no encontrado
|
||||||
|
software is running
|
||||||
|
skidki
|
||||||
|
skip intro
|
||||||
|
small business
|
||||||
|
smart switch login
|
||||||
|
smartermail
|
||||||
|
snom
|
||||||
|
sign up
|
||||||
|
sonicwall - authentication
|
||||||
|
spa configuration
|
||||||
|
speed test
|
||||||
|
speedtouch
|
||||||
|
sport
|
||||||
|
skype:
|
||||||
|
src/login.php
|
||||||
|
ssl-vpn/login.esp
|
||||||
|
standalone dvr
|
||||||
|
statcounter
|
||||||
|
status.stm
|
||||||
|
strona w przygotowaniu
|
||||||
|
subsonic
|
||||||
|
sugarcrm
|
||||||
|
sun java system
|
||||||
|
workplace
|
||||||
|
workspace
|
||||||
|
Under Constraction
|
||||||
|
Mobile NAS Router
|
||||||
|
sunny webbox
|
||||||
|
supporto
|
||||||
|
strona w konstrukcji
|
||||||
|
surgeblog
|
||||||
|
Apache Error
|
||||||
|
suspended domain
|
||||||
|
suspendedpage
|
||||||
|
switch administrator
|
||||||
|
sww link
|
||||||
|
synology
|
||||||
|
taobao
|
||||||
|
TopPageFinder.com
|
||||||
|
teamportal
|
||||||
|
teamviewer
|
||||||
|
technical support
|
||||||
|
teles.igate
|
||||||
|
tellion
|
||||||
|
tell
|
||||||
|
tell.
|
||||||
|
TEL(
|
||||||
|
fax(
|
||||||
|
no server available
|
||||||
|
tell:
|
||||||
|
tell :
|
||||||
|
tel/
|
||||||
|
fax/
|
||||||
|
tel
|
||||||
|
tel.
|
||||||
|
tel :
|
||||||
|
tel:
|
||||||
|
tel?
|
||||||
|
tel ?
|
||||||
|
fax?
|
||||||
|
fax ?
|
||||||
|
termos de uso
|
||||||
|
TP-LINK Wireless
|
||||||
|
RT-N
|
||||||
|
RT-G
|
||||||
|
dir320
|
||||||
|
Access denied for user
|
||||||
|
underconstr
|
||||||
|
test page
|
||||||
|
This IP has been banned
|
||||||
|
the best place
|
||||||
|
the best search
|
||||||
|
the leading
|
||||||
|
the page is not
|
||||||
|
the web server is running
|
||||||
|
this object has moved
|
||||||
|
this website is not configured
|
||||||
|
thomson gateway
|
||||||
|
to log in
|
||||||
|
tomza
|
||||||
|
touchstone status
|
||||||
|
townet 108-30-su
|
||||||
|
tralix
|
||||||
|
transfervolumen
|
||||||
|
trixbox
|
||||||
|
try again later
|
||||||
|
tutorial
|
||||||
|
twitter
|
||||||
|
Tlf.
|
||||||
|
mailto:
|
||||||
|
WJND300
|
||||||
|
Home Page
|
||||||
|
temporar in mentenanta
|
||||||
|
under maintanence
|
||||||
|
under-construction
|
||||||
|
under construct
|
||||||
|
under development
|
||||||
|
under konstruktion
|
||||||
|
under maintenance
|
||||||
|
unimep station controller
|
||||||
|
unsub pag
|
||||||
|
upnp devices
|
||||||
|
url could not be retrieved
|
||||||
|
unohditko salasanan
|
||||||
|
value domain
|
||||||
|
verizon
|
||||||
|
verwaltungskonsole
|
||||||
|
viagra
|
||||||
|
visualsvn
|
||||||
|
voice-over-ip
|
||||||
|
voip gateway
|
||||||
|
voip web
|
||||||
|
velkommen
|
||||||
|
vood
|
||||||
|
visit us
|
||||||
|
varaa itsellesi
|
||||||
|
w@de
|
||||||
|
wade
|
||||||
|
web applications
|
||||||
|
web console
|
||||||
|
web device manager
|
||||||
|
web frontend
|
||||||
|
web hosting
|
||||||
|
web remote access
|
||||||
|
web server setup guide
|
||||||
|
web site creator
|
||||||
|
webage unavailable
|
||||||
|
website does not exist
|
||||||
|
web-based configurator
|
||||||
|
webcamx
|
||||||
|
webconfig
|
||||||
|
webcontrol
|
||||||
|
webguard login
|
||||||
|
webrom
|
||||||
|
website is currently
|
||||||
|
webui administration
|
||||||
|
webview
|
||||||
|
webmail
|
||||||
|
welcome.do
|
||||||
|
web development
|
||||||
|
wimax
|
||||||
|
window.location = "/ui"
|
||||||
|
windows home server
|
||||||
|
windows server
|
||||||
|
windows small business server
|
||||||
|
winkelwagen
|
||||||
|
wordpress
|
||||||
|
wowza
|
||||||
|
www.microsoft.com
|
||||||
|
www.ibm.com
|
||||||
|
www.lacie.com
|
||||||
|
www.sedo.com
|
||||||
|
xenserver
|
||||||
|
xfinity
|
||||||
|
xtreamer
|
||||||
|
yahoo
|
||||||
|
you are not logged in
|
||||||
|
your explorer is no support frame
|
||||||
|
your website
|
||||||
|
yweb
|
||||||
|
wkrotce
|
||||||
|
азартные игры
|
||||||
|
аккорды
|
||||||
|
анекдот
|
||||||
|
аптек
|
||||||
|
архив новостей
|
||||||
|
в стадии разработки
|
||||||
|
в разработке
|
||||||
|
права защищены
|
||||||
|
дача
|
||||||
|
даче
|
||||||
|
дешевы
|
||||||
|
дешёвы
|
||||||
|
домен продается
|
||||||
|
домены на продажу
|
||||||
|
доставка
|
||||||
|
заказать доставку
|
||||||
|
заработок в сети
|
||||||
|
знакомства
|
||||||
|
истек срок регистрации
|
||||||
|
карикатуры
|
||||||
|
код регистрации
|
||||||
|
конкурс
|
||||||
|
контакты
|
||||||
|
кухни
|
||||||
|
главная страница
|
||||||
|
личный кабинет
|
||||||
|
лотере
|
||||||
|
международн
|
||||||
|
мода
|
||||||
|
мы предоставляем
|
||||||
|
на реконструкции
|
||||||
|
найти работу
|
||||||
|
находится в разработке
|
||||||
|
наш баннер
|
||||||
|
наша компания
|
||||||
|
низкие цены
|
||||||
|
новый адрес
|
||||||
|
о компании
|
||||||
|
о нас
|
||||||
|
остев
|
||||||
|
партнерк
|
||||||
|
перевод текстов
|
||||||
|
перееха
|
||||||
|
персональный сайт
|
||||||
|
пиши мне
|
||||||
|
пиши нам
|
||||||
|
пишите мне
|
||||||
|
пишите нам
|
||||||
|
подержанные
|
||||||
|
подписаться
|
||||||
|
поиск работы
|
||||||
|
приколы
|
||||||
|
продукция
|
||||||
|
производство
|
||||||
|
процесі розробки
|
||||||
|
работа в интернете
|
||||||
|
регистрации доменных имен
|
||||||
|
рекламные ссылки
|
||||||
|
ремонт
|
||||||
|
сайт в разработке
|
||||||
|
сайт недоступен
|
||||||
|
сайт клана
|
||||||
|
скоро запустится
|
||||||
|
сайт на разработке
|
||||||
|
связь с нами
|
||||||
|
скидк
|
||||||
|
скоро открытие
|
||||||
|
служба поддержки
|
||||||
|
создание недорогих сайтов
|
||||||
|
создание сайтов
|
||||||
|
спонсоры
|
||||||
|
стартовая страни
|
||||||
|
стихи
|
||||||
|
тестовая страница
|
||||||
|
технические работы
|
||||||
|
услуги
|
||||||
|
флешки
|
||||||
|
флэшки
|
||||||
|
футбол
|
||||||
|
юмор
|
||||||
|
новости
|
||||||
|
на реконструкции
|
||||||
|
обновление сайта
|
||||||
|
офис
|
||||||
|
юридич
|
||||||
|
страница не найдена
|
||||||
|
купить
|
||||||
|
прода
|
50
pass.txt
Normal file
50
pass.txt
Normal file
@ -0,0 +1,50 @@
|
|||||||
|
root
|
||||||
|
admin
|
||||||
|
password
|
||||||
|
123456
|
||||||
|
1234
|
||||||
|
12345
|
||||||
|
|
||||||
|
ADMIN
|
||||||
|
|
||||||
|
cisco
|
||||||
|
ftp
|
||||||
|
ROOT
|
||||||
|
123123
|
||||||
|
pass
|
||||||
|
passwd
|
||||||
|
qwerty
|
||||||
|
meinsm
|
||||||
|
monitor
|
||||||
|
test
|
||||||
|
sysadm
|
||||||
|
admin123
|
||||||
|
Admin
|
||||||
|
123321
|
||||||
|
12344321
|
||||||
|
toor
|
||||||
|
qwerty123
|
||||||
|
987654321
|
||||||
|
system
|
||||||
|
telecom
|
||||||
|
dreambox
|
||||||
|
111111
|
||||||
|
1111
|
||||||
|
654321
|
||||||
|
!@#$%^
|
||||||
|
0000
|
||||||
|
000000
|
||||||
|
master
|
||||||
|
12345678
|
||||||
|
666666
|
||||||
|
123123123
|
||||||
|
123454321
|
||||||
|
0123456789
|
||||||
|
qqqqqq
|
||||||
|
administrator
|
||||||
|
sys
|
||||||
|
guest
|
||||||
|
backup
|
||||||
|
Fujiyama
|
||||||
|
fujiyama
|
||||||
|
super
|
25
sshpass.txt
Normal file
25
sshpass.txt
Normal file
@ -0,0 +1,25 @@
|
|||||||
|
hw230f8034t:17932yhf823
|
||||||
|
root:root
|
||||||
|
root:admin
|
||||||
|
admin:admin
|
||||||
|
admin:root
|
||||||
|
backup:backup
|
||||||
|
guest:guest
|
||||||
|
root:master
|
||||||
|
root:1234
|
||||||
|
admin:master
|
||||||
|
admin:111111
|
||||||
|
root:12345
|
||||||
|
root:123456
|
||||||
|
admin:1234
|
||||||
|
admin:12345
|
||||||
|
root:12345678
|
||||||
|
root:123123
|
||||||
|
admin:123456
|
||||||
|
admin:12345678
|
||||||
|
root:654321
|
||||||
|
admin:123123
|
||||||
|
admin:654321
|
||||||
|
root:password
|
||||||
|
admin:pasword
|
||||||
|
test:test
|
3
wflogin.txt
Normal file
3
wflogin.txt
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
[FAIL]
|
||||||
|
admin
|
||||||
|
root
|
10
wfpass.txt
Normal file
10
wfpass.txt
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
[FAIL]
|
||||||
|
admin
|
||||||
|
root
|
||||||
|
pass
|
||||||
|
password
|
||||||
|
toor
|
||||||
|
123123
|
||||||
|
123456
|
||||||
|
12345
|
||||||
|
qwerty
|
Loading…
Reference in New Issue
Block a user