Security

"Token is required" error when executing curl command from Java's ProcessBuilder

angrydead
Explorer

I am using Java's ProcessBuilder to execute curl from Java. The same command being executed in bash works just fine, but I get a {"text": "Token is required", "code":2} error from Java.

public String call() throws IOException, InterruptedException {
    List<String> command = new ArrayList<>();

    command.add("curl");
    command.add("-X");
    command.add(method.name());
    command.add("-k");
    command.add(endpoint);

    if (headers != null && !headers.isEmpty()) {
        StringBuilder builder = new StringBuilder();
        headers.keySet().forEach(s -> {
            builder.replace(0, builder.length(), "");
            builder.append("'").append(s).append(":").append(headers.get(s)).append("'");
            command.add("-H");
            command.add(builder.toString());
        });
    }

    if (data != null) {
        command.add("-d");
        command.add("'" + data + "'");
    }

    System.out.println(StringUtils.join(command, " "));

    return doCurl(command.toArray(new String[0]));
}

private String doCurl(String[] args) throws IOException, InterruptedException {
    Process process = new ProcessBuilder(args)
            .redirectErrorStream(true)
            .start();

    String lines;
    try (BufferedReader reader = new BufferedReader(new InputStreamReader(process.getInputStream(), "UTF-8"))) {
        lines = reader.lines().collect(Collectors.joining("\n"));
    }
    process.waitFor();
    return lines;
}
Tags (1)
0 Karma
Get Updates on the Splunk Community!

Stay Connected: Your Guide to May Tech Talks, Office Hours, and Webinars!

Take a look below to explore our upcoming Community Office Hours, Tech Talks, and Webinars this month. This ...

They're back! Join the SplunkTrust and MVP at .conf24

With our highly anticipated annual conference, .conf, comes the fez-wearers you can trust! The SplunkTrust, as ...

Enterprise Security Content Update (ESCU) | New Releases

Last month, the Splunk Threat Research Team had two releases of new security content via the Enterprise ...