Just a note: "Enviado para:" means Sent to: an action already taken in time.
@thefool, don't waste your time in this, untill now nobody said that it worked well(or is too buggy or is its purpose-do nothing). This is just my opinion.
okay. well i agree it would be bad to use this program. AND it seems to be some sort of email address gathering :S however ill keep playing around with it a bit just to see what it does if it does connect to a smtp server
thefool wrote:okay first packet sniffing experience:
It tries to connect to smtp.uol.com.br @ port 25 [smtp] and sends "borges " "eliot" probably for loggin in. However it does NOT reach the smtp server, so after 20 seconds or so the program pops up with an "unable to send mail" error. So: i guess i will have to wait till the server is up again. I tried to telnet the server and it connects but server does not send any type of "clear and all running" message and does not respond either.
@traumatic: What i am trying to find out? What this program does...
Many ISP:s do not allow connections to their smtp servers from outside their own network, so chances are that you might never get the program to connect properly to the preset server inside the EXE. Maybe you can redirect the connection to your local ip and set up a dummy smtp server that just loggs the data that is sent?
Pupil wrote:
Maybe you can redirect the connection to your local ip and set up a dummy smtp server that just loggs the data that is sent?
good idea! Ill just quickly write a small server here in pureb when i got time.
I can just use the windows host file to redirect the connection, right?
OpenConsole()
PrintN("FakeServer 1.0")
PrintN("By thefool")
Delay(1500)
ClearConsole()
PrintN("*Starting server*")
If InitNetwork() And CreateNetworkServer(25)
PrintN("Sucess! Server running")
Else
PrintN("Failed!")
Input()
End
EndIf
Repeat
event=NetworkServerEvent()
Select event
Case 1
PrintN("App connected!")
Case 2
networkdata.s=Space(1024)
ClientID = NetworkClientID()
ReceiveNetworkData(clientid, @networkdata.s,1024)
PrintN(networkdata.s)
EndSelect
Delay(500)
ForEver
BAD coded yeah, however it should work. the app connected comes but nothing else! so either a fault in the anonymailer or in my code here. do i have to send a "Welcome" message to the app?