I am currently playing around with the code protocol block to use tlsx for SSL checks. How do i get to print the command output of tlsx in the command line?
https://github.com/projectdiscovery/tlsx
Command line: nuclei -t .\9.1.1.yaml -code -v -debug
id: 9-1-1
info:
name: TLS Fallback
author: S0meGuy
severity: low
code:
- engine:
- powershell
- powershell.exe
source: |
tlsx -ve -tv -u https://google.com -min-version tls12 -max-version tls12 -v
alternatively when trying to use the -u argument with {{BaseURL}}
Command line: nuclei -t .\9.1.1.yaml -code -u http://google.com -v -debug
id: 9-1-1
info:
name: TLS Fallback
author: S0meGuy
severity: low
code:
- engine:
- powershell
- powershell.exe
source: |
tlsx -ve -tv -u {{BaseURL}} -min-version tls12 -max-version tls12 -v
this resulted in
[VER] Started metrics server at localhost:9092
[WRN] Found 26 template[s] loaded with deprecated paths, update before v3 for continued support.
[INF] Current nuclei version: v3.2.2 (latest)
[INF] Current nuclei-templates version: v9.8.0 (latest)
[WRN] Scan results upload to cloud is disabled.
[INF] New templates added in latest release: 85
[INF] Templates loaded for current scan: 1
[INF] Executing 1 signed templates from S0meGuy
[INF] Targets loaded for current scan: 1
[VER] [9-1-1] Executed code on local machine http://google.com
[DBG] [9-1-1] Dumped Executed Source Code for http://google.com
tlsx -ve -tv -u {{BaseURL}} -min-version tls12 -max-version tls12 -v
[DBG] [9-1-1] Dumped Code Execution for http://google.com
[INF] No results found. Better luck next time!
tlsx is in PATH and I am able to run tlsx normally
What am I doing wrong?
How to get Nuclei to print output regardless of error?