### Searchall: Basic File Search Source: https://github.com/naturehi666/searchall/blob/main3.5.6/使用说明.md Initiates a file search operation. Requires specifying a path to scan for files. ```Shell searchall64.exe search -p ``` -------------------------------- ### Searchall: Browser Data Decryption with Compression Source: https://github.com/naturehi666/searchall/blob/main3.5.6/使用说明.md Decrypts data from running browsers and compresses the output results into an archive. ```Shell searchall64.exe browser -b or all -z ``` -------------------------------- ### Searchall: Browser Data Decryption with Custom Path and Compression Source: https://github.com/naturehi666/searchall/blob/main3.5.6/使用说明.md Decrypts data from running browsers using a custom path and compresses the resulting data. ```Shell searchall64.exe browser -b -p "" -z ``` -------------------------------- ### Searchall: Search with Custom Strings Source: https://github.com/naturehi666/searchall/blob/main3.5.6/使用说明.md Performs a file search, matching content against provided custom strings. Predefined rules are also applied by default. ```Shell searchall64.exe search -p -s ", " ``` -------------------------------- ### Searchall: Search with Custom Regex Source: https://github.com/naturehi666/searchall/blob/main3.5.6/使用说明.md Performs a file search, matching content against provided custom regular expressions. Predefined rules are also applied by default. ```Shell searchall64.exe search -p -r ", " ``` -------------------------------- ### Searchall: Default Regex Patterns Source: https://github.com/naturehi666/searchall/blob/main3.5.6/使用说明.md A list of default regular expression patterns used by the searchall tool for identifying sensitive information. ```Go var RegexList = []string{ "accessKeyId[:=]\s*([\w-]+)", "accessKeySecret[:=]\s*([\w-]+)", "(?i).*corp(Id|Secret)=(\w+)", "(?i).*qq\.im\.(sdkappid|privateKey|identifier)=(.*)", "(?i)(?:user(?:name)?\s*[=:])\s*([\S]+)", "(?i)(?:pass(?:word)?\s*[=:])\s*([\S]+)", "(?:账户|账户名|用户名|账号|测试账户)\s*[=::]*\s*([\w@#!$%^&*-]{3,20})", "(?:默认口令|默认密码|口令|密码|测试密码)\s*[=::]*\s*([\w@#!$%^&*-]{3,20})", "jdbc\.(driver|url|type)\s*=(.*)", "#jdbc\.(driver|url|type)\s*=(.*)", } ``` -------------------------------- ### Searchall: Advanced Search Options Source: https://github.com/naturehi666/searchall/blob/main3.5.6/使用说明.md Performs a file search with custom strings, applying only user-defined rules, specifying file extensions, and disabling default rules. ```Shell searchall64.exe search -p -s ", " -u -e ", " -n ``` -------------------------------- ### Searchall: Browser Data Decryption with Custom Path Source: https://github.com/naturehi666/searchall/blob/main3.5.6/使用说明.md Decrypts data from running browsers by specifying a custom directory path for the browser's user data. ```Shell searchall64.exe browser -b -p "" ``` -------------------------------- ### Searchall: Default File Type Categories Source: https://github.com/naturehi666/searchall/blob/main3.5.6/使用说明.md Defines default file type categories and their associated extensions used by the searchall tool. ```Go FileTypes = map[string]string{ "text": ".txt,.md,.conf,.json,", "config": ".cfg,.conf,.ini,.properties,.config,.xml,.env,", "database": ".sql,.yaml,.yml,", } ``` -------------------------------- ### Searchall: Search with Custom Rules Only Source: https://github.com/naturehi666/searchall/blob/main3.5.6/使用说明.md Performs a file search using only user-defined custom strings or regular expressions, excluding predefined rules. ```Shell searchall64.exe search -p -s ", " -u ``` ```Shell searchall64.exe search -p -r ", " -u ``` -------------------------------- ### Searchall: Browser Data Decryption Source: https://github.com/naturehi666/searchall/blob/main3.5.6/使用说明.md Decrypts data from running browsers. Requires administrator privileges. Can target specific browsers or all. ```Shell searchall64.exe browser -b or all ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.