Simitka / Proxyman-Search

Proxyman script for searching inside the request-response body and color highlight such call

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Proxyman Search script

A script for searching phrase in the body of the request-response and highlight + adds a comment to the response Снимок экрана 2022-10-27 в 20 51 02

The script can do:

  • Choose where the search will be carried out
    • search in request body
    • search in response body
    • request-response switcher
    • search in request and response at the same time
  • Two search modes:
    • exact search – search for a phrase case-sensitive and space-sensitive
    • soft search – search including the phrase within the phrase, case-insensitive
  • Search for and highlight several different phrases with the same color

Install & Configurate

Tutorial for install and configurate Proxyman are available to the Appsyoulove team on the wiki or easily googled. To configure the script, you need to change the parameter values in the color array Снимок экрана 2022-10-27 в 20 49 23 There are 7 objects in the array, each of which indicates which color to highlight the found phrase: red, blue, green, yellow, purple, gray, white (CommentOnly). Each object has 3 properties, through which the search is configured:

  • whatFind: 'any_phrase_or_[array_of_phrases]' – is what will be searched for
  • whereSearch: 'request/response/everywhere' – where the request will be searched
    • request – in the request body
    • response – in the response body
    • everywhere – in the request & response body at the same time
  • exactSearch: true/false – enable/disable exact search
    • true – exact search is enabled [example]. The value in whatFind will be searched exactly, case-sensitive and space-sensitive. Searching for a phrase inside another phrase doesn't work
    • false – soft search [example]. The value in whatFind will be searched inside other phrases and case-insensitive

Documentation

About

Proxyman script for searching inside the request-response body and color highlight such call

License:The Unlicense


Languages

Language:JavaScript 100.0%