This commit is contained in:
cora32 2015-12-28 01:52:37 +03:00
parent c623e8f957
commit 38567a9177
2 changed files with 4 additions and 4 deletions

View File

@ -398,12 +398,14 @@ int Connector::connectToPort(char* ip, int port)
int sz = strlen(ip); int sz = strlen(ip);
if (443 == port) { if (443 == port) {
strcpy(tempIp, "https://"); strcpy(tempIp, "https://");
strncat(tempIp, ip, sz > 119 ? 119 : sz); }
else if (21 == port) {
strcpy(tempIp, "ftp://");
} }
else { else {
strcpy(tempIp, "http://"); strcpy(tempIp, "http://");
strncat(tempIp, ip, sz > 119 ? 119 : sz);
} }
strncat(tempIp, ip, sz > 119 ? 119 : sz);
if (port != 37777 && port != 8000 && port != 34567 && port != 9000){ if (port != 37777 && port != 8000 && port != 34567 && port != 9000){
if (port == 22) size = SSHAuth::SSHLobby(ip, port, &buffer); //SSH if (port == 22) size = SSHAuth::SSHLobby(ip, port, &buffer); //SSH

View File

@ -40,8 +40,6 @@ lopaStr FTPA::FTPBrute(const char *ip, const int port, PathStr *ps) {
lpString = string(login) + ":" + string(pass); lpString = string(login) + ":" + string(pass);
nip[0] = 0;
sprintf(nip, "ftp://%s", ip);
Connector con; Connector con;
res = con.nConnect(nip, port, &buffer, NULL, NULL, &lpString); res = con.nConnect(nip, port, &buffer, NULL, NULL, &lpString);
if (res == -2) { if (res == -2) {