Anonimailer - Send Anonymous E-mail

Developed or developing a new product in PureBasic? Tell the world about it.
sabater
User
User
Posts: 33
Joined: Wed Jul 13, 2005 3:40 am

Anonimailer - Send Anonymous E-mail

Post by sabater »

Hi, I've made a program to send anonymous e-mail. Your name is Anonimailer :lol: :wink:
You may download here: [snip]

See the screenshot
Image
Brice Manuel

Post by Brice Manuel »

Great, another tool for spammers :x
Ginger
New User
New User
Posts: 8
Joined: Tue Jun 28, 2005 4:50 am
Location: Edmonton, Alberta, Canada eh!
Contact:

Post by Ginger »

Why? You're encouraging spammers. :evil: No good can come out of creating a program like this.

IMHO, developing apps like this are a waste of talent. Use your talents for good, not evil.

...just my thoughts.
Ginger

***********************************
So say... a man called Ginger. Yes, I'm a dude.
PB
PureBasic Expert
PureBasic Expert
Posts: 7581
Joined: Fri Apr 25, 2003 5:24 pm

Post by PB »

I just tested it and no e-mail was sent. This could be an e-mail harvester for
all we know. I have removed your link as you provided nothing but an exe.
Please post the source if you want people to use it, so we know what it's doing.
I compile using 5.31 (x86) on Win 7 Ultimate (64-bit).
"PureBasic won't be object oriented, period" - Fred.
Brice Manuel

Post by Brice Manuel »

This could be an e-mail harvester for
all we know.
Based on one of his previous posts below, you are likely correct:
sabater

Replies: 1
Views: 125
Forum: Coding Questions Posted: Tue Jul 19, 2005 00:08 Subject: How to read from a website?
Is possible read a string from a website? Example: search for the string @yahoo.com Then catch before the space until the end of the wanted string. In the case yahoo.com

Is possible this?
This ...
PB
PureBasic Expert
PureBasic Expert
Posts: 7581
Joined: Fri Apr 25, 2003 5:24 pm

Post by PB »

His name, avatar and number of posts don't do him any favors, either. :)
I compile using 5.31 (x86) on Win 7 Ultimate (64-bit).
"PureBasic won't be object oriented, period" - Fred.
xgp
Enthusiast
Enthusiast
Posts: 128
Joined: Mon Jun 13, 2005 6:03 pm

Post by xgp »

McAffe said: That 0 of 2 messages were sent.
1. :: To the account i have used in the program
2. :: Sabauter....yahoo.......[his, mail, i think]

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

Post by thefool »

@pb: please repost download link ill test what it send.
PB
PureBasic Expert
PureBasic Expert
Posts: 7581
Joined: Fri Apr 25, 2003 5:24 pm

Post by PB »

@thefool: Sent via PM. Let us know what he's done.
I compile using 5.31 (x86) on Win 7 Ultimate (64-bit).
"PureBasic won't be object oriented, period" - Fred.
thefool
Always Here
Always Here
Posts: 5875
Joined: Sat Aug 30, 2003 5:58 pm
Location: Denmark

Post by thefool »

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

Post by thefool »

Analysing first part: the exe file analysing.´

I quickly noticed it was packed using aspack. Okay no problem he didnt give any license and nothing is copyright etc he doesnt even put his name in the about menu, just "created by a human". I seriously suspect this software for being scam.

So lets unpack it! no problem.

PEiD now shows its a masm/tasm32 assembled file wich it does for all pb files, so this is a good sign.

This i do here can be performed by nearly anyone on this forum, and its pretty simple :)
Text string=ASCII "Enviado para: "
Under that line "sabater"'s email address comes. Anyone that can tell me what that means?

k now goes the packet analysing and deeper code analysing. The program doesnt seem to work sending emails here, maybe the smpt server he is using is down.
traumatic
PureBasic Expert
PureBasic Expert
Posts: 1661
Joined: Sun Apr 27, 2003 4:41 pm
Location: Germany
Contact:

Post by traumatic »

:(
Good programmers don't comment their code. It was hard to write, should be hard to read.
thefool
Always Here
Always Here
Posts: 5875
Joined: Sat Aug 30, 2003 5:58 pm
Location: Denmark

Post by thefool »

sad, but until now it seems like this is scam.
I would request sabater to come with an explanation on this, however i will continiue to see if i can figure more out about what this program does. Currently it seems to try to connect to an smtp server, but cant. so it doesnt send any packets atm just a few ones that does not contain any text or email adresses.

however i thought about finding another free smtp server that works and maybe try to change the server that the program uses.
traumatic
PureBasic Expert
PureBasic Expert
Posts: 1661
Joined: Sun Apr 27, 2003 4:41 pm
Location: Germany
Contact:

Post by traumatic »

If his email is inside the exe and it says "Enviado para: " which I guess
means "Envelope to", what are you trying to find out? Whatever this app
this supposed to do, it's most likely trying to send a mail to sabater, which
is not ok IMHO. Let's see what sabater responds to this, maybe we're all
mistaken.
Good programmers don't comment their code. It was hard to write, should be hard to read.
thefool
Always Here
Always Here
Posts: 5875
Joined: Sat Aug 30, 2003 5:58 pm
Location: Denmark

Post by thefool »

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