org.owasp.benchmark.testcode.BenchmarkTest02046.java Source code

Java tutorial

Introduction

Here is the source code for org.owasp.benchmark.testcode.BenchmarkTest02046.java

Source

/**
* OWASP Benchmark Project v1.2beta
*
* This file is part of the Open Web Application Security Project (OWASP)
* Benchmark Project. For details, please see
* <a href="https://www.owasp.org/index.php/Benchmark">https://www.owasp.org/index.php/Benchmark</a>.
*
* The OWASP Benchmark is free software: you can redistribute it and/or modify it under the terms
* of the GNU General Public License as published by the Free Software Foundation, version 2.
*
* The OWASP Benchmark is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without
* even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* @author Nick Sanidas <a href="https://www.aspectsecurity.com">Aspect Security</a>
* @created 2015
*/

package org.owasp.benchmark.testcode;

import java.io.IOException;

import javax.servlet.ServletException;
import javax.servlet.annotation.WebServlet;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;

@WebServlet("/BenchmarkTest02046")
public class BenchmarkTest02046 extends HttpServlet {

    private static final long serialVersionUID = 1L;

    @Override
    public void doGet(HttpServletRequest request, HttpServletResponse response)
            throws ServletException, IOException {
        doPost(request, response);
    }

    @Override
    public void doPost(HttpServletRequest request, HttpServletResponse response)
            throws ServletException, IOException {
        response.setContentType("text/html");

        String param = "";
        boolean flag = true;
        java.util.Enumeration<String> names = request.getHeaderNames();
        while (names.hasMoreElements() && flag) {
            String name = (String) names.nextElement();
            java.util.Enumeration<String> values = request.getHeaders(name);
            if (values != null) {
                while (values.hasMoreElements() && flag) {
                    String value = (String) values.nextElement();
                    if (value.equals("vector")) {
                        param = name;
                        flag = false;
                    }
                }
            }
        }

        String bar = doSomething(param);

        try {
            java.util.Properties benchmarkprops = new java.util.Properties();
            benchmarkprops.load(this.getClass().getClassLoader().getResourceAsStream("benchmark.properties"));
            String algorithm = benchmarkprops.getProperty("hashAlg1", "SHA512");
            java.security.MessageDigest md = java.security.MessageDigest.getInstance(algorithm);
            byte[] input = { (byte) '?' };
            Object inputParam = bar;
            if (inputParam instanceof String)
                input = ((String) inputParam).getBytes();
            if (inputParam instanceof java.io.InputStream) {
                byte[] strInput = new byte[1000];
                int i = ((java.io.InputStream) inputParam).read(strInput);
                if (i == -1) {
                    response.getWriter().println(
                            "This input source requires a POST, not a GET. Incompatible UI for the InputStream source.");
                    return;
                }
                input = java.util.Arrays.copyOf(strInput, i);
            }
            md.update(input);

            byte[] result = md.digest();
            java.io.File fileTarget = new java.io.File(
                    new java.io.File(org.owasp.benchmark.helpers.Utils.testfileDir), "passwordFile.txt");
            java.io.FileWriter fw = new java.io.FileWriter(fileTarget, true); //the true will append the new data
            fw.write("hash_value=" + org.owasp.esapi.ESAPI.encoder().encodeForBase64(result, true) + "\n");
            fw.close();
            response.getWriter()
                    .println("Sensitive value '" + org.owasp.esapi.ESAPI.encoder().encodeForHTML(new String(input))
                            + "' hashed and stored<br/>");
        } catch (java.security.NoSuchAlgorithmException e) {
            System.out.println("Problem executing hash - TestCase");
            throw new ServletException(e);
        }

        response.getWriter()
                .println("Hash Test java.security.MessageDigest.getInstance(java.lang.String) executed");
    } // end doPost

    private static String doSomething(String param) throws ServletException, IOException {

        String bar = org.apache.commons.lang.StringEscapeUtils.escapeHtml(param);

        return bar;
    }
}