HTTP POST request experienced developer help?

Nighcore2

Registered Member
Joined
Apr 30, 2019
Messages
69
Reaction score
4
Im getting strange response content/TEXT
Code:
Code:
url = "https://forocoches.com/codigo/"

data = {
    'xxx': 'Xddsss'
}
length = 4 + len(data['xxx'])

headers = {'referer': 'https://forocoches.com/codigo/',
           'content-length':str(length),
           'cache-control':'max-age=0',
           'origin':'https://website.com',
           'upgrade-insecure-requests':'1',
           'user-agent': 'Mozilla/5.0 (Linux; U; Android 9; es-es; POCOPHONE F1 Build/PKQ1.180729.001) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/61.0.3163.128 Mobile Safari/537.36 XiaoMi/MiuiBrowser/10.8.3-g',
            'content-type':'application/x-www-form-urlencoded',
           'accept': 'text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8',
            'accept-encoding':'gzip, deflate, br',
            'accept-language':'es-ES,en-US;q=0.8'


           }
r = requests.post(url, data=data, headers=headers)

print(r.text)
print(r.content)

response

post text = https://pastebin.com/jfiRjX3s

content = https://pastebin.com/MQes98hW

i have a correct http traffic i need to imitate here

Code:
HTTP-Trace-Version: 1.0
Generator: Charles/4.2.8

Method: POST
Protocol-Version: HTTP/2.0
Protocol: https
Host: forocoches.com
File: /codigo/
Remote-Address: 104.20.48.239
Client-Address: 192.168.1.67
Start-Time: 2019-06-26T22:25:43.806+02:00
Request-Begin-Time: 2019-06-26T22:25:43.806+02:00
Request-Time: 2019-06-26T22:25:43.806+02:00
Response-Time: 2019-06-26T22:25:44.056+02:00
End-Time: 2019-06-26T22:25:44.056+02:00
Request-Header-Size: 81
Response-Header-Size: 49
Request-Body-Size: 371
Response-Body-Size: 1699
Request-Body-Decoded: false
Response-Body-Decoded: false
Request-Header:<<--EOF-1561580778987-
:method: POST
:authority: forocoches.com
:scheme: https
:path: /codigo/
content-length: 371
cache-control: max-age=0
origin: https://forocoches.com
upgrade-insecure-requests: 1
content-type: application/x-www-form-urlencoded
save-data: on
user-agent: Mozilla/5.0 (Linux; Android 9; POCOPHONE F1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.101 Mobile Safari/537.36
accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3
referer: https://forocoches.com/codigo/
accept-encoding: gzip, deflate, br
accept-language: es-ES,es;q=0.9,en;q=0.8
cookie: __cfduid=d8a6d2f361751d4f70da5048801f44c661561580731
cookie: __utma=119157022.1500002911.1561580731.1561580731.1561580731.1
cookie: __utmc=119157022
cookie: __utmz=119157022.1561580731.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none)
cookie: __utmt=1
cookie: __utmb=119157022.1.10.1561580731


--EOF-1561580778987-
Response-Header:<<--EOF-1561580778988-
:status: 200
date: Wed, 26 Jun 2019 20:25:44 GMT
content-type: text/html
vary: Accept-Encoding,User-Agent
x-turbo-charged-by: LiteSpeed
expect-ct: max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"
server: cloudflare
cf-ray: 4ed1e981baa85460-MAD
content-encoding: br


--EOF-1561580778988-
Request-Body:<<--EOF-1561580778988-
codigo=Ksksksks&g-recaptcha-response=03AOLTBLSD83NwJgppZTkZnvCO_DsAUZ_u407QlxX7X6rZSEvq_XP6KaYVXu1Ho4NU6QJiBl1bpV_M5DzljB9hIDAU7ZFFfj7KROzrTdEEQWxM53R1_e59GyMPpocS9BX6OkZ7DZ2ZBt5JukDPEVITJ5b7LqgFbcZXxiyleFKlBlbSmlfHSRdnqp6-B54aDoz0m21ie5kv9cFyC1E9RjrfB-LFD9ASNQls_Fwcy_hFzciEQrzkZtWvwzlLLZGjyBZV4FXokD70ekyyOy0apzK0e1P9ERC5rOR15U9Ic4zQZRXZyTB88t9zHFBTI5STzhJPl1bMUOq7mzx6
--EOF-1561580778988-
 
The site behind cloudflare, seems like you did'nt use cookies, so cloudflare reject your post request

Before make POST reqest you should make GET request and store cookies info for the foolowing POST request

cookie: __cfduid=d8a6d2f361751d4f70da5048801f44c661561580731
 
The site behind cloudflare, seems like you did'nt use cookies, so cloudflare reject your post request

Before make POST reqest you should make GET request and store cookies info for the foolowing POST request

cookie: __cfduid=d8a6d2f361751d4f70da5048801f44c661561580731
already did it but now i have another question

Code:
from http.cookiejar import MozillaCookieJar
import requests

s = requests.Session()
s.cookies = MozillaCookieJar('cookies.txt')
# or s.cookies = MozillaCookieJar() and later use s.cookies.filename = 'cookies.txt' or pass the file name to save method.

response = s.get('https://www.website.com/path')

s.cookies.save()


Now inside cookies.txt i have these
.website.com TRUE / TRUE 1593170577 __cfduid db3a586af746527c267bfc5e5e4277e031561634577

what exactly i need to use as cookie in the post? and in my http trace file the one good call i sniffed from phone there are more cookies, those are not needed?


cookie: __utma=119157022.1500002911.1561580731.1561580731.1561580731.1
cookie: __utmc=119157022
cookie: __utmz=119157022.1561580731.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none)
cookie: __utmt=1
cookie: __utmb=119157022.1.10.1561580731

seems thath i found what they are but not how to get them
https://developers.google.com/analytics/devguides/collection/analyticsjs/cookie-usage?hl=en
 
utm* cookies is for google analytics, yeah
you should set cookie headers for post request with __cfduid data
 
utm* cookies is for google analytics, yeah
you should set cookie headers for post request with __cfduid data
okay and cloudfare will not triger out me as "bad" or "bot" if i dont get the google analytics utm* cookies? or arent needed usually?
 
i don't think that cloudflare checks google's cookie, the reason of that: not all sites use google analitycs;)
 
i don't think that cloudflare checks google's cookie, the reason of that: not all sites use google analitycs;)
If you are some experienced i can pay you if you can debug whats going on, i can tell you website in PM and you check but no, seems they check something else. unless i need to put Cloudfare cookies in requests cookies= appart from headers, thath i didnt do thath but i still cannot do it
code:
Code:
import requests
import random
from http_call_get import Get_CFUID as Cloudfare # returns cloudfare uid  from get from website as example dd8550fc3ebda5a0c7b9e38b81fdc791a1561674892
from Captcha_Handler import Captcha_solver as Captcha_String #returns deatbycaptcha g-response-key string for resolve recaptcha

proxys = []
captcha = Captcha_String()
Cloud_id = Cloudfare()
proxies = {
    'http' : random.choice(proxys)
}

url = "https://*****.com*****"
data = {
    'codigo': 'Code',
    'g-recaptcha-response': str(captcha)
}
length = 7 + len(data['codigo'])

headers = {'referer': 'https://*****.com*****',
           'content-length':str(length),
           'cache-control':'max-age=0',
           'origin':'https://*****.com',
           'upgrade-insecure-requests':'1',
           'user-agent': 'Mozilla/5.0 (Linux; U; Android 9; es-es; POCOPHONE F1 Build/PKQ1.180729.001) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/61.0.3163.128 Mobile Safari/537.36 XiaoMi/MiuiBrowser/10.8.3-g',
            'content-type':'application/x-www-form-urlencoded',
           'accept': 'text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8',
            'accept-encoding':'gzip, deflate, br',
            'accept-language':'es-ES,en-US;q=0.8',
            'cookie': '__cfduid='+str(Cloud_id),



           }
r = requests.post(url, data=data, headers=headers,proxies=proxies)

print(r.text)
print(r.content)
print(r.headers)
print(captcha)
print(Cloud_id)

output:
Code:
ƒS ÄçuZÕ«¦úËìfcNa#Ð,?̦ ™ÁI>¤    ©hªí®è¯:¿ïÔBz$)Â<OþÌìÕÒfg¯•BéÞ
“ç    `@Cv€Gžc4·ðgôE)«·ŒŸG‚e_ç1< ó‡g    ¢fÕ2VƒÌh˜¼¸ùƒÕv»™.I/ôð/ёÌ$gP|aS&Èj`ÚŒæø    ¤¦hEN'iÝBYNÐMVXµQ3l™ì´ãï\ךéüR™u?앖ù•U£¢*5
…dw]Y™Wy“v…–Dø¼¹ÐÅݾ·PÇjsl•˺’›xŠKw0Õ½B$Ì 8ÿž˜óˆóÑ!ápSíÖx Ϙ8éaô‚òøKæF1i˜%b6Ä:œRí•ËÜV×ê1†.¹vúu…øù,ú$ñê½2éç~þ’Ø”ö439ï·\íÀlG÷>ŠîC“§O{îãð^(VõÃ,’È2Hçôk€!³FOmTáÒàÞ©C™ðôØ,¹™"ŒêЦkõ~ˆTµôLmWɕ„Ž„ 
pÂò‹¯'¤÷lB~±ØÌBF§ŒrЬÞ7TŽƒûªòy4£ûDuZ<DµY5˜MºÜé>J¢Ïؒ     ælÿ58Ûq{Çt¿¦ýJƒ^{@®ÔNòhěîš{Ò4‹Œ-Ù#¦Î'·öT=[
då:[h§C/|è:Ïˋ]#î¢:'y|H›_÷¤w{;1ÖdÄb6!6Ȳ掍€™9qŠ,ãL ÇâÓ9EåS“h\J'ÞK…Éù“å´ü7œi2ËR}d1â3°¿Qr$ÅHfŸ’,dÉßِÜúPL§Š‹ôüÆS¶Ó»‰—kmšéÁ‰ŸX¬±ñ°~þtJÞR‚Á
€ä}@Ã}eî&N÷¬Xœ/γð˯Ds{~wÚýøÛÿ´»?~Ÿ|ûޟZñu»vY† )¢k"Ų,ßÿ)Nž°0{%l,—‰›G§íWuõxŸó¨ä¶ìŸECJc²÷¶¿PbŒ    @™(Of\¸c£cùÙ U#HBÍÈÚ]‹W?ò¦./ä› Ói|¿™6{o9ùopGúWÛò·Ñu}'˜´ýÿ怢C_:Œ9C_¨LÓgRÀ¨Þœñͺt´ü‡/cÚ3Ù}o!Òô+ο‚§I<‹xFÉ.'ϾŸDñɌ‰4Y&
ǰØ5F–W›ôÎó,!Óňüs&f‹øèc’âã,˜_Å<LCp‘
&Øq¼P‚T
BœyMX=Ñ)ÅÛ¦#CG‰hc¥5„M¶–¯HQï@èCºHŽ!ªúcÎôߍ¶Ú EQü'Íߌ– Ù¥t~äMu4`zgÔúó#Òàg…+f·×ßà¼UkƒŸ@ ©«Ùy„Êv‰K7ˆÓ›¢†‚Çç1ÜΙ¾û_WÄ÷qpܨ$b¶ÇAí†pwØOasX4ÄÒy1šÌ «E`rÓS+ÊZniK‘Ry%'%}ªYO<v(q뤟³BøæÂc£Ü\Èf7¸÷½©[ÛëYzYå•ÜÌL
Ü þnV ð-"fR!3¾J€Gï»)%â«ÙöMðú4oG(±{ûº€…¦²JùW‰¤7Þóæ×˜ôfGqKðnv³1›×ˆœ‚4ÎÂkß;Åýãa;½”/)£iM1E¥²O:b39DÑwÓ+G¼)hÀ€Xnè/…œ{äãÏ#áS{nÆØ3
b'\x83S\x0b\x00\xc4\xe7uZ\xd5\xab\xa6\xfa\xcb\xecfc\x04Na\x1f#\xd0\x0c\x13,?\xcc\xa6\xa0\x01\x99\xc1I>\xa4\t\xa9h\xaa\xed\xae\xe8\xaf:\xbf\xef\x90\xd4Bz$)\x1a\xc2<O\xfe\xcc\xec\xd5\xd2fg\xaf\x95B\xe9\xde\n\x07\x93\xe7\x11\t`@Cv\x80G\x9ec4\xb7\xf0g\x15\xf4E)\xab\xb7\x8c\x9fG\x82e_\xe71\x06<\x00\xf3\x8f\x87g\t\x03\xa2f\xd52\x14V\x83\xcch\x98\xbc\xb8\xf9\x83\xd5v\xbb\x99.\x1dI\x18/\xf4\xf0/\x03\xd1\x91\xcc$gP|a\x14S&\x03\xc8j`\xda\x8c\xe6\xf8\t\xa4\x8d\xa6hEN\'i\xddBYN\xd0MVX\xb5Q3l\x99\xec\xb4\xe3\x81\xef\x1d\\\xd7\x9a\xe9\xfcR\x99u\x19?\x05\x17\xec\x95\x96\xf9\x95U\xa3\xa2*5\n\x85dw]Y\x99Wy\x93v\x17\x85\x96D\xf8\xbc\x13\xb9\xd0\xc5\xdd\x03\xbe\xb7\x0c\xe9\x08P\x7f\x03\xc7js\xadl\x95\xcb\x06\xc2\xba\x92\x9b\x06x\x8aKw0\xd5\xbd\x1aB$\xcc\x008\xff\x9e\x98\xf3\x88\xf3\xd1\x13!\xe1pS\xed\xd6x \xcf\x988\x13\xe9\x10\x07a\x14\xf4\x82\xc3\x11\xb2\xf8K\xe6F1\x13i\x98%b6\xc4:\x9c\x04R\xed\x95\xcb\xdcV\xd7\xea1\x86.\xb9v\xfau\x85\xf8\xf9,\xfa$\x1e\xf1\xea\xbd2\x7f\xe9\xe7~\xfe\x92\xd8\x94\x1b\xf64\x1f3\x8f9\xef\xb7\\\xed\xc0lG\xf7>\x8a\xeeC\x93\x1e\xa7O{\xee\xe3\xf0\x02^(V\xf5\xc3\x12,\x92\xc8\x012H\xe7\xf4k\x80!\xb3FOmT\xe1\xd2\x7f\xe0\xde\xa9C\x99\xf0\xf4\x90\xd8,\x8f\xb9\x05\x1a\x99\x02"\x8c\xea\x8a\x0e\x7f\xa6k\xf5~\x88T\x11\xb5\xf4LmW\xc9\x95\x84\x8e\x84\xa0\n\x12p\xc2\xf2\x8b\xaf\'\xa4\xf7lB\x16~\xb1\xd8\xcc\x18BF\xa7\x8cr\x8a\xac\xde7T\x8e\x83\x16\xfb\xaa\xf2y4\xa3\xfbDu\x1eZ<D\xb5Y5\x98M\x0b\xba\xdc\xe9>J\xa2\xcf\xd8\x92\t\x00\xe6\x14l\xff58\x8f\xdbq{\xc7t\xbf\x02\x1e\xa6\xfd\x0cJ\x83^{@\xae\xd4N\xf2h\xc4\xa0\x08\x9b\xee\x9a\x9e\x08\x19{\xd24\x8b\x8c-\xd9#\xa6\xce\'\xb7\x1d\x04\xf6\x17T=[\n\x90\xd3\xdf\xf0j\x95\xcb\xbd\xcd/\xa5\'\xf7\xd5\xf2\xcb\xc2\xe9\xd8\xab:\xcdT\xbf\xa3Mf\x13h\x9fY\xf8\x81.\xd7z\xcbR\xd7:\xd7\x02\xe20\x91\rd\xe5:[h\x1b\xa7C/|\xe8:\xcf\xcb\x8b]#\xee\xa2:\'y\x19|\x19H\x9b\x7f_\x16\xf7\xa4\x81w{;1\xd6d\x7f\xc4\x18b6!6\xc8\x14\xb2\xe6\x8e\x18\x8d\x80\x999q\x8a,\xe3L\xad\x00\xc7\xe2\xd39E\xad\xe5\x81\x1eS\x93\x15h\\J\x10\'\xdeK\x85\xc9\xf9\x93\x10\xe5\xad\xb4\xfc7\x9ci2\xcbR\x11}d1\xe23\xb0\xbfQr$\x10\xc5Hf\x9f\x92,d\xc9\xdf\xd9\x90\xdc\xfaPL\xa7\x8a\x8b\xf4\xfc\xc6S\xb6\xd3\xbb\x89\x97km\x9a\xe9\xc1\x1e\x89\x9fX\x1f\xac\xb1\xf1\xb0~\xfetJ\xde\x04R\x82\xc1\nEE\xf6\x9f\xecG\x11\x80\x079:\x13\x8e\x07\x13c\xd6\xd40]\xa8\xc6\x99\xd2\x13Z\x86k\x88k\x13A\xc5\xcfAiOv\x96 \x8a\xc7\xe6\x0f\x86L\xe8\x99\xc1\xe6.C\x18krK\xcaf\x0e\x01\xfe\x00g\xb5c\x9c\xb78\x9f\x9d\x00Y.\x0e\xcc \x86\x9c\xd2e\r\x1b\x80\xe4}@\xc3}e\xad\xee&N\xf7\xacX\x9c/\xce\xb3\xf0\xcb\xafDs{~w\xda\xfd\xf8\xdb\xff\xb4\xbb?\x0e~\x9f|\xfb\x12\xde\x9fZ\xf1u\xbbvY\x16\x86\xa0)\xa2k"\xc5\xb2,\xdf\xff)N\x13\x9e\xb00\x05{%l,\x90\x97\x89\x9bG\xa7\xedWu\x10\xf5x\x9f\xf3\x8d\xa8\xe4\xb6\xec\x9fECJ\x0fc\xb2\x81\xf7\x13\xb6\xbfPb\x8c\x13\t@\xc2\x99(Of\\\xb8c\xa3c\xf9\xd9\x04\xa0U#H\x1fB\xcd\x17\xc8\xda]\x8b\x1cW\x1d?\xf2\xa6./\xe4\x9b\xa0\xd3i|\xbf\x996{o\x1b9\xf9o\x1bpG\xfaW\xdb\xf2\xb7\xd1u}\'\x98\xb4\xfd\xff\xe6\x80\xa2C_:\x8c9C_\xa8L\xd3\x07gR\xc0\xa8\xde\xad\x9c\xf1\x11\xcd\xbat\xb4\xfc\x87/c\xda3\xd9}o!\xd2\xf4+\xce\xbf\x82\xa7I<\x8bxF\xc9.\'\xcf\xbe\x9fD\x02\xf1\x02\xc9\x8c\x894\x8dY&\n\xc7\xb0\xd8\x185F\x96W9\x08\x9b\xf4\xce\xf3,!\x02\xd3\xc3\x85\x88\xfcs&f\x8b\xf8\xe8c\x92\xe2\xe3,\x14\x98_\xc5<LCp\x91\n&\xd8q\xbcP\x82T\x1d\nB\x9cyMX\x16=\xd1)\xc5\xdb\xa6#CG\x89hc\xa55\x84M\x01\xb6\x02\x96\xaf\x0fHQ\x1b\xef@\xe8C\xbaH\x8e!\x05\xaa\xfac\xce\xf4\xdf\x8d\xad\xb6\xda\xa0EQ\xfc\'\xcd\x10\xdf\x01\x8c\x96\xa0\xd9\xa5t~\xe4Mu4`zg\xd4\xfa\xf3#\xd2\xe0g\x85+\xadf\xb7\xd7\xdf\xe0\xbcUk\x83\x9f@\xa0\xa9\xab\xd9y\x84\xcav\x89K7\x88\xd3\x9b\xa2\x86\x82\xc7\xe71\x04\xdc\xce\x99\xbe\x07\xfb_W\xc4\x1b\xf7q\x12p\xdc\xa8\x0c$b\xb6\xc7A\xed\x86pw\xd8OasX4\xc4\xd2y1\x9a\xcc\x00\xabE`r\xd3S+\xcaZniK\x91\x1aR\x14y%\'%}\xaaYO<v(q\x1c\xeb\xa4\x9f\x12\xb3B\x13\xf8\xe6\xc2c\xa3\xdc\\\xc8f\x027\xb8\xf7\x04\xbd\xa9[\xdb\xebYzY\xe5\x95\xdc\xccL\nO`\x97t\x0e\x11\xbb\xbc\xbaP\x87e\xbef<\xed\x91\x8b+\xa7\xaez\xfb]\xa8\xd64\x93\xa4\x9a\xbc\xc3\xcb\xfc#\xdc\xd7\xc4\xef=\xc8\x86{2\xf7"\x18\xe4\xd5\xc9\xcb1J<\'\xdeL\x95\xb6\xfdt,\x87\xd9\xbdV\x9b\x89\xb3\xd3\xa1?5j\xd1\x08Y\x9b\x9bp\x19\r\x9dR:x\x1bU\xcaM\x04\xd3]H\xdf\xb4\x13\x1f\xe3\x08\x01pC\xa3\xd2qVZ\x01l\xc2\x07\xa0\xa2\xd9c\x1aE\xca\xfcx\x8b\xf6\x1cH\x9d\xb5yJd\xc5T\xdf\xdc\xb8\xa1P\'\'\xd2W\xe3\x9c5\x01\xc7\xa3\x13\x8e\xfc\xc2I\x08\xcf\x93\xce\x13/R\xf9\x00\x93\xbd\xf3\xcd\x81\x0b\x95\x0e\xc4l;\xfd.\xe5?\x98\xfc(\xd1\xfe\x04\xa4p\x9c\xb7\xcb\xf7\xd7\xbf\x8d\xb2\x91c\xc4\xd3\xdf\xf61t\xfd^\xbb\xd7\r\xdc \xfenV\xa0\xf0-"\xb2\x08fR!3\xbeJ\x80G\xef\xbb)%\xe2\xab\xd9\xf6M\xf0\xfa4oG(\x03\xb1\x05{\xfb\xba\x80\x1f\x85\xa6\x0e\xb2J\xf9W\x89\xa47\xde\xf3\xe6\xd7\x98\xf4fGqK\xf0\x01nv\xb31\x9b\xd7\x88\x9c\x13\x82\x114\xce\xc2k\xdf;\xc5\xfd\xe3\x02a;\xbd\x94/)\xa3iM1\x0fE\xa5\xb2O:b\x1c39D\xd1w\x03\xd3\x0c+G\xbc)h\xc0\x80Xn\xe8/\x85\x07\x9c{\x0f\xe4\xe3\xcf#\xe1S\x01\x19{n\x7f\xc6\xd8\x0b3\x0f'
{'Date': 'Thu, 27 Jun 2019 22:34:52 GMT', 'Content-Type': 'text/html', 'Transfer-Encoding': 'chunked', 'Connection': 'keep-alive', 'Vary': 'Accept-Encoding', 'Expect-CT': 'max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"', 'Server': 'cloudflare', 'CF-RAY': '4edae40ebac7d675-MAD', 'Content-Encoding': 'br'}
03AOLTBLROnBgZkdYwMh7aZPokiv-S9qEg0Qm4eaxYtKHxzVwdlm0Sc14AMFuHPju8Sto7NN7O9oj9C7evOnNmTevsCo2FJmbffWtjD3KpcOaWEHG4ig-zF7qN1vPvv3xgJP6smOqdwcaMITVLML0uLb59WHm40fOmJnEpCg6M4ePjMt3Lehia5mgcYP5q5sSo82oevD2G4OSg3ZSfOA0FIGiZGovZuEw9Y0ylX1vd4TjVGMOEFhozVBK89ZdRcNzIMjb43TdB816ia-YJ4y81C7jIrTiHWUAtVZ2q6mpcjXWmdTdr1OamdnpuTg7i7M3BwoHX-IHAekU8IHpCUrCNfJp0FawLT73jawLZSFk140ykApGdIi4zxsdlbxUu2j75wjA0WCLVVpAV #recaptcha string code for g-captcha-response

dd8550fc3ebda5a0c7b9e38b81fdc791a1561674892#    CLOUDFARE UID
 
by the way in the sniffed http request i have from phone browser the body is
"
codigo=Ksksksks&g-recaptcha-response=03AOLTBLSD83NwJgppZTkZnvCO_DsAUZ_u407QlxX7X6rZSEvq_XP6KaYVXu1Ho4NU6QJiBl1bpV_M5DzljB9hIDAU7ZFFfj7KROzrTdEEQWxM53R1_e59GyMPpocS9BX6OkZ7DZ2ZBt5JukDPEVITJ5b7LqgFbcZXxiyleFKlBlbSmlfHSRdnqp6-B54aDoz0m21ie5kv9cFyC1E9RjrfB-LFD9ASNQls_Fwcy_hFzciEQrzkZtWvwzlLLZGjyBZV4FXokD70ekyyOy0apzK0e1P9ERC5rOR15U9Ic4zQZRXZyTB88t9zHFBTI5STzhJPl1bMUOq7mzx6"

maybe im putting bad? cause im just putting codigo: code captcha:captcha-string im not putting & and all together, idk
 
PM me the site and what you try exactly to do, i will try repeat and find what's trouble
 
Hey friend, I made one of these back in the day. Best way to do it is by using selenium. If Elektric ever posted a new Instagram post, my tool would scrape with Regex the code (because he had a certain format), and then open a chrome window and fill it out.

It's best to complete the captcha yourself as you can't trust most of the captcha services, they will take too long and your invitation will shortly be gone. PM me if you have any questions :)
 
Hey friend, I made one of these back in the day. Best way to do it is by using selenium. If Elektric ever posted a new Instagram post, my tool would scrape with Regex the code (because he had a certain format), and then open a chrome window and fill it out.

It's best to complete the captcha yourself as you can't trust most of the captcha services, they will take too long and your invitation will shortly be gone. PM me if you have any questions :)
2captcha times are pretty good, i think i can get some by using their service but doing in big queantities, like getting 50/60 keys at the same time and use the first 20, the fastest ones, a lot of captchas will be used but 15-25seconds captchas i think in some way some would get the invitation. But i also plan on sending the code to my telegram acc an activate notifications like thath everytime new code is submited i would manually too try to get em
 
The requests library doesn't automatically decode brotli ("br" in accept-encoding). Remove it or decode it.
so i remove entire 'accept-encoding' header or i just let gzip and deflate too?

'accept-encoding':'gzip, deflate',
 
Back
Top