Advertisement
Guest User

Untitled

a guest
Jul 4th, 2017
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
mIRC 1.02 KB | None | 0 0
  1. on *:SOCKOPEN:2login*:{
  2.   sockwrite -nt $sockname POST /forum/login.php?redirect=viewforum.php&f=1&start=0 HTTP/1.1
  3.   sockwrite -nt $sockname Host: SocksProxyForum.com
  4.   /* Cookies aren't needed in most POST scripts; it's only needed here because this script is having the bot login to the site which requires cookies. */
  5.   sockwrite -nt $sockname Cookie: phpbb2mysql_data=a%3A2%3A%7Bs%3A11%3A%22autologinid%22%3Bs%3A0%3A%22%22%3Bs%3A6%3A%22userid%22%3Bi%3A-1%3B%7D; phpbb2mysql_sid= $+ $hget(dnsbl,id)
  6.   sockwrite -nt $sockname Content-Type: application/x-www-form-urlencoded
  7.   /* The below content length is the char length of "username=arie&password=beertje&redirect=viewforum.php%3Ff%3D1%26start%3D0&login=Log+in" in the line below it */
  8.   sockwrite -nt $sockname Content-Length: 86
  9.   sockwrite -nt $sockname $crlf username=arie&password=beertje&redirect=viewforum.php%3Ff%3D1%26start%3D0&login=Log+in
  10.   msg #dns Logged in - Currently opening Proxy and Socks subforums
  11.   inc %sc
  12.   sockopen 3login $+ %sc SocksProxyForum.com 80
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement