- Jul 5, 2019
- 245
- 126
I'm curious how many of you need to solve FunCaptcha. If you are currently using it or are seeking a solution how many requests a month do you estimate?
Yes, I do.
Literally every Twitter user![]()
Curious, estimate traffic per month?Ì also need fun captchas bypass for LinkedIn
2Captcha and CapMonsterThanks for your responses. I made an API solution from scratch since the domain was banned from solving on anti-captcha, so trying to get a feel if it might make sense to setup a site with paid access to the API.
Currently using it for a SaaS product that automates outbound sales (email, social, etc).
Do you guys use anti-captcha or 2captcha btw? How is it working for you?
Do they solve your FunCaptcha's pretty well?2Captcha and CapMonster
Well i would say they all solve it equally well.Do they solve your FunCaptcha's pretty well?
This is what I was seeing a lot as well. Does one of the other solvers work consistently for you?I seem to have issues solving captcha via AntiCaptcha service, most of the times it shows this error - "Your noCAPTCHA user response code is missing or invalid."
Try Death By Captcha I used to solve tons of funcaptchas with them.
No SSL. Definitely wouldn't trust them.I find freecaptchabypass.com to be a great funcaptcha solving service online.
It's a bit out of topic though but nay be you can show me a way.Yes, I do.
It's a bit out of topic though but nay be you can show me a way.
I also do reverse engineering on the web APIs and sometimes the android apps as well but recently I came across a few apps like Instagram for example which are using a few encrypted values in their requests like Instagram uses enc_password to send an encrypted password to the server but I wasn't able to figure out how do they create that encrypted password.
Any ideas where I might learn how to reverse engineer these type of encrypted values?
Thanks!
Well, I think may be I didn't make myself clear enough so let me try again.Encryption doesn't usually happen client side (at least not with companies that are half way competent). It happens on the server and they hold the keys to encrypt. Most use one-way hash, so even having that key won't get you the decrypted password. Instead the password is hashed when logging in and matched to the stored hash value (or not).
i.e., you're not going to reverse engineer their encryption.
Well, I think may be I didn't make myself clear enough so let me try again.
Alll I want is to know how does they create these encrypted value (e.g. enc_password for Instagram) so I can create that myself and write bots. I have seen libraries doing that like Instagrapi for Instagram is creating enc_password for Instagram and using that and it's working but I don't know how do they find out at first how the enc_password was created.
May be it's clear now!
I think I'll start a separate thread for that to discuss amd will put an example code there as well.I did a few quick searches and found quite a few different links talking about how to do this. Without trying myself I don't know, but most of the links seem to match up. Try it with Selenium or Puppeteer.