I2P Address: [http://git.idk.i2p]

Skip to content
Snippets Groups Projects
Commit 47f39d07 authored by zzz's avatar zzz
Browse files

stripHTML on form params

parent bcba5af8
No related branches found
No related tags found
No related merge requests found
...@@ -905,9 +905,12 @@ public class I2PSnarkServlet extends Default { ...@@ -905,9 +905,12 @@ public class I2PSnarkServlet extends Default {
private void writeAddForm(PrintWriter out, HttpServletRequest req) throws IOException { private void writeAddForm(PrintWriter out, HttpServletRequest req) throws IOException {
String uri = req.getRequestURI(); String uri = req.getRequestURI();
String newURL = req.getParameter("newURL"); String newURL = req.getParameter("newURL");
if ( (newURL == null) || (newURL.trim().length() <= 0) ) newURL = ""; if ( (newURL == null) || (newURL.trim().length() <= 0) )
String newFile = req.getParameter("newFile"); newURL = "";
if ( (newFile == null) || (newFile.trim().length() <= 0) ) newFile = ""; else
newURL = DataHelper.stripHTML(newURL); // XSS
//String newFile = req.getParameter("newFile");
//if ( (newFile == null) || (newFile.trim().length() <= 0) ) newFile = "";
out.write("<span class=\"snarkNewTorrent\">\n"); out.write("<span class=\"snarkNewTorrent\">\n");
// *not* enctype="multipart/form-data", so that the input type=file sends the filename, not the file // *not* enctype="multipart/form-data", so that the input type=file sends the filename, not the file
...@@ -935,8 +938,10 @@ public class I2PSnarkServlet extends Default { ...@@ -935,8 +938,10 @@ public class I2PSnarkServlet extends Default {
private void writeSeedForm(PrintWriter out, HttpServletRequest req) throws IOException { private void writeSeedForm(PrintWriter out, HttpServletRequest req) throws IOException {
String uri = req.getRequestURI(); String uri = req.getRequestURI();
String baseFile = req.getParameter("baseFile"); String baseFile = req.getParameter("baseFile");
if (baseFile == null) if (baseFile == null || baseFile.trim().length() <= 0)
baseFile = ""; baseFile = "";
else
baseFile = DataHelper.stripHTML(baseFile); // XSS
out.write("<div class=\"newtorrentsection\"><span class=\"snarkNewTorrent\">\n"); out.write("<div class=\"newtorrentsection\"><span class=\"snarkNewTorrent\">\n");
// *not* enctype="multipart/form-data", so that the input type=file sends the filename, not the file // *not* enctype="multipart/form-data", so that the input type=file sends the filename, not the file
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment