{"id":18863436,"url":"https://github.com/blackarrowsec/wap","last_synced_at":"2025-04-14T13:06:24.897Z","repository":{"id":62588225,"uuid":"291640014","full_name":"blackarrowsec/wap","owner":"blackarrowsec","description":"Wappalyzer python library","archived":false,"fork":false,"pushed_at":"2020-11-03T14:38:19.000Z","size":173,"stargazers_count":6,"open_issues_count":0,"forks_count":2,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-03-28T02:11:13.590Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"lgpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/blackarrowsec.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}},"created_at":"2020-08-31T07:01:14.000Z","updated_at":"2024-08-27T18:28:13.000Z","dependencies_parsed_at":"2022-11-04T07:25:42.125Z","dependency_job_id":null,"html_url":"https://github.com/blackarrowsec/wap","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/blackarrowsec%2Fwap","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/blackarrowsec%2Fwap/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/blackarrowsec%2Fwap/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/blackarrowsec%2Fwap/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/blackarrowsec","download_url":"https://codeload.github.com/blackarrowsec/wap/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248886312,"owners_count":21177643,"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","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":[],"created_at":"2024-11-08T04:37:32.370Z","updated_at":"2025-04-14T13:06:24.875Z","avatar_url":"https://github.com/blackarrowsec.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# wap\n[![](https://img.shields.io/badge/Category-Library-E5A505?style=flat-square)]() [![](https://img.shields.io/badge/Language-Python-E5A505?style=flat-square)]()\n\nLibrary to parse [Wappalyzer](https://wappalyzer.com) \n[technologies.json](https://github.com/AliasIO/wappalyzer/blob/master/src/technologies.json)\nand use its rules to discover web technologies by looking in the HTTP responses.\n\nFunctionality is similar to the [wappalyzer core module](https://github.com/AliasIO/wappalyzer/blob/master/src/wappalyzer.js), but in python.\n\n\n## Installation\n\nFrom pypi:\n```shell\npip3 install wap\n```\n\nFrom repo:\n```shell\ngit clone https://github.com/blackarrowsec/wap\ncd wap/\npython3 setup.py install\n```\n\n\n## Example\n\nHere is a little example that uses almost all functionalities of wap with regex to retrieve the technologies of github:\n```python\nimport requests\nimport wap\n\n\ntechnologies, categories = wap.load_file(\"technologies.json\")\nresp = requests.get(\"https://www.github.com\")\ntechno_matches = wap.discover_requests_technologies(technologies, resp)\n\nfor t in techno_matches:\n    fields = [t.technology.name]\n    fields.append(t.version)\n    fields.append(str(t.confidence))\n\n    fields.append(\",\".join(\n        [c.name for c in t.technology.categories]\n    ))\n\n    print(\" \".join(fields))\n\n```\n\nMore examples in examples folder.\n\n## Documentation\nDocumentation can be found in https://wap.readthedocs.io. \n\n\n## Adding new technologies\n\nIf you want that wap detects a new technology, you can add your rules to the \n[technologies.json](https://github.com/AliasIO/wappalyzer/blob/master/src/technologies.json) \nfile and load it with wap. \n\nPlease, consider to do a pull request to \n[Wappalyzer repo](https://github.com/AliasIO/wappalyzer)\nand share your rules with the community. Follow the rules in \n[Adding a new technology](https://www.wappalyzer.com/docs/dev/contributing#adding-a-new-technology).\n\nPlease do not submit pull requests related to technologies.json, since this repository is \nnot related with Wappalyzer.\n\n## Author\nEloy Pérez ([@Zer1t0](https://github.com/Zer1t0)) [ [www.blackarrow.net](http://blackarrow.net/) - [www.tarlogic.com](https://www.tarlogic.com/en/) ]\n\n\n## License\nAll the code included in this project is licensed under the terms of the GNU LGPLv3 license.\n\n-----\n\n[![](https://img.shields.io/badge/www-blackarrow.net-E5A505?style=flat-square)](https://www.blackarrow.net) [![](https://img.shields.io/badge/twitter-@BlackArrowSec-00aced?style=flat-square\u0026logo=twitter\u0026logoColor=white)](https://twitter.com/BlackArrowSec) [![](https://img.shields.io/badge/linkedin-@BlackArrowSec-0084b4?style=flat-square\u0026logo=linkedin\u0026logoColor=white)](https://www.linkedin.com/company/blackarrowsec/)\n\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fblackarrowsec%2Fwap","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fblackarrowsec%2Fwap","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fblackarrowsec%2Fwap/lists"}