Added HTTP libraries

This commit is contained in:
Sascha Leib
2025-10-26 17:16:22 +01:00
parent 393de67c22
commit c840f85d59
4 changed files with 10 additions and 1 deletions

View File

@@ -111,6 +111,7 @@
&.cl_ecosia::before { background-position-y: -340px }
&.cl_webkit::before { background-position-y: -360px }
&.cl_operaold::before { background-position-y: -380px }
&.cl_wget::before, &.cl_urllib::before { background-position-y: -400px }
&.cl_other::before { background-image: url('img/more.svg') }
/* Captcha statuses */

View File

@@ -41,7 +41,7 @@
"id": "susClient", "desc": "Client identifier that is popular with bot networks",
"bot": 10
},
{"func": "matchesClient", "params": ["undici","gohttp"],
{"func": "matchesClient", "params": ["undici","gohttp","urllib","wget","curl"],
"id": "botClient", "desc": "Client identifier indicates web crawler",
"bot": 100
},

View File

@@ -91,8 +91,16 @@
"id": "gohttp",
"rx": ["Go\\-http\\-client\\/(\\d+)", "quic\\-go\\-HTTP\\/(\\d+)"]
},
{"n": "Python URLlib-based crawler",
"id": "urllib",
"rx": ["Python\\-urllib\\/(\\d+\\.?\\d*)", "quic\\-go\\-HTTP\\/(\\d+)"]
},
{"n": "AppleWebKit",
"id": "webkit",
"rx": [ "AppleWebKit\\/(\\d*)\\." ]
},
{"n": "wget",
"id": "wget",
"rx": [ "Wget\\/(\\d+\\.?\\d*\\.?\\d*)" ]
}
]

Binary file not shown.

Before

Width:  |  Height:  |  Size: 23 KiB

After

Width:  |  Height:  |  Size: 23 KiB