hexagonal
Senior Member
- Apr 17, 2022
- 819
- 883
Hey man. Read this whole thread and I’m seriously impressed with your work. Well done bro.
Hey man. I’ve read this whole thread and I gotta say I’m impressed with your dedication. Your solutions and updates so far are sick, fair play bro. I’m trying to create almost the exact same thing by RE the private Instagram api. I’m wondering if you’d be willing to help me out a little?
I’m still at the research phase trying to figure out all the bits I need to fully understand before I begin coding. My approach is to first capture network traffic from an iPhone using proxy software on my Mac then reverse engineer the api calls and figuring out what they do. Gotta get around ssl pinning for this and understand QUIC and http3 a bit better. Any suggestions on proxy software to avoid ssl pinning? Have you managed to do it without jailbreaking? I can JB if necessary but don’t want insta to know I’m using a jail broken phone.
Also do I need to know much about encryption method and how to decrypt the headers etc?
I have proxies and aged accounts sorted for now so shouldn’t need any advice on that part.
As for coding the bot do you suggest c++ and then running the bot on an AWS ec2 instance? I’d love to use python instead of c++ but can do whatever works best. Don’t have too much experience in AWS as of right now but need to get into it anyway.
Any advice would be greatly appreciated and I wish you luck in the rest of your journey! Thanks man
- Here's a tutorial to intercept the requests without a real device and having to worry about JB https://www.alexschnabl.com/blog/ar...to-reverse-engineer-the-instagram-private-api
- No, only have to do a base64 decode in the auth header to get session id, you should not worry about real meaning of headers
- I don't see any advantage of using C++ over python as you'll be only making HTTP requests if you want to do something fancy then you are in the wrong path first focus on making your accounts bulletproof. I use EC2 because I like the pricing and the control over it but you can buy any basic linux VPS
Here are some tips from this journey
- Fall in love with the process -> This is a horrible journey if you don't love it, some days you'll go to bed thinking that your bot is undetectable and the next day you wake up with all your accounts challenged. What was that? The proxies? The account? Your bot? It's an endless fight
- Test with small batch accounts -> I've tested 20 sellers or so, start with a small order if 10 accounts last to you a month then invest more
- Try different combinations -> Accounts, proxies, bot logic, etc everything matters here just test multiple times
Happy to talk if you want to, like to see people building bots as it's a fun journey
How long did it take you to switch everything from Puppeteer to requests?
Any tips on how to make it look like a real device?
Hours, removed everything related to puppeteer and moved the actions to requests, not complex or hard if you already know which are the requests
Intercept the traffic from the app and understand each HTTP request if you hit the nail then instagram won't have any way to detect your bot
you should make something like this but for linkedin, that's where the true money is/
Probably in the future Instagram has my 100% right now as I'm already deep down on it.


