Login Register


How to make email bomber with spoofer filter_list
Author
Message
How to make email bomber with spoofer #1
Anyone mind teaching me. I'm new to vb and stuff

Reply

RE: How to make email bomber with spoofer #2
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.

[+] 2 users Like whatever's post
Reply

RE: How to make email bomber with spoofer #3
>python
>connect to google's smtp server
>login
>use smtp server to send emails
>test
>encase in loop
>???
>profit

[+] 1 user Likes Eclipse's post
Reply

RE: How to make email bomber with spoofer #4
(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.

Reply

RE: How to make email bomber with spoofer #5
(03-04-2015, 05:37 PM)Lux Wrote: Pretty sure Google have methods to combat this.

Not really.

Reply

RE: How to make email bomber with spoofer #6
(03-05-2015, 06:11 PM)Eclipse Wrote: Not really.

k.

[Image: 8c86dcc087.png]

Reply

RE: How to make email bomber with spoofer #7
(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.

Reply

RE: How to make email bomber with spoofer #8
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

Reply

RE: How to make email bomber with spoofer #9
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.

Reply

RE: How to make email bomber with spoofer #10
(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?

Reply







Users browsing this thread: