What's new

Chat Spammer [Aim, Skype, Facebook]

  • Thread starter Chr0m3 x MoDz
  • Start date
  • Views 154,520
Status
Not open for further replies.
Chr0m3 x MoDz

Chr0m3 x MoDz

From the top to the fall, lessons through it all.
VIP
Sinner Services Seasoned Veteran
Messages
5,377
Reaction score
7,882
Points
1,170
Sin$
0
It's simple to use, put the text you want to spam in the text box then click start then go to for example Facebook and click in the textbox on the victims chat and it will start rapidly spamming them.

7814c5a321657756167a92fb88d4ebc6.png



Download Link:
http://www.mediafire.com/?u6c8hg4stvv2odd

Virus Scan:
1. https://www.virustotal.com/file/a182bd6d2bc436edd06afbc095d2f846d29d94f37224b85cc6282cef5709cae9/analysis/1355944047/
2. http://vscan.novirusthanks.org/anal...242/Y2hyMG0zLXgtbW9kei10ZXh0LXNwYW1tZXItZXhl/
 
Last edited by a moderator:
GoldBl4d3

GoldBl4d3

VIP
VIP
Retired
Programmer Mythical Veteran Legendary Veteran
Messages
3,785
Reaction score
1,452
Points
600
Sin$
0
Nice! Really simple, in fact I believe its only about 8 lines total to do something like that. But good release.
 
Chr0m3 x MoDz

Chr0m3 x MoDz

From the top to the fall, lessons through it all.
VIP
Sinner Services Seasoned Veteran
Messages
5,377
Reaction score
7,882
Points
1,170
Sin$
0
Nice! Really simple, in fact I believe its only about 8 lines total to do something like that. But good release.
A bit more then 8 lines but yes very simple haha thanks
 
GoldBl4d3

GoldBl4d3

VIP
VIP
Retired
Programmer Mythical Veteran Legendary Veteran
Messages
3,785
Reaction score
1,452
Points
600
Sin$
0
A bit more then 8 lines but yes very simple haha thanks

I wasn't trying to make you sound bad I was just saying its simplicity. I also mean 8 lines of code you wrote, in other words, excluding all of the code put their by VS.
 
Chr0m3 x MoDz

Chr0m3 x MoDz

From the top to the fall, lessons through it all.
VIP
Sinner Services Seasoned Veteran
Messages
5,377
Reaction score
7,882
Points
1,170
Sin$
0
I wasn't trying to make you sound bad I was just saying its simplicity. I also mean 8 lines of code you wrote, in other words, excluding all of the code put their by VS.
I didn't think in anyway you were trying to make me look bad? haha and yea that is about true I didn't look at it that way.
 
Chick3nman

Chick3nman

Mostly a chick3n, partially a man.
Messages
743
Reaction score
228
Points
125
Sin$
0
This file is {CLEAN}

Virus scans:
VirusTotal
Virscan
Jotti

Image(s): OP posted picture(s).

Analysis Conclusion: It doesn't seem malicious in any way and does as intended. :smile:

Precautions/Warnings: n/a

Comment for the Developer(s): Nice release! Starting to think it doesn't matter... But it's not crypted :smile: Not a big deal. Found this while snooping around in it though :tongue:
Code:
C:\users\brett\documents\visual studio 2010\Projects\WindowsApplication3\WindowsApplication3\obj\x86\Debug\Facebook Spammer.pdb



(PS: This is something i do a lot anyways so i'm going to start scanning programs and confirming clean/infected for you guys! If you want me to scan/vouch for something you release here, PM me and i will be happy to!)
 
GoldBl4d3

GoldBl4d3

VIP
VIP
Retired
Programmer Mythical Veteran Legendary Veteran
Messages
3,785
Reaction score
1,452
Points
600
Sin$
0
This file is {CLEAN}

Virus scans:
VirusTotal
Virscan
Jotti

Image(s): OP posted picture(s).

Analysis Conclusion: It doesn't seem malicious in any way and does as intended. :smile:

Precautions/Warnings: n/a

Comment for the Developer(s): Nice release! Starting to think it doesn't matter... But it's not crypted :smile: Not a big deal. Found this while snooping around in it though :tongue:
Code:
C:\users\brett\documents\visual studio 2010\Projects\WindowsApplication3\WindowsApplication3\obj\x86\Debug\Facebook Spammer.pdb



(PS: This is something i do a lot anyways so i'm going to start scanning programs and confirming clean/infected for you guys! If you want me to scan/vouch for something you release here, PM me and i will be happy to!)

If this is something your going to start doing, then great. But you need to format your posts properly and cleanly.
 
Chick3nman

Chick3nman

Mostly a chick3n, partially a man.
Messages
743
Reaction score
228
Points
125
Sin$
0
If this is something your going to start doing, then great. But you need to format your posts properly and cleanly.
I thought it was fairly clean already... It's the same format I've been using for a good bit now. That's the reason it still has the p.s. message at the bottom. I forgot to remove it from the form.
 
GoldBl4d3

GoldBl4d3

VIP
VIP
Retired
Programmer Mythical Veteran Legendary Veteran
Messages
3,785
Reaction score
1,452
Points
600
Sin$
0
I thought it was fairly clean already... It's the same format I've been using for a good bit now. That's the reason it still has the p.s. message at the bottom. I forgot to remove it from the form.

No, it has no formatting. I PMed you.
 
HotLikeMexico

HotLikeMexico

- The Great Maes -
Modder Seasoned Veteran Grizzled Veteran
Messages
1,640
Reaction score
555
Points
230
Sin$
0
Yes it's very simple just a spammer, there is just one difference; spam history. Nice idea :smile:
 
Zorg93

NayJames123

Read Art
Fabled Veteran Modder Programmer
Messages
4,273
Reaction score
3,475
Points
650
Sin$
0
let me guess
void timer1_tick(object sender, timertickargs e)
{
SendKeys.Send(textbox1.text + "{ENTER}");
}

:tongue:

Code:
 private void Timer1_Tick(object sender, EventArgs e)
    {
      SendKeys.Send(this.TextBox1.Text);
      SendKeys.Send("{Enter}");
    }
ah well, close enough :tongue:
or whatever the equilavent is in vb.net
 
ObscureCoder

ObscureCoder

Enthusiast
Messages
684
Reaction score
308
Points
125
Sin$
0
A bit more then 8 lines but yes very simple haha thanks
No sir, generally speaking it's about 4 lines.
But it depends what you programmed it in.

Here'san example of Visual C++:

timer1->Start();

SendKeys::Send(this->richTextBox1->Text);
SendKeys::Send("{ENTER}");

timer1->Stop();
 
Status
Not open for further replies.
Top Bottom
Login
Register