What problem does it solve? After accumulating large volumes of traffic for a target site in Yakit History, manually collecting unique paths, recovering login cookies, and reusing that data for follow-up scanning is tedious and error-prone. This Skill scripts the entire data-extraction workflow with Yaklang's db and poc libraries. ## Core Features & Use Cases - History Query & Deduplication: Query HTTP flows by domain with db.QueryHTTPFlowsByKeyword, unquote stored requests with codec.StrconvUnquote, and deduplicate URIs by stripping scheme and query strings. - Cookie Extraction & Payload Dictionaries: Pull login cookies via poc.GetHTTPPacketHeader and persist deduplicated paths into reusable Yakit Payload dictionaries with db.SavePayload and db.YieldPayload. - Authenticated Scanning: Iterate the dictionary and send requests with poc.HTTP carrying the login cookie, using status codes to distinguish live paths from missing ones. - Use Case: After browsing a target through Yakit MITM, extract every unique path for the domain, save them as a Payload group, then fuzz each path with the captured session cookie to map the site's attack surface. ## Quick Start Ask the AI to extract all unique URLs and the login cookie for a given domain from Yakit History, save the paths as a Payload dictionary, and scan each path with the cookie attached.