You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
when you create a new user (cmd or web either), it will only add record in oddslingers_user table. with docker-compose.yml and default config.
I manually added root to the stats table。
here is the POC
DO
$$
DECLARE
_table_name text;
_column_name text;
_uuid text :='b43794a3-d81b-42fa-90a7-791e5e7ad864';
_query text;
_result int;
BEGIN
FOR _table_name, _column_name IN (SELECT table_name, column_name FROMinformation_schema.columnsWHERE table_schema ='public'AND data_type ='uuid')
LOOP
_query := format('SELECT COUNT(*) FROM %I WHERE %I = %L', _table_name, _column_name, _uuid);
EXECUTE _query INTO _result;
IF _result >0 THEN
RAISE NOTICE 'Table % contains the UUID', _table_name;
END IF;
END LOOP;
END
$$
web error screenshots
The text was updated successfully, but these errors were encountered:
when you create a new user (cmd or web either), it will only add record in
oddslingers_user
table. withdocker-compose.yml
and default config.I manually added root to the
stats
table。here is the POC
web error screenshots
The text was updated successfully, but these errors were encountered: