Skip to content

Instantly share code, notes, and snippets.

View r1cs3c's full-sized avatar

Ric Campo r1cs3c

View GitHub Profile

Keybase proof

I hereby claim:

  • I am r1cs3c on github.
  • I am m4ur1ce (https://keybase.io/m4ur1ce) on keybase.
  • I have a public key ASDJZvP36lsBzD-yQDPv3jvK5n9lHeV-eXRkoMUfH-PQewo

To claim this, I am signing this object:

@r1cs3c
r1cs3c / FoxyProxyRegexCheat Sheet.csv
Last active August 24, 2020 12:41
MediumTables
Regex Meaning
test.com|test.com.au Whitelist: Send to the proxy all URLs that contain the words test.com OR test.com.au
Blacklist: ignores the words listed on the regex and forward them to the next proxy on the list.
^http://test.com.*$ Whitelist: Send to the proxy all URLs starting with http://test.com to the proxy.
Blacklist: ignores the words listed on the regex and forward them to the next proxy on the list.
test.com.*page.asp.* Whitelist: Send to the proxy all URLs containing page.asp AND test.com domain.
Blacklist: ignores the words listed on the regex and forward them to the next proxy on the list.