Advertisement
makimaki

que

Jul 19th, 2010
213
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
mIRC 0.87 KB | None | 0 0
  1. ;PhreikNet Account Cookie Grabber
  2. alias cookie { sockopen cookie www.phreik.net 80 }
  3.  
  4. on *:SOCKOPEN:cookie:{
  5.   sockwrite -n $sockname GET $+(/noht/,cookiegrabber.php?u=,$gettok(%activeaccount,1,32),&p=,$gettok(%activeaccount,2,32) HTTP/1.1,$crlf,  Accept: */*,$crlf,Accept-Language: en-au,$crlf,Accept-Encoding: gzip, deflate,$crlf,User-Agent: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.0.3705; .NET CLR 1.1.4322),$crlf,Host: www.phreik.net,$crlf,Connection: close,$crlf,$crlf)
  6. }
  7.  
  8. on *:SOCKREAD:cookie:{
  9.   if (!$sockerr && $sockbr) {
  10.     sockread %t | tokenize 32 %t
  11.     if ($1 == TICKET:) {
  12.       if ($2 == VALID:) { echo -s 12 * Account Cookie $4- | set %activeaccount $4- | account %activeaccount | sockclose $sockname }
  13.       else { echo -s Error Grabbing Cookie. Reenter Your User Name And Password | sockclose $sockname | setup }
  14.     }
  15.   }
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement