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

Site Hunt

The document contains the settings for a web scraping project called "SITE HUNT". It defines 200 suggested bots, captures product IDs from URLs, adds products to carts, parses checkout pages for payment method values, and writes results to a text file.

Uploaded by

paypaltrex
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)
55 views2 pages

Site Hunt

The document contains the settings for a web scraping project called "SITE HUNT". It defines 200 suggested bots, captures product IDs from URLs, adds products to carts, parses checkout pages for payment method values, and writes results to a text file.

Uploaded by

paypaltrex
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": "SITE HUNT",
"SuggestedBots": 200,
"MaxCPM": 0,
"LastModified": "2023-07-25T15:32:38.9816035+00:00",
"AdditionalInfo": "",
"RequiredPlugins": [],
"Author": "JOHN",
"Version": "1.1.2 [SB]",
"SaveEmptyCaptures": false,
"ContinueOnCustom": false,
"SaveHitsToTextFile": false,
"IgnoreResponseErrors": false,
"MaxRedirects": 8,
"NeedsProxies": false,
"OnlySocks": false,
"OnlySsl": false,
"MaxProxyUses": 0,
"BanProxyAfterGoodStatus": false,
"BanLoopEvasionOverride": -1,
"EncodeData": false,
"AllowedWordlist1": "",
"AllowedWordlist2": "",
"DataRules": [],
"CustomInputs": [],
"CaptchaUrl": "",
"IsBase64": false,
"FilterList": [],
"EvaluateMathOCR": false,
"SecurityProtocol": 0,
"ForceHeadless": false,
"AlwaysOpen": false,
"AlwaysQuit": false,
"QuitOnBanRetry": false,
"AcceptInsecureCertificates": true,
"DisableNotifications": false,
"DisableImageLoading": false,
"DefaultProfileDirectory": false,
"CustomUserAgent": "",
"RandomUA": false,
"CustomCMDArgs": "",
"Title": "SITE HUNT",
"IconPath": "Icon\\svbfile.ico",
"LicenseSource": null,
"Message": null,
"MessageColor": "#FFFFFFFF",
"HitInfoFormat": "[{hit.Type}][{hit.Proxy}] {hit.Data} - [{hit.CapturedString}]",
"AuthorColor": "#FFFFB266",
"WordlistColor": "#FFB5C2E1",
"BotsColor": "#FFA8FFFF",
"CustomInputColor": "#FFD6C7C7",
"CPMColor": "#FFFFFFFF",
"ProgressColor": "#FFAD93E3",
"HitsColor": "#FF66FF66",
"CustomColor": "#FFFFB266",
"ToCheckColor": "#FF7FFFD4",
"FailsColor": "#FFFF3333",
"RetriesColor": "#FFFFFF99",
"OcrRateColor": "#FF4698FD",
"ProxiesColor": "#FFFFFFFF"
}

[SCRIPT]
REQUEST GET "https://<URL>/?s=&post_type=product"

HEADER "User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36


(KHTML, like Gecko) Chrome/80.0.3987.149 Safari/537.36"
HEADER "Pragma: no-cache"
HEADER "Accept: */*"

PARSE "<SOURCE>" LR "data-product_id=\"" "\"" -> VAR "vat"

REQUEST POST "https://<URL>/cart/product/"


CONTENT "quantity=1&add-to-cart=<vat>&variation_id=<vat>"
CONTENTTYPE "application/x-www-form-urlencoded"
HEADER "User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36
(KHTML, like Gecko) Chrome/80.0.3987.149 Safari/537.36"
HEADER "Pragma: no-cache"
HEADER "Accept: */*"

REQUEST GET "https://<URL>/cart/checkout/"

HEADER "User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36


(KHTML, like Gecko) Chrome/80.0.3987.149 Safari/537.36"
HEADER "Pragma: no-cache"
HEADER "Accept: */*"

PARSE "<SOURCE>" LR "name=\"payment_method\" value=\"" "\"" Recursive=TRUE


CreateEmpty=FALSE -> CAP "PM"

KEYCHECK BanOnToCheck=FALSE
KEYCHAIN Success OR
KEY "name=\"payment_method\" value=\""
KEYCHAIN Failure OR
KEY "<SOURCE>" DoesNotContain "name=\"payment_method\" value=\""

UTILITY File "HUNT.txt" AppendLines "<URL> | PM = <PM>"

You might also like