fix(security): add csrf filter + prevent xss attacks by escaping user input

- update CI4 to v4.1.9's stable production package
- update php and js dependencies to latest
This commit is contained in:
Yassine Doghri 2022-03-04 14:33:48 +00:00
commit cd2e1e1dc3
182 changed files with 4410 additions and 4214 deletions

View file

@ -58,6 +58,7 @@ class AnalyticsWebsiteByRefererModel extends Model
cache()
->save("{$podcastId}_analytics_website_by_referer", $found, 600);
}
return $found;
}
@ -84,6 +85,7 @@ class AnalyticsWebsiteByRefererModel extends Model
cache()
->save("{$podcastId}_analytics_website_by_domain_weekly", $found, 600);
}
return $found;
}
@ -110,6 +112,7 @@ class AnalyticsWebsiteByRefererModel extends Model
cache()
->save("{$podcastId}_analytics_website_by_domain_yearly", $found, 600);
}
return $found;
}
}