Spamming (Not e-mail spamming)

You can spam in a network using "net send" but you have type the command over and over and over to keep it spamming. I know there is code for VB so that you can set how many times you want it to hit the other computer; I just don't know what it is. Does anyone know what i could se so that i could send a message over and over, or spam the other user? Thanx... I guess this is consider a potential evil message (not really, it is kinda cheap but it can be very useful to me)... Sid_Tranton
- S. Tranton

Comments

  • : You can spam in a network using "net send" but you have type the command over and over and over to keep it spamming. I know there is code for VB so that you can set how many times you want it to hit the other computer; I just don't know what it is. Does anyone know what i could se so that i could send a message over and over, or spam the other user? Thanx... I guess this is consider a potential evil message (not really, it is kinda cheap but it can be very useful to me)... Sid_Tranton
    : - S. Tranton
    :
    If you don't want to type that in over and over again, just create a program with the following code:
    [code]
    Private Sub Form_Load()
    Dim nTimes As Long, nCount As Long, sCode As String
    sCode = InputBox("What code would you like to execute?")
    nTimes = InputBox("Execute code how many times?")
    For nCount = 0 To nTimes
    SendKeys sCode
    Next nCount
    End Sub
    [/code]
    [code]
    ..: Zantos :..
    MegaRiot Productions
    http://www.megariot.funurl.com
    [/code]

  • : : You can spam in a network using "net send" but you have type the command over and over and over to keep it spamming. I know there is code for VB so that you can set how many times you want it to hit the other computer; I just don't know what it is. Does anyone know what i could se so that i could send a message over and over, or spam the other user? Thanx... I guess this is consider a potential evil message (not really, it is kinda cheap but it can be very useful to me)... Sid_Tranton
    : : - S. Tranton
    : :
    : If you don't want to type that in over and over again, just create a program with the following code:
    : [code]
    : Private Sub Form_Load()
    : Dim nTimes As Long, nCount As Long, sCode As String
    : sCode = InputBox("What code would you like to execute?")
    : nTimes = InputBox("Execute code how many times?")
    : For nCount = 0 To nTimes
    : SendKeys sCode
    : Next nCount
    : End Sub
    : [/code]
    : [code]
    : ..: Zantos :..
    : MegaRiot Productions
    : http://www.megariot.funurl.com
    : [/code]
    :
    :
    Thanx... but where do I enter the name of the computer I want to hit in the network? Like "Computer_19" where would i put that so that i can run the program and it knows where to send all the hits?


    - S. Tranton

  • : : : You can spam in a network using "net send" but you have type the command over and over and over to keep it spamming. I know there is code for VB so that you can set how many times you want it to hit the other computer; I just don't know what it is. Does anyone know what i could se so that i could send a message over and over, or spam the other user? Thanx... I guess this is consider a potential evil message (not really, it is kinda cheap but it can be very useful to me)... Sid_Tranton
    : : : - S. Tranton
    : : :
    : : If you don't want to type that in over and over again, just create a program with the following code:
    : : [code]
    : : Private Sub Form_Load()
    : : Dim nTimes As Long, nCount As Long, sCode As String
    : : sCode = InputBox("What code would you like to execute?")
    : : nTimes = InputBox("Execute code how many times?")
    : : For nCount = 0 To nTimes
    : : SendKeys sCode
    : : Next nCount
    : : End Sub
    : : [/code]
    : : [code]
    : : ..: Zantos :..
    : : MegaRiot Productions
    : : http://www.megariot.funurl.com
    : : [/code]
    : :
    : :
    : Thanx... but where do I enter the name of the computer I want to hit in the network? Like "Computer_19" where would i put that so that i can run the program and it knows where to send all the hits?
    :
    :
    : - S. Tranton
    : Oh yea I tried your code and put in the info in the input boxes but nothing happend.. can you help?

    - S. Tranton

  • : : : : You can spam in a network using "net send" but you have type the command over and over and over to keep it spamming. I know there is code for VB so that you can set how many times you want it to hit the other computer; I just don't know what it is. Does anyone know what i could se so that i could send a message over and over, or spam the other user? Thanx... I guess this is consider a potential evil message (not really, it is kinda cheap but it can be very useful to me)... Sid_Tranton
    : : : : - S. Tranton
    : : : :
    : : : If you don't want to type that in over and over again, just create a program with the following code:
    : : : [code]
    : : : Private Sub Form_Load()
    : : : Dim nTimes As Long, nCount As Long, sCode As String
    : : : sCode = InputBox("What code would you like to execute?")
    : : : nTimes = InputBox("Execute code how many times?")
    : : : For nCount = 0 To nTimes
    : : : SendKeys sCode
    : : : Next nCount
    : : : End Sub
    : : : [/code]
    : : : [code]
    : : : ..: Zantos :..
    : : : MegaRiot Productions
    : : : http://www.megariot.funurl.com
    : : : [/code]
    : : :
    : : :
    : : Thanx... but where do I enter the name of the computer I want to hit in the network? Like "Computer_19" where would i put that so that i can run the program and it knows where to send all the hits?
    : :
    : :
    : : - S. Tranton
    : : Oh yea I tried your code and put in the info in the input boxes but nothing happend.. can you help?
    :
    : - S. Tranton
    :
    :
    Alright, an explaination of the code seems to be in order:
    The code starts out by giving dimension to the variables so they can hold information, then you are prompted for the line of code that you want to execute over and over again. Then it asks how many times you want to have this code executed, then it enters a for next loop that using the SendKeys event, wherever your mouse cursor is set (like in a text box for example) the line of code you wanted to execute will be sent. Basically whatever line of code you want to be repeated will actually be like you're typing it in at incredibly fast rates, so the computer thinks you're typing but it's the program acting as the keyboard. I also forgot that one of the properties for SendKeys is a wait period, so if you want the program to wait 5 seconds before it sends the code again, you set the value to 5000 (it's in milliseconds). If you want me to write you a sample project that demonstrates this I can.
    [code]
    ..: Zantos :..
    MegaRiot Productions
    http://www.megariot.funurl.com
    [/code]

  • : : : : : You can spam in a network using "net send" but you have type the command over and over and over to keep it spamming. I know there is code for VB so that you can set how many times you want it to hit the other computer; I just don't know what it is. Does anyone know what i could se so that i could send a message over and over, or spam the other user? Thanx... I guess this is consider a potential evil message (not really, it is kinda cheap but it can be very useful to me)... Sid_Tranton
    : : : : : - S. Tranton
    : : : : :
    : : : : If you don't want to type that in over and over again, just create a program with the following code:
    : : : : [code]
    : : : : Private Sub Form_Load()
    : : : : Dim nTimes As Long, nCount As Long, sCode As String
    : : : : sCode = InputBox("What code would you like to execute?")
    : : : : nTimes = InputBox("Execute code how many times?")
    : : : : For nCount = 0 To nTimes
    : : : : SendKeys sCode
    : : : : Next nCount
    : : : : End Sub
    : : : : [/code]
    : : : : [code]
    : : : : ..: Zantos :..
    : : : : MegaRiot Productions
    : : : : http://www.megariot.funurl.com
    : : : : [/code]
    : : : :
    : : : :
    : : : Thanx... but where do I enter the name of the computer I want to hit in the network? Like "Computer_19" where would i put that so that i can run the program and it knows where to send all the hits?
    : : :
    : : :
    : : : - S. Tranton
    : : : Oh yea I tried your code and put in the info in the input boxes but nothing happend.. can you help?
    : :
    : : - S. Tranton
    : :
    : :
    : Alright, an explaination of the code seems to be in order:
    : The code starts out by giving dimension to the variables so they can hold information, then you are prompted for the line of code that you want to execute over and over again. Then it asks how many times you want to have this code executed, then it enters a for next loop that using the SendKeys event, wherever your mouse cursor is set (like in a text box for example) the line of code you wanted to execute will be sent. Basically whatever line of code you want to be repeated will actually be like you're typing it in at incredibly fast rates, so the computer thinks you're typing but it's the program acting as the keyboard. I also forgot that one of the properties for SendKeys is a wait period, so if you want the program to wait 5 seconds before it sends the code again, you set the value to 5000 (it's in milliseconds). If you want me to write you a sample project that demonstrates this I can.
    : [code]
    : ..: Zantos :..
    : MegaRiot Productions
    : http://www.megariot.funurl.com
    : [/code]
    :

    If you could write the demo code that would be great
    I appriciate it....
    :

    - S. Tranton

  • It's actually really simple code that most beginners know... have you checked the help files? I think the other poster did an excellent job of giving you a general description of what needs to be done to accomplish the result you want. :-)

    Help files are great for these sorts of things :-)

    sweetheart4ws
    http://www.lithasworld.com/


  • [b] if u wsih to spam continuously then use batch file
    as
    [code] :title
    net send lab3_02 "HEllo"
    goto :title
    [/code]
    [/b]
    : You can spam in a network using "net send" but you have type the command over and over and over to keep it spamming. I know there is code for VB so that you can set how many times you want it to hit the other computer; I just don't know what it is. Does anyone know what i could se so that i could send a message over and over, or spam the other user? Thanx... I guess this is consider a potential evil message (not really, it is kinda cheap but it can be very useful to me)... Sid_Tranton
    : - S. Tranton
    :

Sign In or Register to comment.

Howdy, Stranger!

It looks like you're new here. If you want to get involved, click one of these buttons!

Categories