Jump to content
ZeroCold

Simple email bomber :D

Recommended Posts

Eu nu stiu visual basic, de astazi incep sa invat :D

Am gasit un tutorial in timp ce cautam un email bomber pt cineva (tutorialul asta ) si am facut asta:

f3hqn8.jpg

Download:

http://fisierulmeu.ro/4388FFUWMUWH/Email-Bomber-rar.html

Am 2 intrebari :

1. Cum pot sa elimin background de la text ???

2. Cum pot sa fac sa trimita email-ul printr-un proxy ??

Multumesc!

  • Downvote 1
Link to comment
Share on other sites

Uite incearca asta:

smb.th.jpg


Imports Microsoft.Win32
Public Class Form1
Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load

Public Structure Struct_INTERNET_PROXY_INFO
Public dwAccessType As Integer
Public proxy As IntPtr
Public proxyBypass As IntPtr
End Structure

Private Declare Auto Function InternetSetOption Lib "wininet.dll" (ByVal hInternet As IntPtr, ByVal dwOption As Integer, ByVal lpBuffer As IntPtr, ByVal lpdwBufferLength As Integer) As Boolean

Private Sub RefreshIESettings(ByVal strProxy As String)
Const INTERNET_OPTION_PROXY As Integer = 38
Const INTERNET_OPEN_TYPE_PROXY As Integer = 3
Dim s_IPI As Struct_INTERNET_PROXY_INFO

s_IPI.dwAccessType = INTERNET_OPEN_TYPE_PROXY
s_IPI.proxy = System.Runtime.InteropServices.Marshal.StringToHGlobalAnsi(strProxy)
s_IPI.proxyBypass = System.Runtime.InteropServices.Marshal.StringToHGlobalAnsi("Global")

Dim intptrStruct As IntPtr = System.Runtime.InteropServices.Marshal.AllocCoTaskMem(System.Runtime.InteropServices.Marshal.SizeOf(s_IPI))
System.Runtime.InteropServices.Marshal.StructureToPtr(s_IPI, intptrStruct, True)
InternetSetOption(IntPtr.Zero, INTERNET_OPTION_PROXY, intptrStruct, System.Runtime.InteropServices.Marshal.SizeOf(s_IPI))

End Sub

Private Sub Timer1_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer1_Tick
'---- PUI AICI RESTUL, SI ADAUGI DUPA: -----'
RefreshIESettings("PROXY:8080")
SMTPServer.Send(MyMailMessage)
End Sub
End Class

Edited by balcky
Link to comment
Share on other sites

1.Explica care background...

openbg.gif

:X

1. TextBox.BackColor = Color.Transparent

2. Folosesti proprietatea credentials a SMTPClient. Exemplu aici:

Connect to a web service through a Proxy Server - CodeProject

Ma refeream la bgroundul de la label nu textbox, presupun ca este la fel

Label.BackColor = Color.Transparent :)

Multumesc pt indicatii, o sa ma mai joc (acu am dat de un keylogger, daca iese ceva pun aici :D ).

Link to comment
Share on other sites

@balcky: e un pic cam ciudata metoda ta pentru ca seteaza un proxy global(pentru tot sistemul), nu?

Da intr-adevar nu am fost atent...seteaza proxy pentru tot programul in sine..am uitat sa implementez un buton pentru activare/dezactivare a optiunii InternetSetOption.

Pentru browser sau sistem de operare nu are nici o influenta numai pe program...

Mai multe gasesti aici despre ce este vorba:

InternetSetOption Function (Windows)

dar nici asa nu imi place cum arata...ar trebui o listbox de proxy cu text importat dintr-un fisier Text...

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



×
×
  • Create New...