Skip to content

Instantly share code, notes, and snippets.

@r1cs3c
Last active August 24, 2020 12:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save r1cs3c/aa6b2b5fd73bb5d54382eefdf0f74a82 to your computer and use it in GitHub Desktop.
Save r1cs3c/aa6b2b5fd73bb5d54382eefdf0f74a82 to your computer and use it in GitHub Desktop.
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.
key1|key2|key3 Whitelist: Send to the proxy all URLs containing the words key1 OR key2 OR key3
Blacklist: ignores the words listed on the regex and forward them to the next proxy on the list.
[0–9] Whitelist: Send to the proxy all URLs containing numbers
Blacklist: ignores the words listed on the regex and forward them to the next proxy on the list.
[test.com].*[0–9].* Whitelist: Send to the proxy all URLs with numbers AND test.com
Blacklist: ignores the words listed on the regex and forward them to the next proxy on the list.
[test.com].*[0–9].*|test2.com Whitelist: Send to the proxy all URLs with numbers AND test.com OR test2.com
Blacklist: ignores the words listed on the regex and forward them to the next proxy on the list.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment