├── DAS ├── __pycache__ │ ├── guardrail.cpython-39.pyc │ ├── prompts.cpython-39.pyc │ └── utils.cpython-39.pyc ├── data │ └── safe-os │ │ ├── benign.json │ │ ├── environment.json │ │ ├── prompt_injection.json │ │ └── system_sabotage.json ├── eval.py ├── exp_EICU_SEEACT.py ├── exp_OS.py ├── guardrail.py ├── prompts.py ├── scripts │ ├── advweb.sh │ ├── eicu_ac.sh │ ├── mind2web_sc.sh │ └── safe_os.sh ├── tools │ ├── __pycache__ │ │ ├── code_tool.cpython-39.pyc │ │ ├── permission_tool.cpython-39.pyc │ │ ├── tool.cpython-39.pyc │ │ └── web_tool.cpython-39.pyc │ ├── code_tool.py │ ├── permission_tool.py │ ├── tool.py │ └── web_tool.py └── utils.py ├── Dockerfile ├── README.md ├── icon.png ├── requirements.txt ├── setup.py └── workflow.png /DAS/__pycache__/guardrail.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaFoLab-WISC/AGrail4Agent/HEAD/DAS/__pycache__/guardrail.cpython-39.pyc -------------------------------------------------------------------------------- /DAS/__pycache__/prompts.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaFoLab-WISC/AGrail4Agent/HEAD/DAS/__pycache__/prompts.cpython-39.pyc -------------------------------------------------------------------------------- /DAS/__pycache__/utils.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaFoLab-WISC/AGrail4Agent/HEAD/DAS/__pycache__/utils.cpython-39.pyc -------------------------------------------------------------------------------- /DAS/data/safe-os/benign.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaFoLab-WISC/AGrail4Agent/HEAD/DAS/data/safe-os/benign.json -------------------------------------------------------------------------------- /DAS/data/safe-os/environment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaFoLab-WISC/AGrail4Agent/HEAD/DAS/data/safe-os/environment.json -------------------------------------------------------------------------------- /DAS/data/safe-os/prompt_injection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaFoLab-WISC/AGrail4Agent/HEAD/DAS/data/safe-os/prompt_injection.json -------------------------------------------------------------------------------- /DAS/data/safe-os/system_sabotage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaFoLab-WISC/AGrail4Agent/HEAD/DAS/data/safe-os/system_sabotage.json -------------------------------------------------------------------------------- /DAS/eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaFoLab-WISC/AGrail4Agent/HEAD/DAS/eval.py -------------------------------------------------------------------------------- /DAS/exp_EICU_SEEACT.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaFoLab-WISC/AGrail4Agent/HEAD/DAS/exp_EICU_SEEACT.py -------------------------------------------------------------------------------- /DAS/exp_OS.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaFoLab-WISC/AGrail4Agent/HEAD/DAS/exp_OS.py -------------------------------------------------------------------------------- /DAS/guardrail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaFoLab-WISC/AGrail4Agent/HEAD/DAS/guardrail.py -------------------------------------------------------------------------------- /DAS/prompts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaFoLab-WISC/AGrail4Agent/HEAD/DAS/prompts.py -------------------------------------------------------------------------------- /DAS/scripts/advweb.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaFoLab-WISC/AGrail4Agent/HEAD/DAS/scripts/advweb.sh -------------------------------------------------------------------------------- /DAS/scripts/eicu_ac.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaFoLab-WISC/AGrail4Agent/HEAD/DAS/scripts/eicu_ac.sh -------------------------------------------------------------------------------- /DAS/scripts/mind2web_sc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaFoLab-WISC/AGrail4Agent/HEAD/DAS/scripts/mind2web_sc.sh -------------------------------------------------------------------------------- /DAS/scripts/safe_os.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaFoLab-WISC/AGrail4Agent/HEAD/DAS/scripts/safe_os.sh -------------------------------------------------------------------------------- /DAS/tools/__pycache__/code_tool.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaFoLab-WISC/AGrail4Agent/HEAD/DAS/tools/__pycache__/code_tool.cpython-39.pyc -------------------------------------------------------------------------------- /DAS/tools/__pycache__/permission_tool.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaFoLab-WISC/AGrail4Agent/HEAD/DAS/tools/__pycache__/permission_tool.cpython-39.pyc -------------------------------------------------------------------------------- /DAS/tools/__pycache__/tool.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaFoLab-WISC/AGrail4Agent/HEAD/DAS/tools/__pycache__/tool.cpython-39.pyc -------------------------------------------------------------------------------- /DAS/tools/__pycache__/web_tool.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaFoLab-WISC/AGrail4Agent/HEAD/DAS/tools/__pycache__/web_tool.cpython-39.pyc -------------------------------------------------------------------------------- /DAS/tools/code_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaFoLab-WISC/AGrail4Agent/HEAD/DAS/tools/code_tool.py -------------------------------------------------------------------------------- /DAS/tools/permission_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaFoLab-WISC/AGrail4Agent/HEAD/DAS/tools/permission_tool.py -------------------------------------------------------------------------------- /DAS/tools/tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaFoLab-WISC/AGrail4Agent/HEAD/DAS/tools/tool.py -------------------------------------------------------------------------------- /DAS/tools/web_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaFoLab-WISC/AGrail4Agent/HEAD/DAS/tools/web_tool.py -------------------------------------------------------------------------------- /DAS/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaFoLab-WISC/AGrail4Agent/HEAD/DAS/utils.py -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaFoLab-WISC/AGrail4Agent/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaFoLab-WISC/AGrail4Agent/HEAD/README.md -------------------------------------------------------------------------------- /icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaFoLab-WISC/AGrail4Agent/HEAD/icon.png -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaFoLab-WISC/AGrail4Agent/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaFoLab-WISC/AGrail4Agent/HEAD/setup.py -------------------------------------------------------------------------------- /workflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaFoLab-WISC/AGrail4Agent/HEAD/workflow.png --------------------------------------------------------------------------------