11 行
278 B
Python
11 行
278 B
Python
from lab.runners.common import RunnerContext, run_fixture_attack, run_fixture_seed
|
|
|
|
|
|
def run_seed(context: RunnerContext):
|
|
return run_fixture_seed(context, "proxy-boundary")
|
|
|
|
|
|
def run_attack(context: RunnerContext):
|
|
return run_fixture_attack(context, "proxy-boundary")
|
|
|