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