Jump to content

Login Hotmail with C#...

- - - - -

This topic has been archived. This means that you cannot reply to this topic.
29 replies to this topic

#1
outsid3r

outsid3r

    Programming God

  • Members
  • PipPipPipPipPipPipPip
  • 623 posts
Hi mates :D

I need to login to hotmail proxy directly from C# or any other programming language by code and get the response from server, if login is valid or invalid. If anyone have any ideia i would like to hear :)

Regards

#2
Guest_Jordan_*

Guest_Jordan_*
  • Guests
You should connect to their pop3 server which will allow you to enter a username and password quickly.

#3
outsid3r

outsid3r

    Programming God

  • Members
  • PipPipPipPipPipPipPip
  • 623 posts
Yes, thank you, but i discovered just at some minuts ago that i can't login with a wrong password more than 10 times, the internal system blocks the access...so i can't do anymore what i was trying to do.

Thanks anyway :)

#4
Guest_Jordan_*

Guest_Jordan_*
  • Guests
Was you trying to make a brute force password cracker?

#5
outsid3r

outsid3r

    Programming God

  • Members
  • PipPipPipPipPipPipPip
  • 623 posts
Yes, i have already done it in C#, i builded a class capable to generate all passwords possible for an defined length, i only need now to post data on a webpage using System.Net classes (im studying it now...), and thats it.

#6
amrosama

amrosama

    Writes binary right handed and hex left handed

  • Members
  • PipPipPipPipPipPipPipPipPip
  • 8,674 posts
Did you try using an ip hiding software

#7
outsid3r

outsid3r

    Programming God

  • Members
  • PipPipPipPipPipPipPip
  • 623 posts

amrosama said:

Did you try using an ip hiding software

No effect, it was nothing to do with your ip or with cookies that you receive, it only have to do with the times that you enter a wrong password in the field.

#8
Guest_Jordan_*

Guest_Jordan_*
  • Guests
Does it lock the account you are trying to login as or does it ban the IP based on the amount of connection attempts in a certain amount of time?

#9
Xav

Xav

    Writes binary right handed and hex left handed

  • Members
  • PipPipPipPipPipPipPipPipPip
  • 13,118 posts
If it is the latter, you may be able to get your IP added to the "whitelist".
Jordan said:

Good members, like yourself, stick around and post for ages to come!
Mr. Xav | Blog | Forums

#10
outsid3r

outsid3r

    Programming God

  • Members
  • PipPipPipPipPipPipPip
  • 623 posts

Jordan said:

Does it lock the account you are trying to login as or does it ban the IP based on the amount of connection attempts in a certain amount of time?

Well, after 10 tries the hotmail gives a new error code response, if you go to Sign In and try to login 10 times with a wrong password and after you will need to put the password field and also the security image, the only way to enter is making a program that figures the characters of the image, but unfortunatly the image characters are twisted and no software can figure them out, it was nothing to do with IP's. It's almost impossible crack msn using bruteforce, however many websites doesn't have login protection, so it's easy to discover a password of any user =D

#11
TcM

TcM

    Writes binary right handed and hex left handed

  • Members
  • PipPipPipPipPipPipPipPipPip
  • 11,147 posts
Yeah, maybe they don't.. but they might block your IP.

#12
outsid3r

outsid3r

    Programming God

  • Members
  • PipPipPipPipPipPipPip
  • 623 posts

TcM said:

Yeah, maybe they don't.. but they might block your IP.

Don't know, but i will know soon, now im studying for school exams but soon i will continue to make the program.