Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add X-Powered-By fingerprinting #604

Merged
merged 1 commit into from
Feb 5, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions xml/http_xpoweredby.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
<?xml version='1.0' encoding='UTF-8'?>
<fingerprints matches="http_header.x-powered-by" protocol="http" database_type="service" preference="0.90">
<!-- HTTP X-Powered_by headers are matched against these patterns to fingerprint HTTP services. -->

<fingerprint pattern="^PHP/([0-9.]+)$">
<description>PHP</description>
<example service.version="8.2.14">PHP/8.2.14</example>
<param pos="0" name="service.vendor" value="PHP"/>
<param pos="0" name="service.family" value="PHP"/>
<param pos="0" name="service.product" value="PHP"/>
<param pos="1" name="service.version"/>
<param pos="0" name="service.cpe23" value="cpe:/a:php:php:{service.version}"/>
</fingerprint>

</fingerprints>
Loading