prax 0.1.0

a web penetration proxy hosted in neovim
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
--- @module 'prax'
focus()

target("google.com:443")

target('localhost:8000')
    :req(
        set(header("Authorization"), "Bearer abc"),
        set(query("xyz"), "true")
    )
    :resp(
        set(header("X-AttackProxy"), "set")
    )