我打开了Mozilla Firefox插件Wappalizer并看到了以下JavaScript。这是一个正则表达式,是否可以在python中使用它?
'CO2Stats': { cats: { 1: 10 }, html: /src=("|')http:\/\/www\.co2stats\.com\/propres\.php/ },
'CodeIgniter': { cats: { 1: 18 }, headers: { 'Set-Cookie': /(exp_last_activity|exp_tracker|ci_session)/ }, implies: [ 'PHP' ] },
'Commerce Server': { cats: { 1: 6 }, headers: { 'COMMERCE-SERVER-SOFTWARE': /.+/ } },
'comScore': { cats: { 1: 10 }, html: /<i{1}frame[^>]* (id=("|')comscore("|')|scr=[^>]+comscore)/, env: /^_?COMSCORE$/i },
'Concrete5': { cats: { 1: 1 }, meta: { 'generator': /concrete5/i } },
答案 0 :(得分:1)
是的,此处//
中的字符串是正则表达式,您可以在re
模块的帮助下在python中使用它们。
import re
if re.match('(exp_last_activity|exp_tracker|ci_session)', header_string):
# do something
但是你需要找到你必须用这个表达式分析的字符串。