I’m using a forward proxy called Burp and would like to see only results from google in my site scope.
What will be the regex for if i want to see *.google.*
in my result
So sample output can be
JavaScript
x
www.google.com
drive.google.com
google.in
and so on
Advertisement
Answer
This should work for you:
JavaScript
^.*?google..*$
Will match anything before and after .google.