Spaces:
Runtime error
Runtime error
| import gradio as gr | |
| def run_test(exploit_type, options): | |
| # Your code to trigger fuzzing, payload creation, etc. | |
| return f"Running test for {exploit_type} with options {options}" | |
| gr.Interface(run_test, inputs=[gr.Textbox(), gr.CheckboxGroup(["Option 1", "Option 2", "Option 3"])], outputs="text").launch() | |