Skip to content

Commit

Permalink
code cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
csteph9 committed Dec 19, 2023
1 parent 21d3d57 commit 60ccf66
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions app.js
Original file line number Diff line number Diff line change
Expand Up @@ -139,10 +139,10 @@ function sanitize(r)
r[i] = r[i].replace(/\>/,'');
r[i] = r[i].replace(/\%/,'');
r[i] = r[i].replace(/\;/,'');
r[i] = r[i].replace(/\.\./,'');
r[i] = r[i].replace(/'/,'');
r[i] = r[i].replace(/\.\./g,'');
r[i] = r[i].replace(/'/g,'');
r[i] = r[i].replace(/echo/,'');
r[i] = r[i].replace(/script/,'');
r[i] = r[i].replace(/script/g,'');
}

return r;
Expand Down

0 comments on commit 60ccf66

Please sign in to comment.