Skip to content

Commit

Permalink
[AIRFLOW-6351] security - ui - Add Cross Site Scripting defence (#6913)
Browse files Browse the repository at this point in the history
  • Loading branch information
tooptoop4 authored and kaxil committed Apr 14, 2020
1 parent 63260c9 commit afa4b11
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion airflow/www_rbac/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -321,7 +321,7 @@ def get_int_arg(value, default=0):
num_dag_to=min(end, num_of_all_dags),
num_of_all_dags=num_of_all_dags,
paging=wwwutils.generate_pages(current_page, num_of_pages,
search=arg_search_query,
search=escape(arg_search_query) if arg_search_query else None,
showPaused=not hide_paused),
num_runs=num_runs,
tags=tags)
Expand Down

0 comments on commit afa4b11

Please sign in to comment.