Jump to content

Using Sockets To Login To Msn Groups?


darkcypher

Recommended Posts

Okay, what i want to do is read a page on an MSN group, which my account is registered on, however, for mirc to be able to read the page, the account has to be logged into view it...

 

So far, i have been able to get the page to be read by sockets, by saving it onto my own hosting account (this was just to test i could read what i wanted off the page). However, when i try it with the actual page on the MSN group, it basically asks me to login, so how do i do this?

 

Any suggestions on how i can do this would be of great help, below is the code i have to far, very incomplete.

 

alias connect { /close | /open | /set %sock links $+ $rand(0,1000) }

alias close { /timer1 1 1 /c }
alias open { /timer2 1 3 /o }
alias c { sockclose %sock | echo Sock Closed }
alias o { sockopen %sock groups.msn.com 80 | echo Sock Open }

on *:sockopen:*:{ 
  if ($sockname == %sock $+ ) {
    sockwrite -n $sockname GET %page HTTP/1.1 
    sockwrite -n $sockname Host: groups.msn.com $+ $str($crlf ,2)
  }
}

on *:sockread:*:{ 
  if ($sockname == %sock $+ ) {
    sockread %temp 
    if (profile?user= isin %temp) && (MsgLink isin %temp) { /set %links %links + 1 | /echo Profile Found ( $+ %links $+ ) } 
;code to be added
    if (>Next<IMG isin %temp) { /echo Next Page Added } 
;code to be added
    if (document.cookie isin %temp) { /echo Restart | /connect } 
  }
}

 

Thanks in advance.

Link to comment
Share on other sites

why would you want to login through mirc anyway

just have it run ie or anothrer browser and open the page

 

Link to comment
Share on other sites

Guest XploziOn

i noticed alot here lately on tg's forum people give other people that posts a topic a hard time, like morpheus and ozzy just did to darkcypher what morpheus & ozzy posted didn't have anything to do with the ? he asked. If i could help you darkcypher i would but i dont know much about what you asking.

Link to comment
Share on other sites

I want to login to view the member list though mirc, so the i can make a list of all the links to members profiles quickly and easily, i'm just having trouble making mirc login, i downloaded a few of the old group updaters, so see how they logged in, but i cant quite seem to find anything useful in there.

Link to comment
Share on other sites

Guest X-Fusion

Nobodys giving him a hard time. Morpheous just pointed out he was in the wrong section, and Ozzy was giving his opinion. :rolleyes:

Anyway, if you go to Rumbaars and register there, go to the download section and look for the MSN Groups Manager in the download section. I believe that has an msn group auth, you can study it and see how to do it.

Link to comment
Share on other sites

XploziOn your just out to cause trouble as usuall

i posted to ask why he would want to do it and offered a solution too, so how was i giving him a hard time?

Link to comment
Share on other sites

Guest
This topic is now closed to further replies.
×
×
  • Create New...