File: security.out

package info (click to toggle)
postgresql-rum 1.3.13-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 2,872 kB
  • sloc: ansic: 29,165; sql: 6,596; perl: 545; python: 97; makefile: 65; sh: 63
file content (5 lines) | stat: -rw-r--r-- 295 bytes parent folder | download | duplicates (2)
1
2
3
4
5
-- Check security CVE-2020-14350
CREATE FUNCTION rum_anyarray_similar(anyarray,anyarray) RETURNS bool AS $$ SELECT false $$ LANGUAGE SQL;
CREATE EXTENSION rum;
ERROR:  function "rum_anyarray_similar" already exists with same argument types
DROP FUNCTION rum_anyarray_similar(anyarray,anyarray);