Page 2 of 4
Posted: Sat Aug 13, 2005 11:04 am
by xgp
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.
xgp
Posted: Sat Aug 13, 2005 11:06 am
by thefool
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

Posted: Sat Aug 13, 2005 11:08 am
by traumatic
xgp wrote:Just a note: "Enviado para:" means Sent to: an action already taken in time.
Thanks

Posted: Sat Aug 13, 2005 11:13 am
by xgp
@traumatic, no problem
We are in a forum
xgp
Posted: Sat Aug 13, 2005 11:15 am
by Pupil
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?
Posted: Sat Aug 13, 2005 11:40 am
by thefool
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?
Posted: Sat Aug 13, 2005 11:51 am
by Pupil
thefool wrote:
I can just use the windows host file to redirect the connection, right?
Yes, that was what i had in mind, i think it should work.
Posted: Sat Aug 13, 2005 11:52 am
by thefool
ill try it out later
Posted: Sat Aug 13, 2005 12:27 pm
by thefool
never tried to use the network lib real :S
Code: Select all
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?
Posted: Sat Aug 13, 2005 1:23 pm
by Pupil
You should probably send somthing like this when a client tries to connect:
Code: Select all
220 Thefool.com Simple Mail Transfer Service Ready <CRLF>
You should read up a bit on SMTP protocoll here:
http://rfc.net/rfc821.html
Posted: Sat Aug 13, 2005 3:37 pm
by thefool
i did send that message in my 2nd test .. but still no answer from the program!
Posted: Sat Aug 13, 2005 4:25 pm
by Pupil
thefool wrote:i did send that message in my 2nd test .. but still no answer from the program!
If that didn't work i'm all out of ideas, unfortunately..
Posted: Sat Aug 13, 2005 4:38 pm
by thefool
hm maybe he just did some bad programming!
come on sabater. Tell us what your program were posted here for.
Posted: Sat Aug 13, 2005 7:36 pm
by HeX0R
This sounds like a funny purecontest, but as long as no one besides thefool has this thing, we others keep standing in the rain...
And btw.:
PB wrote:His name, avatar and number of posts don't do him any favors, either.
hmm... and what about me ? :roll:
Posted: Sat Aug 13, 2005 9:52 pm
by thefool
@hexor: i dont think your name or avatar is bad. however also with sabater, i dont think its tooo bad but it is kind of violent or is it me?
no purecontest i just volenteard for having a look at the software.