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