authoscope 0.8.1

Scriptable network authentication cracker
Documentation
descr = "http"

function verify(user, password)
    session = http_mksession()

    -- set cookies
    req = http_request(session, 'GET', 'https://httpbin.org/anything', {
        basic_auth={"user", "password"},
        user_agent="some-agent/0.1",
        headers={
            foo="bar"
        }
    })
    resp = http_send(req)
    if last_err() then return end

    json = json_decode(resp['text'])
    if last_err() then return end
    print(json)

    return false
end