Sinisterly
How to make email bomber with spoofer - Printable Version

+- Sinisterly (https://sinister.ly)
+-- Forum: Coding (https://sinister.ly/Forum-Coding)
+--- Forum: Visual Basic & .NET Framework (https://sinister.ly/Forum-Visual-Basic-NET-Framework)
+--- Thread: How to make email bomber with spoofer (/Thread-How-to-make-email-bomber-with-spoofer)

Pages: 1 2


How to make email bomber with spoofer - bongy97 - 03-04-2015

Anyone mind teaching me. I'm new to vb and stuff


RE: How to make email bomber with spoofer - whatever - 03-04-2015

What's your contribution? Why should we help you?

I'm assuming you registered purely to create this thread, considering this is your first post and you registered today. Nobody's going to want to help you.


RE: How to make email bomber with spoofer - Eclipse - 03-04-2015

>python
>connect to google's smtp server
>login
>use smtp server to send emails
>test
>encase in loop
>???
>profit


RE: How to make email bomber with spoofer - lux - 03-04-2015

(03-04-2015, 03:48 PM)Eclipse Wrote: >python
>connect to google's smtp server
>login
>use smtp server to send emails
>test
>encase in loop
>???
>profit

Pretty sure Google have methods to combat this.


OP, learn some VB first, then look into SMTP, and look into sockets, and how to use proxies.


RE: How to make email bomber with spoofer - Eclipse - 03-05-2015

(03-04-2015, 05:37 PM)Lux Wrote: Pretty sure Google have methods to combat this.

Not really.


RE: How to make email bomber with spoofer - lux - 03-05-2015

(03-05-2015, 06:11 PM)Eclipse Wrote: Not really.

k.

[Image: 8c86dcc087.png]


RE: How to make email bomber with spoofer - Eclipse - 03-05-2015

(03-05-2015, 06:16 PM)Lux Wrote: k.

[Image: 8c86dcc087.png]

Most email bombers use google's smtp server with their own credentials, and I've never come across this before, sending >1000 emails.


RE: How to make email bomber with spoofer - Blunt - 03-05-2015

Its true that gmails limit is 500 mails a day, but as stated with its own smtp server you can reach unlimited I believe...if not its certainly increased most ive done was like 10k


RE: How to make email bomber with spoofer - phyrrus9 - 03-06-2015

Really, all you need to do is send a mail from any machine. All machines are capable of sending it, minimal configuration needed. The trick is receiving them. But since you are writing it yourself you can also put garbage in the "from" field.

example:
Code:
S: 220 smtp.example.com ESMTP Postfix C: HELO relay.example.org S: 250 Hello relay.example.org, I am glad to meet you C: MAIL FROM:<bob@example.org> S: 250 Ok C: RCPT TO:<alice@example.com> S: 250 Ok C: RCPT TO:<theboss@example.com> S: 250 Ok C: DATA S: 354 End data with <CR><LF>.<CR><LF> C: From: "Bob Example" <bob@example.org> C: To: "Alice Example" <alice@example.com> C: Cc: theboss@example.com C: Date: Tue, 15 January 2008 16:02:43 -0500 C: Subject: Test message C: C: Hello Alice. C: This is a test message with 5 header fields and 4 lines in the message body. C: Your friend, C: Bob C: . S: 250 Ok: queued as 12345 C: QUIT S: 221 Bye

take a look at https://tools.ietf.org/html/rfc4021 if you want to actually do it.


RE: How to make email bomber with spoofer - bongy97 - 03-06-2015

(03-06-2015, 02:52 AM)phyrrus9 Wrote: Really, all you need to do is send a mail from any machine. All machines are capable of sending it, minimal configuration needed. The trick is receiving them. But since you are writing it yourself you can also put garbage in the "from" field.

example:
Code:
S: 220 smtp.example.com ESMTP Postfix C: HELO relay.example.org S: 250 Hello relay.example.org, I am glad to meet you C: MAIL FROM:<bob@example.org> S: 250 Ok C: RCPT TO:<alice@example.com> S: 250 Ok C: RCPT TO:<theboss@example.com> S: 250 Ok C: DATA S: 354 End data with <CR><LF>.<CR><LF> C: From: "Bob Example" <bob@example.org> C: To: "Alice Example" <alice@example.com> C: Cc: theboss@example.com C: Date: Tue, 15 January 2008 16:02:43 -0500 C: Subject: Test message C: C: Hello Alice. C: This is a test message with 5 header fields and 4 lines in the message body. C: Your friend, C: Bob C: . S: 250 Ok: queued as 12345 C: QUIT S: 221 Bye

take a look at https://tools.ietf.org/html/rfc4021 if you want to actually do it.
THanks. But what if i wanted to do it with Visual basic?