cdec.astam-correlator.threadfix-cli-lib.1.3.8.source-code.log4j2.xml Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of threadfix-cli-lib Show documentation
Show all versions of threadfix-cli-lib Show documentation
This module contains library classes for accessing the ThreadFix REST API.
The ThreadFix IDE plugins use this library to retrieve application and vulnerability
marker information, and in the ThreadFix scanner plugins to get endpoint information and
upload scans to ThreadFix applications.
The easiest way to start using the library is with the PluginClient or ThreadFixRestClient
classes. Both have constructors that take a PropertiesManager instance, which holds the ThreadFix
API key and url information. The default PropertiesManager implementation stores these properties
in threadfix.properties, but the ThreadFix plugins extend the default PropertiesManager class
to override this behavior for the target platform.
The newest version!
<?xml version="1.0" encoding="UTF-8" ?> <Configuration> <Appenders> <Console name="CONSOLE" target="SYSTEM_OUT"> <PatternLayout pattern="%p [%t] %c{1}.%M(%L) | %m%n" /> <Filters> <ThresholdFilter level="INFO" /> </Filters> </Console> <RollingFile name="FILE" filePattern="threadfix-cli.%d{yyyy-MM-dd}.log" append="true"> <Filters> <ThresholdFilter level="DEBUG" /> </Filters> <PatternLayout pattern="%d [%t] %-5p %C{6} (%F:%L) - %m%n" /> <Policies> <TimeBasedTriggeringPolicy interval="1" /> </Policies> </RollingFile> </Appenders> <Loggers> <!-- Suppress success logging from InteractiveAuthenticationSuccessEvent --> <Logger name="org.springframework.security" level="ERROR" /> <Logger name="org.apache" level="WARN" /> <Logger name="httpclient.wire.header" level="WARN" /> <Logger name="httpclient.wire.content" level="WARN" /> <Logger name="org.hibernate" level="WARN" /> <Logger name="org.springframework" level="WARN" /> <Logger name="org.springframework.orm" level="WARN" /> <Logger name="org.tuckey.web.filters.urlrewrite" level="WARN" /> <Logger name="com.denimgroup.threadfix" level="DEBUG" /> <Root level="DEBUG"> <AppenderRef ref="CONSOLE"/> <AppenderRef ref="FILE"/> </Root> </Loggers> </Configuration>