-
Notifications
You must be signed in to change notification settings - Fork 240
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
support json output format #294
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
- Panic with
-j
option
./proxify -j
_ ___
___ _______ __ __ (_) _/_ __
/ _ \/ __/ _ \\ \ // / _/ // /
/ .__/_/ \___/_\_\/_/_/ \_, /
/_/ /___/
projectdiscovery.io
[INF] Current proxify version 0.0.9 (latest)
[INF] HTTP Proxy Listening on 127.0.0.1:8888
[INF] Socks5 Proxy Listening on 127.0.0.1:10080
[INF] Saving proxify traffic to logs
fatal error: concurrent map writes
goroutine 754 [running]:
github.com/projectdiscovery/proxify/pkg/logger.(*Logger).LogRequest(0xc00031e150, 0xc001037500, {{0xc001681860, 0x10}, 0x0, 0x0, {0xc000850757, 0xe}})
/Users/geekboy/Github/proxify/pkg/logger/logger.go:149 +0x129
github.com/projectdiscovery/proxify.(*Proxy).ModifyRequest(0xc0001140f0, 0xc001037500)
/Users/geekboy/Github/proxify/proxy.go:115 +0x2b6
github.com/projectdiscovery/martian/v3.(*Proxy).handleConnectRequest(0xc000536800, 0xc0001a0a80?, 0xc001037500, 0xc000213a20?, 0xc000213a10, {0x25e1bc8?, 0xc00087a848})
/Users/geekboy/go/pkg/mod/github.com/projectdiscovery/martian/v3@v3.0.0-20230412114616-98e3a0a6994a/proxy.go:392 +0x86
github.com/projectdiscovery/martian/v3.(*Proxy).handle(0xc000536800, 0xc0001a0a00, {0x25e1bc8, 0xc00087a848}, 0xc000213a10)
/Users/geekboy/go/pkg/mod/github.com/projectdiscovery/martian/v3@v3.0.0-20230412114616-98e3a0a6994a/proxy.go:608 +0x512
github.com/projectdiscovery/martian/v3.(*Proxy).handleLoop(0xc000536800, {0x25e1bc8?, 0xc00087a848?})
/Users/geekboy/go/pkg/mod/github.com/projectdiscovery/martian/v3@v3.0.0-20230412114616-98e3a0a6994a/proxy.go:313 +0x725
created by github.com/projectdiscovery/martian/v3.(*Proxy).Serve
/Users/geekboy/go/pkg/mod/github.com/projectdiscovery/martian/v3@v3.0.0-20230412114616-98e3a0a6994a/proxy.go:274 +0x478
goroutine 1 [IO wait, 1 minutes]:
internal/poll.runtime_pollWait(0x2d80d788, 0x72)
/usr/local/go/src/runtime/netpoll.go:306 +0x89
internal/poll.(*pollDesc).wait(0xc000536a80?, 0x12d90cb?, 0x0)
/usr/local/go/src/internal/poll/fd_poll_runtime.go:84 +0x32
internal/poll.(*pollDesc).waitRead(...)
/usr/local/go/src/internal/poll/fd_poll_runtime.go:89
internal/poll.(*FD).Accept(0xc000536a80)
/usr/local/go/src/internal/poll/fd_unix.go:614 +0x2bd
net.(*netFD).accept(0xc000536a80)
/usr/local/go/src/net/fd_unix.go:172 +0x35
net.(*TCPListener).accept(0xc000010a68)
/usr/local/go/src/net/tcpsock_posix.go:148 +0x25
net.(*TCPListener).Accept(0xc000010a68)
/usr/local/go/src/net/tcpsock.go:297 +0x3d
github.com/armon/go-socks5.(*Server).Serve(0xc0002b6f90, {0x25da0b0, 0xc000010a68})
/Users/geekboy/go/pkg/mod/github.com/armon/go-socks5@v0.0.0-20160902184237-e75332964ef5/socks5.go:111 +0x42
github.com/armon/go-socks5.(*Server).ListenAndServe(0x0?, {0x22a7f0f?, 0x22f32ab?}, {0x22f991d?, 0xc0002a22b8?})
/Users/geekboy/go/pkg/mod/github.com/armon/go-socks5@v0.0.0-20160902184237-e75332964ef5/socks5.go:105 +0x59
github.com/projectdiscovery/proxify.(*Proxy).Run(0xc0001140f0)
/Users/geekboy/Github/proxify/proxy.go:323 +0x24f
github.com/projectdiscovery/proxify/internal/runner.(*Runner).Run(0xc0002b6fa0)
/Users/geekboy/Github/proxify/internal/runner/runner.go:122 +0x4fe
main.main()
/Users/geekboy/Github/proxify/cmd/proxify/proxify.go:33 +0xcf
- Write all the logs to single output file when
-j
option is used.
[INF] Saving proxify traffic to logs/proxify.jsonl
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
- JSONL output with blank request information, ideally, we should have both request/response information.
cat *jsonl | jq 'select(.url == "")' | jq .request
{
"header": null,
"body": "",
"raw": ""
}
{
"header": null,
"body": "",
"raw": ""
}
{
"header": null,
"body": "",
"raw": ""
}
{
"header": null,
"body": "",
"raw": ""
}
{
"header": null,
"body": "",
"raw": ""
}
{
"header": null,
"body": "",
"raw": ""
}
fix concurent map writes
proxify $./proxify -j
_ ___
___ _______ __ __ (_) _/_ __
/ _ \/ __/ _ \\ \ // / _/ // /
/ .__/_/ \___/_\_\/_/_/ \_, /
/_/ /___/
projectdiscovery.io
[INF] Current proxify version 0.0.9 (latest)
[INF] HTTP Proxy Listening on 127.0.0.1:8888
[INF] Socks5 Proxy Listening on 127.0.0.1:10080
[INF] Saving proxify traffic to logs/proxify.jsonl
fatal error: concurrent map writes
goroutine 3078 [running]:
github.com/projectdiscovery/proxify/pkg/logger.(*Logger).LogResponse(0xc000242c40, 0xc000330120, {{0xc0015c3640, 0x10}, 0x0, 0x1, {0xc000f80c87, 0x13}})
/Users/geekboy/Github/proxify/pkg/logger/logger.go:212 +0x594
github.com/projectdiscovery/proxify.(*Proxy).ModifyResponse(0xc00013e050, 0xc000330120)
/Users/geekboy/Github/proxify/proxy.go:158 +0x36b
github.com/projectdiscovery/martian/v3.(*Proxy).handleConnectRequest(0xc00039c600, 0xc00143e1c0?, 0xc00173b200, 0xc0002623c0?, 0xc0002623a0, {0x25e1fa8?, 0xc000e05820})
/Users/geekboy/go/pkg/mod/github.com/projectdiscovery/martian/v3@v3.0.0-20230412114616-98e3a0a6994a/proxy.go:417 +0x2bd
github.com/projectdiscovery/martian/v3.(*Proxy).handle(0xc00039c600, 0xc00143e140, {0x25e1fa8, 0xc000e05820}, 0xc0002623a0)
/Users/geekboy/go/pkg/mod/github.com/projectdiscovery/martian/v3@v3.0.0-20230412114616-98e3a0a6994a/proxy.go:608 +0x512
github.com/projectdiscovery/martian/v3.(*Proxy).handleLoop(0xc00039c600, {0x25e1fa8?, 0xc000e05820?})
/Users/geekboy/go/pkg/mod/github.com/projectdiscovery/martian/v3@v3.0.0-20230412114616-98e3a0a6994a/proxy.go:313 +0x725
created by github.com/projectdiscovery/martian/v3.(*Proxy).Serve
/Users/geekboy/go/pkg/mod/github.com/projectdiscovery/martian/v3@v3.0.0-20230412114616-98e3a0a6994a/proxy.go:274 +0x478
goroutine 1 [IO wait, 3 minutes]:
internal/poll.runtime_pollWait(0x2d8097c8, 0x72)
/usr/local/go/src/runtime/netpoll.go:306 +0x89
internal/poll.(*pollDesc).wait(0xc00039c980?, 0x12d90cb?, 0x0)
/usr/local/go/src/internal/poll/fd_poll_runtime.go:84 +0x32
internal/poll.(*pollDesc).waitRead(...)
/usr/local/go/src/internal/poll/fd_poll_runtime.go:89
internal/poll.(*FD).Accept(0xc00039c980)
/usr/local/go/src/internal/poll/fd_unix.go:614 +0x2bd
net.(*netFD).accept(0xc00039c980)
/usr/local/go/src/net/fd_unix.go:172 +0x35
net.(*TCPListener).accept(0xc000620a80)
/usr/local/go/src/net/tcpsock_posix.go:148 +0x25
net.(*TCPListener).Accept(0xc000620a80)
/usr/local/go/src/net/tcpsock.go:297 +0x3d
github.com/armon/go-socks5.(*Server).Serve(0xc0002151d0, {0x25da490, 0xc000620a80})
/Users/geekboy/go/pkg/mod/github.com/armon/go-socks5@v0.0.0-20160902184237-e75332964ef5/socks5.go:111 +0x42
github.com/armon/go-socks5.(*Server).ListenAndServe(0x0?, {0x22a824f?, 0x22f35f8?}, {0x22f9c6a?, 0xc0001522b8?})
/Users/geekboy/go/pkg/mod/github.com/armon/go-socks5@v0.0.0-20160902184237-e75332964ef5/socks5.go:105 +0x59
github.com/projectdiscovery/proxify.(*Proxy).Run(0xc00013e050)
/Users/geekboy/Github/proxify/proxy.go:323 +0x24f
github.com/projectdiscovery/proxify/internal/runner.(*Runner).Run(0xc0002151e0)
/Users/geekboy/Github/proxify/internal/runner/runner.go:128 +0x570
main.main()
/Users/geekboy/Github/proxify/cmd/proxify/proxify.go:33 +0xcf
goroutine 16 [sleep]:
time.Sleep(0x3b9aca00)
/usr/local/go/src/runtime/time.go:195 +0x135
github.com/haxii/fastproxy/servertime.init.0.func1()
/Users/geekboy/go/pkg/mod/github.com/haxii/fastproxy@v0.5.37/servertime/time.go:12 +0x1e
created by github.com/haxii/fastproxy/servertime.init.0
/Users/geekboy/go/pkg/mod/github.com/haxii/fastproxy@v0.5.37/servertime/time.go:10 +0x29 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
lgtm!
#261 JSONL output format support