Page 2 of 3 FirstFirst 123 LastLast
Results 11 to 20 of 25

Thread: Router Login Program

  1. #11
    Member
    Join Date
    Aug 2005
    Posts
    51
    well riot, i do appreciate your advice..... i have given up on my programming for tonight anyway. I guess a brute forcer may have similar code that i could use. I am sorry for being such a ***** but im tired of flames....... that is why i made the post privite.... it was because i thought it had nothing to do with this thread...... thanks for your advice..... i actually didn't think to look for a brute forcer code..... i just wanted to learn how to fill in boxes with visual basic.....

    l8r,
    nate

  2. #12
    Senior Member
    Join Date
    Jun 2004
    Posts
    379
    and thats exactly what a brute forcer dose, thats why i suggested it.

  3. #13
    Member
    Join Date
    Aug 2005
    Posts
    51
    again... i appoligize..... i think that this is a great community of people i just feel that to many people have nothing better to do then to flame someone. I wouldn't mind if you searched google and sent me a link to a source code.... regardless of my prior post in "confuzzzed". I have an attitude problem anywayz.... i dont deny that. I just want to be able to post something and not have to get mad because someone thought they were cute. Thankyou for not being who i thought you were.... i relize now that you are being serious and your not just out to piss me off..... sorry


    thanks,
    nate

  4. #14
    Senior Member
    Join Date
    Jun 2004
    Posts
    379
    np and you could try this site http://www.planet-source-code.com/vb...t.asp?lngWId=1 they should have some code that should help you. Also what are you talking about giving up coding for the night the night time is the best time to code .

  5. #15
    Member
    Join Date
    Aug 2005
    Posts
    51
    lol yea i didnt get up till 2pm today anywayz..... i was thinking more on the lines of playing medal of honor.... i think it will help me to relax just a little.... plus ive had a couple drinks.... and i need to do something that will wake me up just a little.... the night is young. BTW i made another post about sharing files...... i have a few i am sorry for being an @$$ to you.... you only made one post against me no reason to be an @$$..... i am new to forums and i guess i should just get used to people being out to cause problems... i dont want to be one of them.

  6. #16
    Senior Member
    Join Date
    Jun 2004
    Posts
    379
    i got to go for now but send me a link to it and i will see if i can help you k.

  7. #17
    Because you got flamed because you called some one a skiddi for answering some ones question and your flaming people just for giving you a straight answer.
    If I had a problem with it then maybe I would actually take myself seriously. Maybe I wouldn't have had "Antionline's official poo slinging script-kiddie" for a signature.

  8. #18
    Senior Member
    Join Date
    Nov 2001
    Posts
    4,785
    two pages of bs

    basically you need to send the router an http request:

    http://username:[email protected]

    make username and password variables taken from a list/text file

    var1":"var2"@"textbox1.text or something to that effect

    check the return for '200 OK' then use the same string that returned the 200 ok to shell out to your browser (or add a browser control) using that string as an argument. shell(iexplore "username:[email protected]")

    sorry i dont have a windows box running at the moment to start vb6 and be more spacific so you'll have to play with it to get it right but at least im on topic
    Bukhari:V3B48N826 “The Prophet said, ‘Isn’t the witness of a woman equal to half of that of a man?’ The women said, ‘Yes.’ He said, ‘This is because of the deficiency of a woman’s mind.’”

  9. #19
    Member
    Join Date
    Aug 2005
    Posts
    51
    Tedob1, thanks.... that is exactly what i needed to know... i wasnt sure if u could use the username[email protected] format. Thanks, if I wanted to fill in the dialog box... what would i do? how do you make visual basic recognize an active window... i do not know if your familar with autoit...... but with the WinExist or WinActive command i can do what i was saying..... IE:

    WinWaitExist (enter password)
    Send("UserName")
    Send("{tab}")
    Send("password")

    that is a simple version.... but i want to be able to identify windows with visual basic and fill out certain forms in a window... i know visual basic has something similar to autoit's window information tool.... which views specific information about the active window......

  10. #20
    Senior Member
    Join Date
    Nov 2001
    Posts
    4,785
    when you use the userwd format a password dialog doesn't open ....but what ever you shell out to gets focus so any 'sendkeys' sent would be sent to it
    sendkeys ("usr" )
    sendkeys ([tab])
    sendkeys ("pwd")
    sendkeys ([enter])

    or youd have to get the window's 'handle' if it doesn't have focus. ive seen snippets that handle this on differant code sites but i couldn't tell you off the top of my head
    Bukhari:V3B48N826 “The Prophet said, ‘Isn’t the witness of a woman equal to half of that of a man?’ The women said, ‘Yes.’ He said, ‘This is because of the deficiency of a woman’s mind.’”

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •