Created How to make the output in plain text without the colors? (markdown)
11
How-to-make-the-output-in-plain-text-without-the-colors?.md
Normal file
11
How-to-make-the-output-in-plain-text-without-the-colors?.md
Normal file
@@ -0,0 +1,11 @@
|
||||
Normally you get the WPScan output in some colours.
|
||||
But if you want to remove the colour in the output text, you can use an extra Linux command.
|
||||
|
||||
'Pipe' your terminal output through:
|
||||
```sed -r "s/\x1B\[([0-9]{1,2}(;[0-9]{1,2})?)?[m|K]//g"```
|
||||
This command removes the so called: 'Terminal Escape Sequence codes'
|
||||
|
||||
Example:
|
||||
```./wpscan.rb --url www.example.com | sed -r "s/\x1B\[([0-9]{1,2}(;[0-9]{1,2})?)?[m|K]//g"```
|
||||
|
||||
|
||||
Reference in New Issue
Block a user