Leandro Rodrigues
Leandro Rodrigues
> Hi, > what version of PHP do you use ? > > https://github.com/designsecurity/progpilot/blob/master/docs/FAQ.md > > > The minimum version of PHP needed to run Progpilot is 7.0.25 > >...
There is any list of the vulnerabilities that progpilot can detect?? I have a SQL INJECTION vulnerability that does not detect. Can be because I'm using SQLLite3 as a "database"?
Thanks @eric-therond. Here is the code that I'm using. ` $db = new SQLite3($DB_FILE_ABSOLUTE_PATH); $password = $_POST['v_password']; $username = $_POST['v_username']; // ... $sql = 'SELECT salt FROM users where username...