Quote Originally Posted by angel.girl
yer but how can i code in winsock POST


i had with these code

Dim POST As String
POST = "POST /index.php?do HTTP/1.1" & vbCrLf
POST = POST & "Accept: image/gif, image/x-xbitmap, image/jpeg, image/pjpeg, application/x-shockwave-flash, */*" & vbCrLf
POST = POST & "Referer: http://www.senditfake.com/index.php?do" & vbCrLf
POST = POST & "Accept -Language: es" & vbCrLf
POST = POST & "Content-Type: application/x-www-form-urlencoded" & vbCrLf
POST = POST & "Accept -Encoding: gzip , deflate" & vbCrLf
POST = POST & "User-Agent: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1)" & vbCrLf
POST = POST & "Host: www.senditfake.com" & vbCrLf
POST = POST & "Content-Length: 117" & vbCrLf
POST = POST & "Connection: Keep -Alive" & vbCrLf
POST = POST & "cache -Control: no -cache" & vbCrLf
POST = POST & "Cookie: PHPSESSID=kfc8db3gm3acs4k9gk21od8mi1; __utma=42138791.1798081002.1209227100.1209227100.1209227100.1; __utmb=42138791; __utmc=42138791; __utmz=42138791.1209227100.1.1.utmccn=(organic)|utmcsr=google|utmctr=send+email+fake|utmcmd=organic" & vbCrLf

POST = POST & "[email protected]&[email protected]&fromname=angel&subject=hey&message=wuz+up&register=Send+Message+%BB" & vbCrLf
Winsock1.SendData POST
End Sub


but its wont work


Here is Post packet

Code:
POST /index.php?do HTTP/1.1
Accept: image/gif, image/x-xbitmap, image/jpeg, image/pjpeg, application/x-shockwave-flash, */*
Referer: http://www.senditfake.com/index.php?do
Accept-Language: es
Content-Type: application/x-www-form-urlencoded
Accept-Encoding: gzip, deflate
User-Agent: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1)
Host: www.senditfake.com
Content-Length: 117
Connection: Keep-Alive
Cache-Control: no-cache
Cookie: PHPSESSID=kfc8db3gm3acs4k9gk21od8mi1; __utma=42138791.1798081002.1209227100.1209227100.1209227100.1; __utmb=42138791; __utmc=42138791; __utmz=42138791.1209227100.1.1.utmccn=(organic)|utmcsr=google|utmctr=send+email+fake|utmcmd=organic

[email protected]&[email protected]&fromname=angel&subject=hey&message=wuz+up&register=Send+Message+%BB

Not sure if POST /index.php?do HTTP/1.1 is correct but maybe it is; I'm just not sure.

Also you need two VBCrLf's after your last line and before your data

"........google|utmctr=send+email+fake|utmcmd=organic" & vbCrLf & vbCrLf