hackagent 0.10.0__tar.gz → 0.10.1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {hackagent-0.10.0 → hackagent-0.10.1}/PKG-INFO +1 -1
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/attacks/evaluator/evaluation_step.py +22 -4
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/attacks/techniques/flipattack/attack.py +2 -1
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/cli/tui/attack_specs.py +7 -2
- {hackagent-0.10.0 → hackagent-0.10.1}/pyproject.toml +1 -1
- {hackagent-0.10.0 → hackagent-0.10.1}/.gitignore +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/LICENSE +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/README.md +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/__init__.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/agent.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/attacks/__init__.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/attacks/base.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/attacks/evaluator/__init__.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/attacks/evaluator/base.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/attacks/evaluator/judge_evaluators.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/attacks/evaluator/metrics.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/attacks/evaluator/pattern_evaluators.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/attacks/evaluator/sync.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/attacks/generator/__init__.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/attacks/generator/templates.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/attacks/objectives/__init__.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/attacks/objectives/base.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/attacks/objectives/harmful_behavior.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/attacks/objectives/jailbreak.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/attacks/objectives/policy_violation.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/attacks/orchestrator.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/attacks/registry.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/attacks/shared/__init__.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/attacks/shared/progress.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/attacks/shared/prompt_parser.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/attacks/shared/response_utils.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/attacks/shared/router_factory.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/attacks/shared/tui.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/attacks/shared/utils.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/attacks/techniques/__init__.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/attacks/techniques/advprefix/__init__.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/attacks/techniques/advprefix/attack.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/attacks/techniques/advprefix/completions.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/attacks/techniques/advprefix/config.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/attacks/techniques/advprefix/evaluation.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/attacks/techniques/advprefix/generate.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/attacks/techniques/advprefix/utils.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/attacks/techniques/autodan_turbo/__init__.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/attacks/techniques/autodan_turbo/attack.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/attacks/techniques/autodan_turbo/config.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/attacks/techniques/autodan_turbo/core.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/attacks/techniques/autodan_turbo/dashboard_tracing.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/attacks/techniques/autodan_turbo/evaluation.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/attacks/techniques/autodan_turbo/lifelong.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/attacks/techniques/autodan_turbo/log_styles.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/attacks/techniques/autodan_turbo/strategy_library.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/attacks/techniques/autodan_turbo/summarizer.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/attacks/techniques/autodan_turbo/warm_up.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/attacks/techniques/base.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/attacks/techniques/baseline/__init__.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/attacks/techniques/baseline/attack.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/attacks/techniques/baseline/config.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/attacks/techniques/baseline/evaluation.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/attacks/techniques/baseline/generation.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/attacks/techniques/bon/__init__.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/attacks/techniques/bon/attack.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/attacks/techniques/bon/config.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/attacks/techniques/bon/evaluation.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/attacks/techniques/bon/generation.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/attacks/techniques/cipherchat/__init__.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/attacks/techniques/cipherchat/attack.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/attacks/techniques/cipherchat/config.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/attacks/techniques/cipherchat/encode_experts.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/attacks/techniques/cipherchat/evaluation.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/attacks/techniques/cipherchat/generation.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/attacks/techniques/cipherchat/prompts_and_demonstrations.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/attacks/techniques/config.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/attacks/techniques/flipattack/__init__.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/attacks/techniques/flipattack/config.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/attacks/techniques/flipattack/evaluation.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/attacks/techniques/flipattack/generation.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/attacks/techniques/h4rm3l/__init__.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/attacks/techniques/h4rm3l/attack.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/attacks/techniques/h4rm3l/config.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/attacks/techniques/h4rm3l/decorators.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/attacks/techniques/h4rm3l/evaluation.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/attacks/techniques/h4rm3l/generation.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/attacks/techniques/pair/__init__.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/attacks/techniques/pair/attack.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/attacks/techniques/pair/config.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/attacks/techniques/pair/evaluation.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/attacks/techniques/pap/__init__.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/attacks/techniques/pap/attack.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/attacks/techniques/pap/config.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/attacks/techniques/pap/evaluation.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/attacks/techniques/pap/generation.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/attacks/techniques/pap/taxonomy.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/attacks/techniques/tap/__init__.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/attacks/techniques/tap/attack.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/attacks/techniques/tap/config.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/attacks/techniques/tap/evaluation.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/attacks/techniques/tap/generation.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/cli/__init__.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/cli/commands/__init__.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/cli/commands/agent.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/cli/commands/attack.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/cli/commands/config.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/cli/commands/examples.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/cli/commands/results.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/cli/commands/scan.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/cli/commands/web.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/cli/config.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/cli/main.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/cli/tui/__init__.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/cli/tui/actions_logger.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/cli/tui/app.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/cli/tui/base.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/cli/tui/logger.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/cli/tui/views/__init__.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/cli/tui/views/agents.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/cli/tui/views/attacks.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/cli/tui/views/config.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/cli/tui/views/dashboard.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/cli/tui/views/results.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/cli/tui/widgets/__init__.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/cli/tui/widgets/actions.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/cli/tui/widgets/logs.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/cli/utils.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/datasets/__init__.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/datasets/base.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/datasets/presets.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/datasets/providers/__init__.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/datasets/providers/file.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/datasets/providers/huggingface.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/datasets/registry.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/errors.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/examples/google_adk/jailbreak_eval/__init__.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/examples/google_adk/jailbreak_eval/agent.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/examples/google_adk/jailbreak_eval/hack.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/examples/google_adk/multi_tool_agent/__init__.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/examples/google_adk/multi_tool_agent/agent.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/examples/google_adk/multi_tool_agent/hack.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/examples/langchain/rag/README.md +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/examples/langchain/rag/agent_client.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/examples/langchain/rag/agent_server.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/examples/langchain/rag/hack.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/examples/langchain/rag/ingest.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/examples/langchain/rag/policies.pdf +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/examples/langchain/rag/read_db.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/examples/ollama/demo.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/examples/ollama/hack.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/examples/ollama/local.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/examples/openai_sdk/multi_judge/README.md +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/examples/openai_sdk/multi_judge/run_flipattack_multi_judge.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/examples/openai_sdk/pc_tool_sandbox/README.md +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/examples/openai_sdk/pc_tool_sandbox/agent.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/examples/openai_sdk/pc_tool_sandbox/confidential/db_credentials.txt +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/examples/openai_sdk/pc_tool_sandbox/hack.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/examples/openai_sdk/quick_evaluation/README.md +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/examples/openai_sdk/quick_evaluation/run_h4rm3l.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/examples/openai_sdk/rag/README.md +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/examples/openai_sdk/rag/agent_server.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/examples/openai_sdk/rag/hack.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/examples/openai_sdk/rag/ingest.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/examples/openai_sdk/rag/policies.pdf +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/examples/vllm/hack.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/logger.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/risks/__init__.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/risks/base.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/risks/craft_adversarial_data/__init__.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/risks/craft_adversarial_data/profile.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/risks/craft_adversarial_data/types.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/risks/craft_adversarial_data/vulnerabilities.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/risks/credential_exposure/__init__.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/risks/credential_exposure/profile.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/risks/credential_exposure/types.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/risks/credential_exposure/vulnerabilities.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/risks/excessive_agency/__init__.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/risks/excessive_agency/profile.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/risks/excessive_agency/types.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/risks/excessive_agency/vulnerabilities.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/risks/input_manipulation_attack/__init__.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/risks/input_manipulation_attack/profile.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/risks/input_manipulation_attack/types.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/risks/input_manipulation_attack/vulnerabilities.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/risks/jailbreak/__init__.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/risks/jailbreak/profile.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/risks/jailbreak/types.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/risks/jailbreak/vulnerabilities.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/risks/malicious_tool_invocation/__init__.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/risks/malicious_tool_invocation/profile.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/risks/malicious_tool_invocation/types.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/risks/malicious_tool_invocation/vulnerabilities.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/risks/misinformation/__init__.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/risks/misinformation/profile.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/risks/misinformation/types.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/risks/misinformation/vulnerabilities.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/risks/model_evasion/__init__.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/risks/model_evasion/profile.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/risks/model_evasion/types.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/risks/model_evasion/vulnerabilities.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/risks/profile_helpers.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/risks/profile_types.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/risks/prompt_injection/__init__.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/risks/prompt_injection/profile.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/risks/prompt_injection/templates.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/risks/prompt_injection/types.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/risks/prompt_injection/vulnerabilities.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/risks/public_facing_application_exploitation/__init__.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/risks/public_facing_application_exploitation/profile.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/risks/public_facing_application_exploitation/types.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/risks/public_facing_application_exploitation/vulnerabilities.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/risks/registry.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/risks/sensitive_information_disclosure/__init__.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/risks/sensitive_information_disclosure/profile.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/risks/sensitive_information_disclosure/types.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/risks/sensitive_information_disclosure/vulnerabilities.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/risks/system_prompt_leakage/__init__.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/risks/system_prompt_leakage/profile.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/risks/system_prompt_leakage/types.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/risks/system_prompt_leakage/vulnerabilities.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/risks/utils.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/risks/vector_embedding_weaknesses_exploit/__init__.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/risks/vector_embedding_weaknesses_exploit/profile.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/risks/vector_embedding_weaknesses_exploit/types.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/risks/vector_embedding_weaknesses_exploit/vulnerabilities.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/router/__init__.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/router/adapters/__init__.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/router/adapters/base.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/router/adapters/google_adk.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/router/adapters/litellm.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/router/adapters/ollama.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/router/adapters/openai.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/router/router.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/router/tracking/__init__.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/router/tracking/category_classifier.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/router/tracking/context.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/router/tracking/coordinator.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/router/tracking/decorators.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/router/tracking/step.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/router/tracking/tracker.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/router/tracking/utils.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/router/types.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/server/__init__.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/server/api/__init__.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/server/api/agent/__init__.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/server/api/agent/agent_create.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/server/api/agent/agent_destroy.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/server/api/agent/agent_list.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/server/api/agent/agent_partial_update.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/server/api/agent/agent_retrieve.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/server/api/agent/agent_update.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/server/api/apilogs/__init__.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/server/api/apilogs/apilogs_list.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/server/api/apilogs/apilogs_retrieve.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/server/api/apilogs/apilogs_summary_retrieve.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/server/api/attack/__init__.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/server/api/attack/attack_create.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/server/api/attack/attack_destroy.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/server/api/attack/attack_list.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/server/api/attack/attack_partial_update.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/server/api/attack/attack_retrieve.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/server/api/attack/attack_update.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/server/api/checkout/__init__.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/server/api/checkout/checkout_create.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/server/api/generate/__init__.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/server/api/generate/v1_chat_completions_create.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/server/api/judge/__init__.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/server/api/judge/judge_create.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/server/api/key/__init__.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/server/api/key/key_context_retrieve.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/server/api/key/key_create.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/server/api/key/key_destroy.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/server/api/key/key_list.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/server/api/key/key_retrieve.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/server/api/models.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/server/api/organization/__init__.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/server/api/organization/organization_create.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/server/api/organization/organization_destroy.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/server/api/organization/organization_list.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/server/api/organization/organization_me_retrieve.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/server/api/organization/organization_partial_update.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/server/api/organization/organization_retrieve.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/server/api/organization/organization_update.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/server/api/result/__init__.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/server/api/result/result_create.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/server/api/result/result_destroy.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/server/api/result/result_list.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/server/api/result/result_partial_update.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/server/api/result/result_retrieve.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/server/api/result/result_trace_create.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/server/api/result/result_update.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/server/api/run/__init__.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/server/api/run/run_create.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/server/api/run/run_destroy.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/server/api/run/run_list.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/server/api/run/run_partial_update.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/server/api/run/run_result_create.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/server/api/run/run_retrieve.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/server/api/run/run_run_tests_create.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/server/api/run/run_update.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/server/api/scripts/generate.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/server/api/scripts/generate.sh +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/server/api/scripts/openapi-python-client.yaml +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/server/api/user/__init__.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/server/api/user/user_create.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/server/api/user/user_destroy.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/server/api/user/user_list.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/server/api/user/user_me_retrieve.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/server/api/user/user_me_update.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/server/api/user/user_partial_update.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/server/api/user/user_retrieve.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/server/api/user/user_update.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/server/client.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/server/dashboard/__init__.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/server/dashboard/_api.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/server/dashboard/_components.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/server/dashboard/_helpers.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/server/dashboard/_page.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/server/dashboard/app.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/server/dashboard/templates/index.html +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/server/errors.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/server/storage/__init__.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/server/storage/base.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/server/storage/enums.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/server/storage/local.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/server/storage/remote.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/server/types.py +0 -0
- {hackagent-0.10.0 → hackagent-0.10.1}/hackagent/utils.py +0 -0
|
@@ -51,6 +51,11 @@ from hackagent.attacks.evaluator.judge_evaluators import EVALUATOR_MAP
|
|
|
51
51
|
from hackagent.attacks.shared.router_factory import extract_passthrough_request_config
|
|
52
52
|
from hackagent.attacks.evaluator.sync import sync_evaluation_to_server
|
|
53
53
|
from hackagent.attacks.techniques.advprefix.config import EvaluatorConfig
|
|
54
|
+
from hackagent.attacks.techniques.config import (
|
|
55
|
+
DEFAULT_JUDGE_IDENTIFIER,
|
|
56
|
+
DEFAULT_LOCAL_AGENT_TYPE,
|
|
57
|
+
DEFAULT_LOCAL_MODEL_ENDPOINT,
|
|
58
|
+
)
|
|
54
59
|
from hackagent.server.client import AuthenticatedClient
|
|
55
60
|
from hackagent.router.types import AgentTypeEnum
|
|
56
61
|
|
|
@@ -349,14 +354,17 @@ class BaseEvaluationStep:
|
|
|
349
354
|
def _resolve_judges_from_config(
|
|
350
355
|
self,
|
|
351
356
|
technique_params: Optional[Dict[str, Any]] = None,
|
|
352
|
-
default_judge: str =
|
|
353
|
-
default_type: str = "
|
|
357
|
+
default_judge: str = DEFAULT_JUDGE_IDENTIFIER,
|
|
358
|
+
default_type: str = "harmbench",
|
|
354
359
|
) -> List[Dict[str, Any]]:
|
|
355
360
|
"""
|
|
356
361
|
Resolve the judges list from ``_raw_config``.
|
|
357
362
|
|
|
358
|
-
|
|
359
|
-
|
|
363
|
+
Resolution order:
|
|
364
|
+
1. Top-level ``judges`` list in raw config.
|
|
365
|
+
2. Top-level ``judge`` dict in raw config (wrapped in a list).
|
|
366
|
+
3. ``technique_params["judge"]`` string (legacy fallback).
|
|
367
|
+
4. ``default_judge`` / ``default_type`` hardcoded defaults.
|
|
360
368
|
|
|
361
369
|
Args:
|
|
362
370
|
technique_params: Technique-specific params dict with legacy
|
|
@@ -371,6 +379,11 @@ class BaseEvaluationStep:
|
|
|
371
379
|
if isinstance(judges, list) and judges:
|
|
372
380
|
return judges
|
|
373
381
|
|
|
382
|
+
# Use the top-level "judge" dict if present (e.g. from Ollama/local configs).
|
|
383
|
+
raw_judge = self._raw_config.get("judge")
|
|
384
|
+
if isinstance(raw_judge, dict) and raw_judge:
|
|
385
|
+
return [raw_judge]
|
|
386
|
+
|
|
374
387
|
tp = technique_params or {}
|
|
375
388
|
judge_model = tp.get("judge", default_judge)
|
|
376
389
|
judge_type = tp.get("judge_type") or self.infer_judge_type(
|
|
@@ -380,6 +393,11 @@ class BaseEvaluationStep:
|
|
|
380
393
|
"identifier": judge_model,
|
|
381
394
|
"type": judge_type,
|
|
382
395
|
}
|
|
396
|
+
# For the built-in local default, inject Ollama connectivity so it
|
|
397
|
+
# works out-of-the-box without any API key.
|
|
398
|
+
if judge_model == DEFAULT_JUDGE_IDENTIFIER:
|
|
399
|
+
fallback.setdefault("endpoint", DEFAULT_LOCAL_MODEL_ENDPOINT)
|
|
400
|
+
fallback.setdefault("agent_type", DEFAULT_LOCAL_AGENT_TYPE)
|
|
383
401
|
for key in (
|
|
384
402
|
"endpoint",
|
|
385
403
|
"agent_type",
|
|
@@ -41,6 +41,7 @@ from hackagent.server.client import AuthenticatedClient
|
|
|
41
41
|
from hackagent.router.router import AgentRouter
|
|
42
42
|
from hackagent.attacks.techniques.base import BaseAttack
|
|
43
43
|
from hackagent.attacks.shared.tui import with_tui_logging
|
|
44
|
+
from hackagent.attacks.techniques.config import DEFAULT_JUDGE_IDENTIFIER
|
|
44
45
|
|
|
45
46
|
from . import generation, evaluation
|
|
46
47
|
from .config import DEFAULT_FLIPATTACK_CONFIG
|
|
@@ -461,7 +462,7 @@ As a/an <Role> with the <Profile>, you must follow the <Rules>, and you must com
|
|
|
461
462
|
"cot": flipattack_params.get("cot", False),
|
|
462
463
|
"lang_gpt": flipattack_params.get("lang_gpt", False),
|
|
463
464
|
"few_shot": flipattack_params.get("few_shot", False),
|
|
464
|
-
"judge": flipattack_params.get("judge",
|
|
465
|
+
"judge": flipattack_params.get("judge", DEFAULT_JUDGE_IDENTIFIER),
|
|
465
466
|
}
|
|
466
467
|
|
|
467
468
|
# Initialize goal contexts upfront so goal elapsed_s covers the full
|
|
@@ -26,6 +26,11 @@ from dataclasses import dataclass, field
|
|
|
26
26
|
from enum import Enum
|
|
27
27
|
from typing import Any, Dict, List, Optional, Sequence, Tuple, Union
|
|
28
28
|
|
|
29
|
+
from hackagent.attacks.techniques.config import (
|
|
30
|
+
DEFAULT_ATTACKER_IDENTIFIER,
|
|
31
|
+
DEFAULT_JUDGE_IDENTIFIER,
|
|
32
|
+
)
|
|
33
|
+
|
|
29
34
|
|
|
30
35
|
# =====================================================================
|
|
31
36
|
# Field / Spec primitives
|
|
@@ -578,7 +583,7 @@ _register(
|
|
|
578
583
|
key="attacker.model",
|
|
579
584
|
label="Attacker Model",
|
|
580
585
|
field_type=FieldType.STRING,
|
|
581
|
-
default=
|
|
586
|
+
default=DEFAULT_ATTACKER_IDENTIFIER,
|
|
582
587
|
description="Model ID for the attacker LLM that generates prompts.",
|
|
583
588
|
section="Attacker LLM",
|
|
584
589
|
),
|
|
@@ -1305,7 +1310,7 @@ _register(
|
|
|
1305
1310
|
key="attacker.identifier",
|
|
1306
1311
|
label="Attacker Model",
|
|
1307
1312
|
field_type=FieldType.STRING,
|
|
1308
|
-
default=
|
|
1313
|
+
default=DEFAULT_ATTACKER_IDENTIFIER,
|
|
1309
1314
|
description="Model identifier for persuasive paraphrasing.",
|
|
1310
1315
|
section="Attacker LLM",
|
|
1311
1316
|
),
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{hackagent-0.10.0 → hackagent-0.10.1}/hackagent/attacks/techniques/autodan_turbo/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{hackagent-0.10.0 → hackagent-0.10.1}/hackagent/attacks/techniques/autodan_turbo/evaluation.py
RENAMED
|
File without changes
|
{hackagent-0.10.0 → hackagent-0.10.1}/hackagent/attacks/techniques/autodan_turbo/lifelong.py
RENAMED
|
File without changes
|
{hackagent-0.10.0 → hackagent-0.10.1}/hackagent/attacks/techniques/autodan_turbo/log_styles.py
RENAMED
|
File without changes
|
{hackagent-0.10.0 → hackagent-0.10.1}/hackagent/attacks/techniques/autodan_turbo/strategy_library.py
RENAMED
|
File without changes
|
{hackagent-0.10.0 → hackagent-0.10.1}/hackagent/attacks/techniques/autodan_turbo/summarizer.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{hackagent-0.10.0 → hackagent-0.10.1}/hackagent/attacks/techniques/cipherchat/encode_experts.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{hackagent-0.10.0 → hackagent-0.10.1}/hackagent/examples/google_adk/jailbreak_eval/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{hackagent-0.10.0 → hackagent-0.10.1}/hackagent/examples/google_adk/multi_tool_agent/__init__.py
RENAMED
|
File without changes
|
{hackagent-0.10.0 → hackagent-0.10.1}/hackagent/examples/google_adk/multi_tool_agent/agent.py
RENAMED
|
File without changes
|
{hackagent-0.10.0 → hackagent-0.10.1}/hackagent/examples/google_adk/multi_tool_agent/hack.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{hackagent-0.10.0 → hackagent-0.10.1}/hackagent/examples/openai_sdk/pc_tool_sandbox/README.md
RENAMED
|
File without changes
|
{hackagent-0.10.0 → hackagent-0.10.1}/hackagent/examples/openai_sdk/pc_tool_sandbox/agent.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{hackagent-0.10.0 → hackagent-0.10.1}/hackagent/examples/openai_sdk/quick_evaluation/README.md
RENAMED
|
File without changes
|
{hackagent-0.10.0 → hackagent-0.10.1}/hackagent/examples/openai_sdk/quick_evaluation/run_h4rm3l.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{hackagent-0.10.0 → hackagent-0.10.1}/hackagent/risks/craft_adversarial_data/vulnerabilities.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{hackagent-0.10.0 → hackagent-0.10.1}/hackagent/risks/credential_exposure/vulnerabilities.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{hackagent-0.10.0 → hackagent-0.10.1}/hackagent/risks/input_manipulation_attack/vulnerabilities.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|