Results 1 to 13 of 13
  1. #1
    trevor206's Avatar
    Join Date
    Dec 2008
    Gender
    male
    Posts
    324
    Reputation
    12
    Thanks
    107

    Need help from pros..[cause im stumped]

    Um can some one show me/give me the code/ make it for me in case u don't want me to have the code on how to make a email creator that will input random info for like hotmail or yahoo and make a lot of emails a minute if i need to be more clear just ask.

  2. #2
    scimmyboy's Avatar
    Join Date
    Jan 2008
    Gender
    male
    Location
    https://mpgh.net MPGHCash: $442,596,199
    Posts
    5,645
    Reputation
    26
    Thanks
    896
    My Mood
    Happy
    i dunno how to do dat, but i know how to make an email spammer!

  3. #3
    |-|3|_][({}PT3R12's Avatar
    Join Date
    Nov 2008
    Gender
    male
    Location
    UnkwOwnS
    Posts
    449
    Reputation
    12
    Thanks
    472
    My Mood
    Twisted
    You mean like an email bomber? Well if you used the search button/NextGen1's sig you will be able yo find the answer to your problem. There are at least 2 email sources codes that i can remember in this section.

  4. #4
    NextGen1's Avatar
    Join Date
    Dec 2009
    Gender
    male
    Location
    Not sure really.
    Posts
    6,312
    Reputation
    382
    Thanks
    3,019
    My Mood
    Amazed
    Everyone uses Captcha now (unless you go with a smaller email company), Which means you are going to have to make a "Semi automatic" Email Generator which grabs the image and displays it on your form , and the user will have to enter it in to continue, the rest can be automated though.


     


     


     



    The Most complete application MPGH will ever offer - 68%




  5. The Following User Says Thank You to NextGen1 For This Useful Post:

    trevor206 (02-19-2010)

  6. #5
    |-|3|_][({}PT3R12's Avatar
    Join Date
    Nov 2008
    Gender
    male
    Location
    UnkwOwnS
    Posts
    449
    Reputation
    12
    Thanks
    472
    My Mood
    Twisted
    Quote Originally Posted by NextGen1 View Post
    Everyone uses Captcha now (unless you go with a smaller email company), Which means you are going to have to make a "Semi automatic" Email Generator which grabs the image and displays it on your form , and the user will have to enter it in to continue, the rest can be automated though.
    Ahh i completely forgot about Captcha. I'm pretty sure there are some spam email providers out there... Ill see what i can find

  7. The Following User Says Thank You to |-|3|_][({}PT3R12 For This Useful Post:

    trevor206 (02-19-2010)

  8. #6
    ShadowPwnz's Avatar
    Join Date
    Feb 2009
    Gender
    male
    Location
    Hackworld
    Posts
    104
    Reputation
    10
    Thanks
    17
    My Mood
    Dead
    NextGen1, that whole grab captcha thing has been bothering me for a while now. How do you do it? I understand the concept of WebBrowser1.Document.Forms(0).All("id").SetAttribu te("value","valuegoeshere") but I don't understand how to grab captcha and display it in, say, a picturebox.

    Edit: Some spam email providers are mailinator.com and 10minutemail.com
    Last edited by ShadowPwnz; 02-19-2010 at 10:05 PM. Reason: Spam Email Providers

  9. #7
    NextGen1's Avatar
    Join Date
    Dec 2009
    Gender
    male
    Location
    Not sure really.
    Posts
    6,312
    Reputation
    382
    Thanks
    3,019
    My Mood
    Amazed
    There is a "Huge" misconception that capturing a captcha is difficult, fact is Captchas are nothing more then images in .png, jpg etc (most anyway) all you need to do is get element by ID Download the file to application path and set picturebox = downloaded file name

    Example;

    Code:
     Dim captcha1 As HtmlElement
            captcha1 = WebBrowser1.Document.GetElementById("Captcha ID Here")
            Dim path As String = captcha1.FirstChild.GetAttribute("src")
            My.Computer.Network.DownloadFile(path, "C:\Captcha1.jpg") ' or application path
    Off the top of my head


     


     


     



    The Most complete application MPGH will ever offer - 68%




  10. #8
    Bombsaway707's Avatar
    Join Date
    Jun 2009
    Gender
    male
    Location
    Gym
    Posts
    8,799
    Reputation
    791
    Thanks
    4,004
    My Mood
    Amused
    Quote Originally Posted by NextGen1 View Post
    There is a "Huge" misconception that capturing a captcha is difficult, fact is Captchas are nothing more then images in .png, jpg etc (most anyway) all you need to do is get element by ID Download the file to application path and set picturebox = downloaded file name

    Example;

    Code:
     Dim captcha1 As HtmlElement
            captcha1 = WebBrowser1.Document.GetElementById("Captcha ID Here")
            Dim path As String = captcha1.FirstChild.GetAttribute("src")
            My.Computer.Network.DownloadFile(path, "C:\Captcha1.jpg") ' or application path
    Off the top of my head
    hmm, what if each captcha picture location was the same, then couldnt it be
    Code:
    picturebox1.image = "http:\\www.captchais4noobs.com\captcha.jpg"

  11. #9
    NextGen1's Avatar
    Join Date
    Dec 2009
    Gender
    male
    Location
    Not sure really.
    Posts
    6,312
    Reputation
    382
    Thanks
    3,019
    My Mood
    Amazed
    Yes, assuming it is the same, I suggested ID because ID is always the same.
    But yes as long as the image name stays the same it will work just fine.


    Note: The code would be

    Quote Originally Posted by Code
    Picturebox1.imageLocation = "URl + Location here"
    Last edited by NextGen1; 02-20-2010 at 12:14 AM.


     


     


     



    The Most complete application MPGH will ever offer - 68%




  12. The Following User Says Thank You to NextGen1 For This Useful Post:

    ShadowPwnz (02-20-2010)

  13. #10
    ShadowPwnz's Avatar
    Join Date
    Feb 2009
    Gender
    male
    Location
    Hackworld
    Posts
    104
    Reputation
    10
    Thanks
    17
    My Mood
    Dead
    Ty NextGen. Been trying to find that for ages.

  14. #11
    NextGen1's Avatar
    Join Date
    Dec 2009
    Gender
    male
    Location
    Not sure really.
    Posts
    6,312
    Reputation
    382
    Thanks
    3,019
    My Mood
    Amazed
    Quote Originally Posted by ShadowPwnz View Post
    Ty NextGen. Been trying to find that for ages.
    Not a problem


     


     


     



    The Most complete application MPGH will ever offer - 68%




  15. #12
    Bombsaway707's Avatar
    Join Date
    Jun 2009
    Gender
    male
    Location
    Gym
    Posts
    8,799
    Reputation
    791
    Thanks
    4,004
    My Mood
    Amused
    Quote Originally Posted by NextGen1 View Post
    Yes, assuming it is the same, I suggested ID because ID is always the same.
    But yes as long as the image name stays the same it will work just fine.


    Note: The code would be
    oh right sorry, i was just puttin the code out their off the top of my head and forgot the location part

  16. #13
    NextGen1's Avatar
    Join Date
    Dec 2009
    Gender
    male
    Location
    Not sure really.
    Posts
    6,312
    Reputation
    382
    Thanks
    3,019
    My Mood
    Amazed
    Figured that


     


     


     



    The Most complete application MPGH will ever offer - 68%




Similar Threads

  1. [Help] I need help from a pro coder
    By Ege1234567890 in forum CrossFire Hack Coding / Programming / Source Code
    Replies: 11
    Last Post: 07-01-2011, 12:16 PM
  2. Need Some Help From Pro
    By raecher in forum CrossFire Discussions
    Replies: 1
    Last Post: 04-22-2011, 10:06 PM
  3. NEED HELP FROM Pro on hacking game
    By Battlefield 3 in forum Alliance of Valiant Arms (AVA) Help
    Replies: 2
    Last Post: 04-18-2011, 10:14 PM
  4. Need help from a pro
    By t1t0 in forum Combat Arms Help
    Replies: 5
    Last Post: 01-10-2010, 12:23 AM
  5. Need help from an expert cause im POed
    By kylev in forum Combat Arms Hacks & Cheats
    Replies: 5
    Last Post: 08-11-2008, 12:22 PM