help me debug ABE script

Discussions about the Application Boundaries Enforcer (ABE) module
LambdaFox
Posts: 4
Joined: Sun Jul 28, 2013 2:32 pm

help me debug ABE script

Post by LambdaFox »

Reading through here, I came up with this script to limit ajax.googleapis.com only to certain sites:

Code: Select all

# ajax.googleapis.com
Site .ajax.googleapis.com
Accept from .superuser.com .ajax.googleapis.com
Accept from .stackoverflow.com .ajax.googleapis.com
Deny
This works for superuser, but not stackoverflow. So I tried this:

Code: Select all

# ajax.googleapis.com
Site .ajax.googleapis.com
Accept from .superuser.com,  .stackoverflow.com .ajax.googleapis.com
Deny
This does not work for either.

I need help editing my syntax please. Thank you.
Mozilla/5.0 (X11; Linux x86_64; rv:24.0) Gecko/20140618 Firefox/24.0 PaleMoon/24.6.2
access2godzilla
Senior Member
Posts: 109
Joined: Sun May 20, 2012 5:09 pm

Re: help me debug ABE script

Post by access2godzilla »

Code: Select all

Site .ajax.googleapis.com
Accept from .stackoverflow.com .superuser.com
Deny
Mozilla/5.0 (X11; Linux i686; rv:24.0) Gecko/20100101 Firefox/24.0
Post Reply