
Research
/Security News
Critical Vulnerability in NestJS Devtools: Localhost RCE via Sandbox Escape
A flawed sandbox in @nestjs/devtools-integration lets attackers run code on your machine via CSRF, leading to full Remote Code Execution (RCE).
gradio-clickable-arrow-dropdown
Advanced tools
Dropdown component where clicking arrow on the side displays dropdown options
gradio_clickable_arrow_dropdown
Dropdown component where clicking arrow on the side displays dropdown options
pip install gradio_clickable_arrow_dropdown
import gradio as gr
from gradio_clickable_arrow_dropdown import ClickableArrowDropdown
def handle_inputs(reg_dropdown_val, custom_dropdown_val):
res = f"""
Regular dropdown value: {reg_dropdown_val}
Custom dropdown value: {custom_dropdown_val}
"""
return res
choices = ["Option 1", "Option 2", "Option 3"]
demo = gr.Interface(
handle_inputs,
[
gr.Dropdown(choices=choices, value=choices[0], filterable=False),
ClickableArrowDropdown(choices=choices, value=choices[0], filterable=False)
],
gr.Textbox(),
)
if __name__ == "__main__":
demo.launch()
FAQs
Dropdown component where clicking arrow on the side displays dropdown options
We found that gradio-clickable-arrow-dropdown demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
/Security News
A flawed sandbox in @nestjs/devtools-integration lets attackers run code on your machine via CSRF, leading to full Remote Code Execution (RCE).
Product
Customize license detection with Socket’s new license overlays: gain control, reduce noise, and handle edge cases with precision.
Product
Socket now supports Rust and Cargo, offering package search for all users and experimental SBOM generation for enterprise projects.