mirror of
https://github.com/msoedov/agentic_security.git
synced 2026-08-09 03:06:05 +02:00
Merge pull request #302 from Carlos-Projects/main
fix: strip Content-Length and make hardcoded values configurable (closes #139, #167)
This commit is contained in:
@@ -69,9 +69,7 @@ class LLMSpec(BaseModel):
|
|||||||
|
|
||||||
return response
|
return response
|
||||||
|
|
||||||
def validate(
|
def validate(self, prompt: str, encoded_image: str, encoded_audio: str, files: dict | None) -> None:
|
||||||
self, prompt: str, encoded_image: str, encoded_audio: str, files: dict | None
|
|
||||||
) -> None:
|
|
||||||
if self.has_files and not files:
|
if self.has_files and not files:
|
||||||
raise ValueError("Files are required for this request.")
|
raise ValueError("Files are required for this request.")
|
||||||
|
|
||||||
@@ -107,12 +105,17 @@ class LLMSpec(BaseModel):
|
|||||||
content = content.replace("<<BASE64_IMAGE>>", encoded_image)
|
content = content.replace("<<BASE64_IMAGE>>", encoded_image)
|
||||||
content = content.replace("<<BASE64_AUDIO>>", encoded_audio)
|
content = content.replace("<<BASE64_AUDIO>>", encoded_audio)
|
||||||
|
|
||||||
|
# Remove Content-Length from headers to avoid mismatch when
|
||||||
|
# placeholder replacement changes body size. httpx will set
|
||||||
|
# the correct Content-Length based on the actual content.
|
||||||
|
clean_headers = {k: v for k, v in self.headers.items() if k.lower() != "content-length"}
|
||||||
|
|
||||||
transport = httpx.AsyncHTTPTransport(retries=settings_var("network.retry", 3))
|
transport = httpx.AsyncHTTPTransport(retries=settings_var("network.retry", 3))
|
||||||
async with httpx.AsyncClient(transport=transport) as client:
|
async with httpx.AsyncClient(transport=transport) as client:
|
||||||
response = await client.request(
|
response = await client.request(
|
||||||
method=self.method,
|
method=self.method,
|
||||||
url=self.url,
|
url=self.url,
|
||||||
headers=self.headers,
|
headers=clean_headers,
|
||||||
content=content,
|
content=content,
|
||||||
timeout=self.timeout(),
|
timeout=self.timeout(),
|
||||||
)
|
)
|
||||||
@@ -127,9 +130,7 @@ class LLMSpec(BaseModel):
|
|||||||
return await self.probe(
|
return await self.probe(
|
||||||
"test",
|
"test",
|
||||||
# TODO: fix url for mp3
|
# TODO: fix url for mp3
|
||||||
encoded_audio=encode_audio_base64_by_url(
|
encoded_audio=encode_audio_base64_by_url("https://www.example.com/audio.mp3"),
|
||||||
"https://www.example.com/audio.mp3"
|
|
||||||
),
|
|
||||||
)
|
)
|
||||||
case LLMSpec(has_files=True):
|
case LLMSpec(has_files=True):
|
||||||
return await self._probe_with_files({})
|
return await self._probe_with_files({})
|
||||||
@@ -168,18 +169,14 @@ def parse_http_spec(http_spec: str) -> LLMSpec:
|
|||||||
# Extract the method and URL from the first line
|
# Extract the method and URL from the first line
|
||||||
request_line_parts = lines[0].split()
|
request_line_parts = lines[0].split()
|
||||||
if len(request_line_parts) < 2:
|
if len(request_line_parts) < 2:
|
||||||
raise InvalidHTTPSpecError(
|
raise InvalidHTTPSpecError("First line of HTTP spec must include the method and URL.")
|
||||||
"First line of HTTP spec must include the method and URL."
|
|
||||||
)
|
|
||||||
method, url = request_line_parts[0], request_line_parts[1]
|
method, url = request_line_parts[0], request_line_parts[1]
|
||||||
|
|
||||||
# Check url validity
|
# Check url validity
|
||||||
valid_url = urlparse(url)
|
valid_url = urlparse(url)
|
||||||
# if missing the correct formatting ://, urlparse.netloc will be empty
|
# if missing the correct formatting ://, urlparse.netloc will be empty
|
||||||
if valid_url.scheme not in ("http", "https") or not valid_url.netloc:
|
if valid_url.scheme not in ("http", "https") or not valid_url.netloc:
|
||||||
raise InvalidHTTPSpecError(
|
raise InvalidHTTPSpecError(f"Invalid URL: {url}. Ensure it starts with 'http://' or 'https://'")
|
||||||
f"Invalid URL: {url}. Ensure it starts with 'http://' or 'https://'"
|
|
||||||
)
|
|
||||||
|
|
||||||
# Initialize headers and body
|
# Initialize headers and body
|
||||||
headers = {}
|
headers = {}
|
||||||
|
|||||||
@@ -24,6 +24,9 @@ BUDGET_MULTIPLIER = settings_var("fuzzer.budget_multiplier", 100000000)
|
|||||||
INITIAL_OPTIMIZER_POINTS = settings_var("fuzzer.initial_optimizer_points", 25)
|
INITIAL_OPTIMIZER_POINTS = settings_var("fuzzer.initial_optimizer_points", 25)
|
||||||
MIN_FAILURE_SAMPLES = settings_var("fuzzer.min_failure_samples", 5)
|
MIN_FAILURE_SAMPLES = settings_var("fuzzer.min_failure_samples", 5)
|
||||||
FAILURE_RATE_THRESHOLD = settings_var("fuzzer.failure_rate_threshold", 0.5)
|
FAILURE_RATE_THRESHOLD = settings_var("fuzzer.failure_rate_threshold", 0.5)
|
||||||
|
FAILURES_CSV_PATH = settings_var("fuzzer.failures_csv_path", "failures.csv")
|
||||||
|
FULL_LOG_CSV_PATH = settings_var("fuzzer.full_log_csv_path", "full_scan_log.csv")
|
||||||
|
MAX_INJECTION_ATTEMPTS = settings_var("fuzzer.max_injection_attempts", 20)
|
||||||
|
|
||||||
|
|
||||||
async def generate_prompts(
|
async def generate_prompts(
|
||||||
@@ -111,9 +114,7 @@ async def process_prompt(
|
|||||||
|
|
||||||
if response.status_code >= 400:
|
if response.status_code >= 400:
|
||||||
logger.error(f"HTTP {response.status_code} {response.content=}")
|
logger.error(f"HTTP {response.status_code} {response.content=}")
|
||||||
fuzzer_state.add_error(
|
fuzzer_state.add_error(module_name, prompt, response.status_code, response.text)
|
||||||
module_name, prompt, response.status_code, response.text
|
|
||||||
)
|
|
||||||
return tokens, True
|
return tokens, True
|
||||||
|
|
||||||
# Process successful response
|
# Process successful response
|
||||||
@@ -123,9 +124,7 @@ async def process_prompt(
|
|||||||
# Check if the response indicates a refusal
|
# Check if the response indicates a refusal
|
||||||
refused = refusal_heuristic(response.json())
|
refused = refusal_heuristic(response.json())
|
||||||
if refused:
|
if refused:
|
||||||
fuzzer_state.add_refusal(
|
fuzzer_state.add_refusal(module_name, prompt, response.status_code, response_text)
|
||||||
module_name, prompt, response.status_code, response_text
|
|
||||||
)
|
|
||||||
|
|
||||||
fuzzer_state.add_output(module_name, prompt, response_text, refused)
|
fuzzer_state.add_output(module_name, prompt, response_text, refused)
|
||||||
return tokens, refused
|
return tokens, refused
|
||||||
@@ -169,10 +168,7 @@ async def process_prompt_batch(
|
|||||||
- Total number of tokens processed.
|
- Total number of tokens processed.
|
||||||
- Number of failed prompts.
|
- Number of failed prompts.
|
||||||
"""
|
"""
|
||||||
tasks = [
|
tasks = [process_prompt(request_factory, p, tokens, module_name, fuzzer_state) for p in prompts]
|
||||||
process_prompt(request_factory, p, tokens, module_name, fuzzer_state)
|
|
||||||
for p in prompts
|
|
||||||
]
|
|
||||||
results = await asyncio.gather(*tasks)
|
results = await asyncio.gather(*tasks)
|
||||||
total_tokens = sum(r[0] for r in results)
|
total_tokens = sum(r[0] for r in results)
|
||||||
failures = sum(1 for r in results if r[1])
|
failures = sum(1 for r in results if r[1])
|
||||||
@@ -216,11 +212,7 @@ async def scan_module(
|
|||||||
|
|
||||||
# Initialize optimizer if optimization is enabled
|
# Initialize optimizer if optimization is enabled
|
||||||
optimizer = (
|
optimizer = (
|
||||||
Optimizer(
|
Optimizer([Real(0, 1)], base_estimator="GP", n_initial_points=INITIAL_OPTIMIZER_POINTS) if optimize else None
|
||||||
[Real(0, 1)], base_estimator="GP", n_initial_points=INITIAL_OPTIMIZER_POINTS
|
|
||||||
)
|
|
||||||
if optimize
|
|
||||||
else None
|
|
||||||
)
|
)
|
||||||
|
|
||||||
module_size = 0 if module.lazy else len(module.prompts)
|
module_size = 0 if module.lazy else len(module.prompts)
|
||||||
@@ -422,8 +414,8 @@ async def perform_single_shot_scan(
|
|||||||
processed_prompts += module_size
|
processed_prompts += module_size
|
||||||
|
|
||||||
yield ScanResult.status_msg("Scan completed.")
|
yield ScanResult.status_msg("Scan completed.")
|
||||||
fuzzer_state.export_failures("failures.csv")
|
fuzzer_state.export_failures(FAILURES_CSV_PATH)
|
||||||
fuzzer_state.export_full_log("full_scan_log.csv")
|
fuzzer_state.export_full_log(FULL_LOG_CSV_PATH)
|
||||||
|
|
||||||
|
|
||||||
async def perform_many_shot_scan(
|
async def perform_many_shot_scan(
|
||||||
@@ -515,7 +507,7 @@ async def perform_many_shot_scan(
|
|||||||
tokens += prompt_tokens
|
tokens += prompt_tokens
|
||||||
|
|
||||||
injected = False
|
injected = False
|
||||||
for _ in range(20):
|
for _ in range(MAX_INJECTION_ATTEMPTS):
|
||||||
if injected:
|
if injected:
|
||||||
break
|
break
|
||||||
|
|
||||||
@@ -552,14 +544,12 @@ async def perform_many_shot_scan(
|
|||||||
).model_dump_json()
|
).model_dump_json()
|
||||||
|
|
||||||
if optimize and len(failure_rates) >= MIN_FAILURE_SAMPLES:
|
if optimize and len(failure_rates) >= MIN_FAILURE_SAMPLES:
|
||||||
yield ScanResult.status_msg(
|
yield ScanResult.status_msg(f"High failure rate detected ({failure_rate:.2%}). Stopping this module...")
|
||||||
f"High failure rate detected ({failure_rate:.2%}). Stopping this module..."
|
|
||||||
)
|
|
||||||
break
|
break
|
||||||
|
|
||||||
yield ScanResult.status_msg("Scan completed.")
|
yield ScanResult.status_msg("Scan completed.")
|
||||||
fuzzer_state.export_failures("failures.csv")
|
fuzzer_state.export_failures(FAILURES_CSV_PATH)
|
||||||
fuzzer_state.export_full_log("full_scan_log.csv")
|
fuzzer_state.export_full_log(FULL_LOG_CSV_PATH)
|
||||||
|
|
||||||
|
|
||||||
def scan_router(
|
def scan_router(
|
||||||
|
|||||||
Reference in New Issue
Block a user