{"id":18518749,"url":"https://github.com/karma9874/authinspector","last_synced_at":"2025-07-24T14:33:23.150Z","repository":{"id":210551229,"uuid":"726578713","full_name":"karma9874/AuthInspector","owner":"karma9874","description":"Automated authorization checks with multiple headers tool written in golang","archived":false,"fork":false,"pushed_at":"2024-01-03T15:44:59.000Z","size":581,"stargazers_count":8,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-04-10T02:44:49.378Z","etag":null,"topics":["authorization","bug-bounty","golang","privilege-escalation","security-scanner","security-testing","security-tools"],"latest_commit_sha":null,"homepage":"","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"agpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/karma9874.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2023-12-02T19:18:12.000Z","updated_at":"2024-07-05T19:17:49.000Z","dependencies_parsed_at":"2023-12-25T11:28:29.568Z","dependency_job_id":"775ecd70-d6ff-42d2-8126-b9955c2a74b5","html_url":"https://github.com/karma9874/AuthInspector","commit_stats":null,"previous_names":["karma9874/authinspector"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/karma9874/AuthInspector","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/karma9874%2FAuthInspector","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/karma9874%2FAuthInspector/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/karma9874%2FAuthInspector/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/karma9874%2FAuthInspector/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/karma9874","download_url":"https://codeload.github.com/karma9874/AuthInspector/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/karma9874%2FAuthInspector/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":266855796,"owners_count":23995553,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-07-24T02:00:09.469Z","response_time":99,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["authorization","bug-bounty","golang","privilege-escalation","security-scanner","security-testing","security-tools"],"created_at":"2024-11-06T17:14:26.366Z","updated_at":"2025-07-24T14:33:23.122Z","avatar_url":"https://github.com/karma9874.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# AuthInspector\n\n[![Apache-2.0 License](https://img.shields.io/badge/license-Apache2.0-blue.svg)](http://www.apache.org/licenses/) \n[![Twitter Follow](https://img.shields.io/twitter/follow/karma9874?label=Follow\u0026style=social)](https://twitter.com/karma9874)\n[![GitHub followers](https://img.shields.io/github/followers/karma9874?label=Follow\u0026style=social)](https://github.com/karma9874)\n\nAuthInspector is a Golang tool designed for hassle-free authorization and authentication checks. By extracting request details from BurpSuite export, it performs thorough authorization checks based on user-provided headers for each request with Goroutines in place for speedy processing, and provides results in a simple CSV file with all details.\n\n# Work flow\n\u003ch3 align=\"center\"\u003e\n  \u003cimg src=\"static/flow.png\" width=\"700px\"\u003e\u003c/a\u003e\n\u003c/h3\u003e\n\n\n# Installation\n\n**Easy Installation**: You can download the prebuilt binary from the [releases](https://github.com/karma9874/AuthInspector/releases) page.\n\n**Go Install**: `go install github.com/karma9874/AuthInspector@latest`\n\n**Go Build**: `go get \u0026\u0026 go build`\n\n# Usage\n\n1. Begin by capturing web requests using the high-level account.\n2. Once your website browsing is complete, export the requests by navigating to `Target -\u003e Site map -\u003e selecting the URL -\u003e Right Click and Save Selected Item`.\n3. Create an init.yaml file with the following configurations:\n    * `source:` Specify the name of the exported file from the previous step.\n    * `auth:` Define the header responsible for authentication (e.g., Cookie, Authorization header, custom).\n    * `filterMimeType:` Include requests containing the specified MIME type.\n    * `headers:` Optionally provide global headers, influencing requests containing this header.\n\nAuthInspector provides the following commands for customization:\n```\n-proxy    Set up a proxy for testing.\n-respBody Include response body in the output\n-reqBody  Include request body in the output.\n-timeout  Set the timeout for requests.\n-threads  Specify the number of concurrent threads.\n-listmime Lists the available mimetypes from the burp exported file\n-verbose  Verbose output\n```\n\n**Running AuthInspector**\n\n``` \nAuthInspector.exe -respBody -reqBody\n```\n\n**Config Template**\n```yaml\n# Burp XML file name to be used in the authentication testing process.\nsource: example.xml\n\n# Headers with authentication information.\nauth:\n  - header_key: header_value\n  - header_key: header_value\n  - dummy_header: dummy_value  # Do not remove this header (use to check unauthenticated requests)\n\n# Mime types(case sensitive, for more details list mime type check -listmime mode). The tool will focus on checking authentication issues only on specified mime types.\nfilterMimeTypes:\n  - JSON\n  - XML\n\n# Global headers to be included in all requests.\nheaders:\n  - User-Agent: \"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36\"\n  - API-KEY: some_key\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkarma9874%2Fauthinspector","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fkarma9874%2Fauthinspector","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkarma9874%2Fauthinspector/lists"}