fix: resolve 3 security audit issues
#3: Stored XSS in stats dashboard - escape p[path] with html.escape() #4: Caddy timeout race - increase read/write_timeout 30s -> 60s #5: Missing CSP header - add Content-Security-Policy to Caddyfile
This commit is contained in:
15
cache/e8d39ac2b8645f201df2197c4f56db7f
vendored
Normal file
15
cache/e8d39ac2b8645f201df2197c4f56db7f
vendored
Normal file
@@ -0,0 +1,15 @@
|
||||
/**
|
||||
* jQuery Shuffle (http://mktgdept.com/jquery-shuffle)
|
||||
* A jQuery plugin for shuffling a set of elements
|
||||
*
|
||||
* v0.0.1 - 13 November 2009
|
||||
*
|
||||
* Copyright (c) 2009 Chad Smith (http://twitter.com/chadsmith)
|
||||
* Dual licensed under the MIT and GPL licenses.
|
||||
* http://www.opensource.org/licenses/mit-license.php
|
||||
* http://www.opensource.org/licenses/gpl-license.php
|
||||
*
|
||||
* Shuffle elements using: $(selector).shuffle() or $.shuffle(selector)
|
||||
*
|
||||
**/
|
||||
(function(d){d.fn.shuffle=function(c){c=[];return this.each(function(){c.push(d(this).clone(true))}).each(function(a,b){d(b).replaceWith(c[a=Math.floor(Math.random()*c.length)]);c.splice(a,1)})};d.shuffle=function(a){return d(a).shuffle()}})(jQuery);
|
||||
Reference in New Issue
Block a user