authoscope 0.8.1

Scriptable network authentication cracker
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
descr = "local mysql"

function verify(user, password)
    mysql_connect("127.0.0.1", 3306, user, password)

    if last_err() then
        clear_err()
        return false
    else
        return true
    end
end