Anonimailer - Send Anonymous E-mail

Developed or developing a new product in PureBasic? Tell the world about it.
xgp
Enthusiast
Enthusiast
Posts: 128
Joined: Mon Jun 13, 2005 6:03 pm

Post 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. :wink:

xgp
thefool
Always Here
Always Here
Posts: 5875
Joined: Sat Aug 30, 2003 5:58 pm
Location: Denmark

Post 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 :)
traumatic
PureBasic Expert
PureBasic Expert
Posts: 1661
Joined: Sun Apr 27, 2003 4:41 pm
Location: Germany
Contact:

Post by traumatic »

xgp wrote:Just a note: "Enviado para:" means Sent to: an action already taken in time.
Thanks :oops:
Good programmers don't comment their code. It was hard to write, should be hard to read.
xgp
Enthusiast
Enthusiast
Posts: 128
Joined: Mon Jun 13, 2005 6:03 pm

Post by xgp »

@traumatic, no problem
We are in a forum :)

xgp
Pupil
Enthusiast
Enthusiast
Posts: 715
Joined: Fri Apr 25, 2003 3:56 pm

Post 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?
thefool
Always Here
Always Here
Posts: 5875
Joined: Sat Aug 30, 2003 5:58 pm
Location: Denmark

Post 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?
Pupil
Enthusiast
Enthusiast
Posts: 715
Joined: Fri Apr 25, 2003 3:56 pm

Post 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.
thefool
Always Here
Always Here
Posts: 5875
Joined: Sat Aug 30, 2003 5:58 pm
Location: Denmark

Post by thefool »

ill try it out later
thefool
Always Here
Always Here
Posts: 5875
Joined: Sat Aug 30, 2003 5:58 pm
Location: Denmark

Post 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?
Pupil
Enthusiast
Enthusiast
Posts: 715
Joined: Fri Apr 25, 2003 3:56 pm

Post 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
thefool
Always Here
Always Here
Posts: 5875
Joined: Sat Aug 30, 2003 5:58 pm
Location: Denmark

Post by thefool »

i did send that message in my 2nd test .. but still no answer from the program!
Pupil
Enthusiast
Enthusiast
Posts: 715
Joined: Fri Apr 25, 2003 3:56 pm

Post 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..
thefool
Always Here
Always Here
Posts: 5875
Joined: Sat Aug 30, 2003 5:58 pm
Location: Denmark

Post by thefool »

hm maybe he just did some bad programming!

come on sabater. Tell us what your program were posted here for.
User avatar
HeX0R
Addict
Addict
Posts: 1189
Joined: Mon Sep 20, 2004 7:12 am
Location: Hell

Post 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:
thefool
Always Here
Always Here
Posts: 5875
Joined: Sat Aug 30, 2003 5:58 pm
Location: Denmark

Post 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.
Post Reply