proxify icon indicating copy to clipboard operation
proxify copied to clipboard

Making raw logs optional

Open ehsandeep opened this issue 2 years ago • 0 comments

   -o, -output string    output file to store proxify logs (default "proxify_logs.jsonl")
   -sr, -store-response  store raw http request / response to output directory (default "proxify_logs")

Please describe your feature request:

Default Run -

go run .
# go run . -o=test_logs.jsonl

                       _ ___    
   ___  _______ __ __ (_) _/_ __
  / _ \/ __/ _ \\ \ // / _/ // /
 / .__/_/  \___/_\_\/_/_/ \_, / 
/_/                      /___/

		projectdiscovery.io

[INF] Current proxify version v0.0.12 (latest)
[INF] HTTP Proxy Listening on 127.0.0.1:8888
[INF] Socks5 Proxy Listening on 127.0.0.1:10080
[INF] Saving proxify logs to proxify_logs.jsonl

Running with newly added optional -sr option -

go run . -sr
# go run . -sr=test_dir

                       _ ___    
   ___  _______ __ __ (_) _/_ __
  / _ \/ __/ _ \\ \ // / _/ // /
 / .__/_/  \___/_\_\/_/_/ \_, / 
/_/                      /___/

		projectdiscovery.io

[INF] Current proxify version v0.0.12 (latest)
[INF] HTTP Proxy Listening on 127.0.0.1:8888
[INF] Socks5 Proxy Listening on 127.0.0.1:10080
[INF] Saving proxify logs to proxify_logs.jsonl
[INF] Saving proxify logs (raw) to proxify_logs

ehsandeep avatar Sep 21 '23 08:09 ehsandeep