NetCrime
Regular Member
- Mar 9, 2011
- 263
- 124
Can't find a solution for this problem hope someone had similar issues and can share experence dealing with it.
I'm making a BOT for video chat website that has function to send friend invite. This function uses JavaScript to do that action.
Actualy I don't uderstand why it fires same
for ignore and add but that's not main problem.
When I capture packet that is POST'ed to server on Add Friend button click it looks like this:
Actualy POSTDATA looks like it is encrypted:

Why this may occure is it really encrypted or i'm just doing something wrong here?
I'm making a BOT for video chat website that has function to send friend invite. This function uses JavaScript to do that action.
Code:
<li class="ignore"><a href="javascript:void(0)">Ignore</a></li>
<li class="friend"><a href="javascript:void(0)">Add Friend</a></li>
Actualy I don't uderstand why it fires same
Code:
"javascript:void(0)"
When I capture packet that is POST'ed to server on Add Friend button click it looks like this:
Code:
POST (info hided)/amfgateway.php HTTP/1.1Host: (info hided)
Connection: keep-alive
Content-Length: 52
Origin: (info hided)
X-Requested-With: ShockwaveFlash/16.0.0.235
User-Agent: Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/39.0.2171.95 Safari/537.36
Content-Type: application/x-amf
Accept: */*
Referer: (info hided)
Accept-Encoding: gzip, deflate
Accept-Language: lt,en-US;q=0.8,en;q=0.6,ru;q=0.4,pl;q=0.2
Cookie: (info hided)
bcAmfService.addFriend /1
Aa$
Actualy POSTDATA looks like it is encrypted:
Why this may occure is it really encrypted or i'm just doing something wrong here?