nick@artemis:~$ php -a Interactive mode enabled php > $plain = "this is my password"; EFAULT);ash = password_hash($plain, PASSWORD_DD hash; echo $H $2y$10$7tXa.6YZcaY6DuxtSmWi5O4yqLyYWNGcKhZ3nN24FnR.wbb0ItEdO strlen($hash);g 60 ($plain,h$hash);ord_verify 1 ",ho>password_verify($plain, $hash); php > exit nick@artemis:~$ cd public_html/3420 nick@artemis:~/public_html/3420$ mkdirrauth nick@artemis:~/public_html/3420$ cd auth nick@artemis:~/public_html/3420/auth$ mysql Reading table information for completion of table and column names You can turn off this feature to get a quicker startup with -A BWelcome to the MariaDB monitor. Commands end with ; or \g. BBYour MariaDB connection id is 11619 Server version: 10.3.38-MariaDB-0+deb10u1 Debian 10 BBCopyright (c) 2000, 2018, Oracle, MariaDB Corporation Ab and others. BBType 'help;' or '\h' for help. Type '\c' to clear the current input statement. BMariaDB [nick]> create database auth_demo; BQuery OK, 1 row affected (0.006 sec) BB BMariaDB [nick]> use auth_demo; BDatabase changed );ariaDB [auth_demo]> create user auth_demo@localhost identified by password('demo of auth' ERROR 1064 (42000): You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near '('demo of auth')' at line 1 ('demoaof auth')('demo ofeauth');r auth_demo@localhost identified by password('demo of auth') ; ERROR 1064 (42000): You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near ''demo of auth'' at line 1 `byariaDB [auth_demo]> create user auth_demo@localhost identified 'demo of auth'; BQuery OK, 0 rows affected (0.124 sec) BB BMariaDB [auth_demo]> grant all privilegesson auth_demo.* to auth_demo@localhost; ERROR 1044 (42000): Access denied for user 'nick'@'localhost' to database 'auth_demo' BBMariaDB [auth_demo]> grant all privileges onnick@localhost;;;;;h_demo@localhost; ERROR 1044 (42000): Access denied for user 'nick'@'localhost' to database 'auth_demo' useanickB [auth_demo]> grant all privileges on auth_demo.* to nick@localhost; Reading table information for completion of table and column names You can turn off this feature to get a quicker startup with -A BDatabase changed BMariaDB [nick]> show grants for nick@localhost; +--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | Grants for nick@localhost | +--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | GRANT SELECT, INSERT, UPDATE, DELETE, CREATE, DROP, RELOAD, FILE, REFERENCES, INDEX, ALTER, SUPER, CREATE TEMPORARY TABLES, LOCK TABLES, EXECUTE, CREATE VIEW, SHOW VIEW, CREATE ROUTINE, ALTER ROUTINE, EVENT, TRIGGER, CREATE TABLESPACE ON *.* TO `nick`@`localhost` IDENTIFIED BY PASSWORD '*4068080DAF42BE0F72DC159700038CE7C717A177' WITH GRANT OPTION | | GRANT ALL PRIVILEGES ON `nick`.* TO `nick`@`localhost` | | GRANT SELECT, INSERT, UPDATE, DELETE, CREATE, DROP, INDEX, ALTER, CREATE TEMPORARY TABLES, LOCK TABLES, EXECUTE, CREATE VIEW, SHOW VIEW, CREATE ROUTINE, ALTER ROUTINE, EVENT, TRIGGER ON `readymedi`.* TO `nick`@`localhost` | +--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ B3 rows in set (0.000 sec) BB BMariaDB [nick]> grant all privileges on auth_demo.* to nick@localhost; ERROR 1044 (42000): Access denied for user 'nick'@'localhost' to database 'auth_demo' exittiall privilegesaon auth_demo.*gto nick@localhost;to nick@localhost; BBye Bnick@artemis:~/public_html/3420/auth$ sudommysql [sudo] password for nick: Reading table information for completion of table and column names You can turn off this feature to get a quicker startup with -A BWelcome to the MariaDB monitor. Commands end with ; or \g. BBYour MariaDB connection id is 11622 Server version: 10.3.38-MariaDB-0+deb10u1 Debian 10 BBCopyright (c) 2000, 2018, Oracle, MariaDB Corporation Ab and others. BBType 'help;' or '\h' for help. Type '\c' to clear the current input statement. BMariaDB [nick]> grant all privileges on auth_demo.* to nick@localhost; ERROR 1044 (42000): Access denied for user 'nick'@'localhost' to database 'auth_demo' BBMariaDB [nick]> usetauth_demo BDatabase changed BMariaDB [auth_demo]> show tables; BEmpty set (0.000 sec) BB BMariaDB [auth_demo]> grantualldprivileges on auth_demo.* toauth_demo@localhost; ERROR 1044 (42000): Access denied for user 'nick'@'localhost' to database 'auth_demo' BBMariaDB [auth_demo]> exit BBye Bnick@artemis:~/public_html/3420/auth$ mysql auth_demo BWelcome to the MariaDB monitor. Commands end with ; or \g. BBYour MariaDB connection id is 11624 Server version: 10.3.38-MariaDB-0+deb10u1 Debian 10 BBCopyright (c) 2000, 2018, Oracle, MariaDB Corporation Ab and others. BBType 'help;' or '\h' for help. Type '\c' to clear the current input statement. BMariaDB [auth_demo]> source db.sql ERROR 1064 (42000) at line 1 in file: 'db.sql': You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near '(username) )' at line 5 BBMariaDB [auth_demo]> source db.sql BQuery OK, 0 rows affected (0.004 sec) BB BMariaDB [auth_demo]> MariaDB [auth_demo]> insertrintofPerson (username, password) values ('nick', 'test'); BQuery OK, 1 row affected (0.001 sec) BB BMariaDB [auth_demo]> select * from Person; +----+----------+----------+ | id | username | password | +----+----------+----------+ | 1 | nick | test | +----+----------+----------+ B1 row in set (0.000 sec) BB BMariaDB [auth_demo]> delete from Person; BQuery OK, 1 row affected (0.001 sec) BB BMariaDB [auth_demo]> exit BBye Bnick@artemis:~/public_html/3420/auth$ php -a Interactive mode enabled SWORD_DEFAULT);word_hash("test", PASW $2y$10$Yfe5Xwv3TUYVW5JD6klqz.irf4zyEvHSRqRfwf/nxPbIW95bu5vg2 php > exit nick@artemis:~/public_html/3420/auth$ mysql auth_demo Reading table information for completion of table and column names You can turn off this feature to get a quicker startup with -A BWelcome to the MariaDB monitor. Commands end with ; or \g. BBYour MariaDB connection id is 11626 Server version: 10.3.38-MariaDB-0+deb10u1 Debian 10 BBCopyright (c) 2000, 2018, Oracle, MariaDB Corporation Ab and others. BBType 'help;' or '\h' for help. Type '\c' to clear the current input statement. v3TUYVW5JD6klqz.irf4zyEvHSRqRfwf/nxPbIW95bu5vg2');alues ('nick', '$2y$10$Yf'); e'); BQuery OK, 1 row affected (0.001 sec) BB BMariaDB [auth_demo]> select * from Person; +----+----------+--------------------------------------------------------------+ | id | username | password | +----+----------+--------------------------------------------------------------+ | 2 | nick | $2y$10$Yfe5Xwv3TUYVW5JD6klqz.irf4zyEvHSRqRfwf/nxPbIW95bu5vg2 | +----+----------+--------------------------------------------------------------+ B1 row in set (0.000 sec) BB BMariaDB [auth_demo]> select password('test'); +-------------------------------------------+ | password('test') | +-------------------------------------------+ | *94BDCEBE19083CE2A1F959FD02F964C7AF4CFC29 | +-------------------------------------------+ B1 row in set (0.000 sec) BB BMariaDB [auth_demo]> select password('test'); +-------------------------------------------+ | password('test') | +-------------------------------------------+ | *94BDCEBE19083CE2A1F959FD02F964C7AF4CFC29 | +-------------------------------------------+ B1 row in set (0.000 sec) BB BMariaDB [auth_demo]> select password('test'); +-------------------------------------------+ | password('test') | +-------------------------------------------+ | *94BDCEBE19083CE2A1F959FD02F964C7AF4CFC29 | +-------------------------------------------+ B1 row in set (0.000 sec) BB BMariaDB [auth_demo]> select password('test'); +-------------------------------------------+ | password('test') | +-------------------------------------------+ | *94BDCEBE19083CE2A1F959FD02F964C7AF4CFC29 | +-------------------------------------------+ B1 row in set (0.000 sec) BB BMariaDB [auth_demo]> select password('test'); +-------------------------------------------+ | password('test') | +-------------------------------------------+ | *94BDCEBE19083CE2A1F959FD02F964C7AF4CFC29 | +-------------------------------------------+ B1 row in set (0.000 sec) BB BMariaDB [auth_demo]> select password('test'); +-------------------------------------------+ | password('test') | +-------------------------------------------+ | *94BDCEBE19083CE2A1F959FD02F964C7AF4CFC29 | +-------------------------------------------+ B1 row in set (0.000 sec) BB BMariaDB [auth_demo]> select password('test'); +-------------------------------------------+ | password('test') | +-------------------------------------------+ | *94BDCEBE19083CE2A1F959FD02F964C7AF4CFC29 | +-------------------------------------------+ B1 row in set (0.000 sec) BB BMariaDB [auth_demo]> select password('test'); +-------------------------------------------+ | password('test') | +-------------------------------------------+ | *94BDCEBE19083CE2A1F959FD02F964C7AF4CFC29 | +-------------------------------------------+ B1 row in set (0.000 sec) BB BMariaDB [auth_demo]> select password('test'); +-------------------------------------------+ | password('test') | +-------------------------------------------+ | *94BDCEBE19083CE2A1F959FD02F964C7AF4CFC29 | +-------------------------------------------+ B1 row in set (0.000 sec) BB BMariaDB [auth_demo]> exit BBye Bnick@artemis:~/public_html/3420/auth$ php -a Interactive mode enabled echo>password_hash("test", PASSWORD_DEFAULT); $2y$10$2IRnwWA1wiVLIsCMjVDKHO6XjT9UrvdxZZASsTRg3SQoh.cJln9my echo>password_hash("test", PASSWORD_DEFAULT); $2y$10$4yxv8TfpaiBgxy49s8Vj8ehzgBMpCYd1a3SAKuMoVVHYBVQIRQyje echo>password_hash("test", PASSWORD_DEFAULT); $2y$10$VWISTlTE7mrSY16WFNg0bOCX4mKjqlnvYeC34v97b/26TgUXQm1Cy echo>password_hash("test", PASSWORD_DEFAULT); $2y$10$K86jFcOIkEI27B/KN3pHbOCNVXhfJiRNpjxDkli6xcMjR3rUFEzT6 echo>password_hash("test", PASSWORD_DEFAULT); $2y$10$cVUN/F38tUqQ7QVx4PIF0.qDRv3UQD6oEudFet20BABoxkQ5QRBVG echo>password_hash("test", PASSWORD_DEFAULT); $2y$10$xqZayK/Xq9oHJFto6ILTRe6DcOQ066/U/umcNPFFh4mMe6Mub7aCa echo>password_hash("test", PASSWORD_DEFAULT); $2y$10$mdB4yHr4zbWT8ehVBAfeJutrhQImhnjIcoC0cEPH8TAqu0yL3Zc7C echo>password_hash("test", PASSWORD_DEFAULT); $2y$10$DpFfDHzp5NyIkrXTPTwfbes1Mc7U7YIGs4nmzYE0QbmFZJuFs7z86 echo>password_hash("test", PASSWORD_DEFAULT); $2y$10$5Fa43h22R2T90DfqTnUNx.U8u0lGyY9GR6o4RUC9SsCDfWtKUF2K2 echo>password_hash("test", PASSWORD_DEFAULT); $2y$10$3zwAEu6HQci2vtjN/5Dbhe3.FiKq5J.p5VOjoj7PW6SOqM9LBjGsa echo>password_hash("test", PASSWORD_DEFAULT); $2y$10$ac9xCChh/Ichusxw3ezBQ.1F2HBDG9ljdLskXxV8.2DwOQa/EPRFa echo>password_hash("test", PASSWORD_DEFAULT); $2y$10$Iy/c.LsDZUYzo.QJKLI5nu8aYDTp3eap3k5K5NKESn2sCo5bGW5i. echo>password_hash("test", PASSWORD_DEFAULT); $2y$10$wTb3nLvo3eUN827JUsPJ.eE.OTSTQEw/JkVojYiCuT6DH5q.r7eQy echo>password_hash("test", PASSWORD_DEFAULT); $2y$10$QmcYEEbLOQMHSK52NJkcy.9K7KXPi9VSBmV.IGScC/mCUDzXbD4Fq php > exit nick@artemis:~/public_html/3420/auth$ mysql auth_demo Reading table information for completion of table and column names You can turn off this feature to get a quicker startup with -A BWelcome to the MariaDB monitor. Commands end with ; or \g. BBYour MariaDB connection id is 11632 Server version: 10.3.38-MariaDB-0+deb10u1 Debian 10 BBCopyright (c) 2000, 2018, Oracle, MariaDB Corporation Ab and others. BBType 'help;' or '\h' for help. Type '\c' to clear the current input statement. BMariaDB [auth_demo]> show grants for auth_demo@localhost; +------------------------------------------------------------------------------------------------------------------+ | Grants for auth_demo@localhost | +------------------------------------------------------------------------------------------------------------------+ | GRANT USAGE ON *.* TO `auth_demo`@`localhost` IDENTIFIED BY PASSWORD '*8C0EAB08B71FA29B314495FF96FD51899869CBDC' | +------------------------------------------------------------------------------------------------------------------+ B1 row in set (0.000 sec) BB BMariaDB [auth_demo]> exit BBye Bnick@artemis:~/public_html/3420/auth$ sudo su - root@artemis:~# mysql auth_demo Reading table information for completion of table and column names You can turn off this feature to get a quicker startup with -A BWelcome to the MariaDB monitor. Commands end with ; or \g. BBYour MariaDB connection id is 11634 Server version: 10.3.38-MariaDB-0+deb10u1 Debian 10 BBCopyright (c) 2000, 2018, Oracle, MariaDB Corporation Ab and others. BBType 'help;' or '\h' for help. Type '\c' to clear the current input statement. BMariaDB [auth_demo]> grant all privileges on auth_demo.* to auth_demo@localhost; BQuery OK, 0 rows affected (0.007 sec) BB BMariaDB [auth_demo]> exit BBye Broot@artemis:~# exit logout nick@artemis:~/public_html/3420/auth$ mysql Reading table information for completion of table and column names You can turn off this feature to get a quicker startup with -A BWelcome to the MariaDB monitor. Commands end with ; or \g. BBYour MariaDB connection id is 11635 Server version: 10.3.38-MariaDB-0+deb10u1 Debian 10 BBCopyright (c) 2000, 2018, Oracle, MariaDB Corporation Ab and others. BBType 'help;' or '\h' for help. Type '\c' to clear the current input statement. BMariaDB [nick]> use auth_demo Reading table information for completion of table and column names You can turn off this feature to get a quicker startup with -A BDatabase changed BMariaDB [auth_demo]> show grants for auth_demo@localhost; +------------------------------------------------------------------------------------------------------------------+ | Grants for auth_demo@localhost | +------------------------------------------------------------------------------------------------------------------+ | GRANT USAGE ON *.* TO `auth_demo`@`localhost` IDENTIFIED BY PASSWORD '*8C0EAB08B71FA29B314495FF96FD51899869CBDC' | | GRANT ALL PRIVILEGES ON `auth_demo`.* TO `auth_demo`@`localhost` | +------------------------------------------------------------------------------------------------------------------+ B2 rows in set (0.000 sec) BB BMariaDB [auth_demo]> select * from Person; +----+----------+--------------------------------------------------------------+ | id | username | password | +----+----------+--------------------------------------------------------------+ | 2 | nick | $2y$10$Yfe5Xwv3TUYVW5JD6klqz.irf4zyEvHSRqRfwf/nxPbIW95bu5vg2 | +----+----------+--------------------------------------------------------------+ B1 row in set (0.000 sec) BB BMariaDB [auth_demo]> exit BBye Bnick@artemis:~/public_html/3420/auth$ php login.php array(0) { }
nick@artemis:~/public_html/3420/auth$ php -a Interactive mode enabled php > $_POST = array(); Login"]_=Otrue; _POST["username"] = "nick"; php > $_POST["password"] = "password"; php > php > include("login.php"); array(3) { ["Login"]=> bool(true) ["username"]=> string(4) "nick" ["password"]=> string(8) "password" } PHP Warning: Uncaught Error: Call to undefined function get_pdo_connection() in /home/fac/nick/public_html/3420/auth/login.php:10 Stack trace: #0 php shell code(1): include() #1 {main} thrown in /home/fac/nick/public_html/3420/auth/login.php on line 10 php > exit nick@artemis:~/public_html/3420/auth$ mysql auth_demo Reading table information for completion of table and column names You can turn off this feature to get a quicker startup with -A BWelcome to the MariaDB monitor. Commands end with ; or \g. BBYour MariaDB connection id is 11702 Server version: 10.3.38-MariaDB-0+deb10u1 Debian 10 BBCopyright (c) 2000, 2018, Oracle, MariaDB Corporation Ab and others. BBType 'help;' or '\h' for help. Type '\c' to clear the current input statement. BMariaDB [auth_demo]> select * from Perosn; ERROR 1146 (42S02): Table 'auth_demo.Perosn' doesn't exist BBMariaDB [auth_demo]> select * from Person;i +----+----------+--------------------------------------------------------------+ | id | username | password | +----+----------+--------------------------------------------------------------+ | 2 | nick | $2y$10$Yfe5Xwv3TUYVW5JD6klqz.irf4zyEvHSRqRfwf/nxPbIW95bu5vg2 | | 5 | nick2 | $2y$10$cTJZLSHmZUzVTKD/d82oF.AxC6uJTMMY4JYazjahP4LxpmWkOXVwC | +----+----------+--------------------------------------------------------------+ B2 rows in set (0.000 sec) BB stamp;DB [auth_demo]> alter table Person add column createdon datetime default current_time BQuery OK, 0 rows affected (0.002 sec) BBRecords: 0 Duplicates: 0 Warnings: 0 BB BMariaDB [auth_demo]> delete from Person; BQuery OK, 2 rows affected (0.001 sec) BB BMariaDB [auth_demo]> select * from Person; +----+----------+--------------------------------------------------------------+---------------------+ | id | username | password | createdon | +----+----------+--------------------------------------------------------------+---------------------+ | 6 | nick | $2y$10$sgqRzAx7Ohq9xGBTFoLB5.e/K/gKEJ/sVB72PWcRi0MjPCSPKMzCS | 2025-04-07 13:56:56 | +----+----------+--------------------------------------------------------------+---------------------+ B1 row in set (0.000 sec) BB BMariaDB [auth_demo]> use companys25; Reading table information for completion of table and column names You can turn off this feature to get a quicker startup with -A BDatabase changed BMariaDB [companys25]> select * from Employee limit 1; +------------+-------+--------+-------------+------------+---------------+--------+-------------+---------+ | Fname | Minit | Lname | SSN | DOB | Address | Salary | SuperSSN | Dnumber | +------------+-------+--------+-------------+------------+---------------+--------+-------------+---------+ | CĂ©lestine | N | Rubroe | 121-15-7454 | 2003-04-13 | 8642 Vera Way | 54441 | 545-29-0171 | 4 | +------------+-------+--------+-------------+------------+---------------+--------+-------------+---------+ B1 row in set (0.001 sec) BB BMariaDB [companys25]> use companyf24; Reading table information for completion of table and column names You can turn off this feature to get a quicker startup with -A BDatabase changed BMariaDB [companyf24]> select * from Employee limit 1; +-------------+---------+---------+-------+---------+-------------+--------------------+--------+---------------+---------------+--------------------------------------------------------------+ | SSN | Dnumber | Fname | Minit | Lname | DateOfBirth | Address | Salary | SupervisorSSN | PasswordPlain | PasswordHashed | +-------------+---------+---------+-------+---------+-------------+--------------------+--------+---------------+---------------+--------------------------------------------------------------+ | 102-09-0721 | 10 | Hershel | P | Gellier | 1963-08-22 | 80 Homewood Street | 183801 | 837-38-2747 | Vet53nifx | $2y$10$nd1NyBDyJVKGJGkCj1eeCOeNp6BDabIFjlkHmuW/i4Zcik/EJ2miK | +-------------+---------+---------+-------+---------+-------------+--------------------+--------+---------------+---------------+--------------------------------------------------------------+ B1 row in set (0.000 sec) BB BMariaDB [companyf24]> exit BBye Bnick@artemis:~/public_html/3420/auth$ cd nick@artemis:~$ cd ~nick/scripts nick@artemis:~/scripts$ ls -l total 24 -rw-r--r-- 1 nick nick 2430 Nov 13 13:46 add_pw.php -rwxr-xr-x 1 nick nick 719 Mar 25 12:54 backitup.sh -rwxr-xr-x 1 nick nick 2016 Mar 4 2024 insertgenerator_v2.py -rw-r--r-- 1 nick nick 551 Mar 27 00:47 recreate_db.sql -rw-r--r-- 1 nick nick 2355 Apr 24 2024 update_pw.php -rwxr-xr-x 1 nick nick 1788 Apr 2 17:33 upload_cast.py nick@artemis:~/scripts$ php update_pw.php Enter username: nick Enter Password: Enter database: companyf24 Department DepartmentEmployees DepartmentEmployeesMV DepartmentLocations Dependent Employee EmployeeHistory EmployeeShadow Project WorksOn Enter a table name: Employee Description of columns in Employee Field: SSN, Type: varchar(12) Field: Dnumber, Type: int(11) Field: Fname, Type: varchar(50) Field: Minit, Type: char(1) Field: Lname, Type: varchar(50) Field: DateOfBirth, Type: date Field: Address, Type: varchar(255) Field: Salary, Type: int(10) unsigned Field: SupervisorSSN, Type: varchar(12) Field: PasswordPlain, Type: varchar(60) Field: PasswordHashed, Type: varchar(60) Enter a column to represent the primary key: SSN Enter a column name to run through password_hash: PasswordPlain Enter a column name to save the hashed password to: PasswordHashed Press enter to show Employee contents (98 rows): 102-09-0721: Vet53nifx -> $2y$10$JqJGdSVLFThH4io9KSDHlucoy9w3u.4FrAeL2aNrPBc3ddKpdkt.O 103-40-8183: Vot,8niv -> $2y$10$.E/LrZmBOJUJL65UkimTRebJ9l61H7toksqEqVP/DmSKkSNX4meBK 103-43-6534: cip6!Djotc -> $2y$10$fDo63j2EUMiGiREtgwj0Jew4dIM6yf6TFCQ9HeYqPIj8/EUq1jzTK 140-34-0908: Ropc-5fen -> $2y$10$tB1RZiCFSB8Voj/97VBLS.g832U8eW3XpyEaPrDeeitKv666U7dEy 158-44-5836: Wel*6lof -> $2y$10$IBRg.TyYkVC.cwExXN.gE.qQ2UV8FGmKhzoQUV29vuUgpbsSvvVuG 160-21-7388: lem6Gaj -> $2y$10$TiiWTbPiVSyeruMXVmvcA.GD/Z.XGaBcKjwCkvos8JKurHmw2uqrm 174-19-9377: Movr8Joc -> $2y$10$et29x9XC7KVbPodjJJn2XuSu.0dgtXu4cLClfRKT6zN2E.W.SWC1S 176-57-7749: ziw.4Qluvz -> $2y$10$rUE9FK2c6e3lVUHyvzLOJOTvJgGNGO6ZAGiZtjVFAzuOflVc1IW/q 179-46-3342: Rdic0jey -> $2y$10$sl/f7K1lHUWjwuSHEqdPLu2niScRAiO8quAp/nqyjNckhlaPesSYu 184-41-4519: Pces7@Qim -> $2y$10$TeE0af3tUJ2n8CqaFjjiC.mDoFDswmAajjZJW410/92HJYqq8Dri. 192-65-9793: Kuj3tkep -> $2y$10$FXEOQdBOUe4.ztqKuubu.eGJXGoVuVnuhTmWnyAaMaEWcFd3zPkQq 197-64-9509: Kiq@8Pap -> $2y$10$CVvJDba3YZTcxbVMwWuTteTVpfbkj0lqdpqAHMK4/5DN1D2uXpCYG 198-51-1274: bros~3Wow -> $2y$10$TNyYqiad/yzoV8PAdMnD6.JMZOw.VE2ocV2DY0E4w45wAoUesNry2 199-51-5758: ron6Xey -> $2y$10$JjyOQVFQ44uIR0GwVllXceAI1ZxfVrc1cbepL1taBfZYgyVZIq61a 201-98-8291: Cew5Tud -> $2y$10$3qEUscWSR/LidiaCQ0e4OOxQLwCuNOxbAN9GWJaPJNl/xbRw1FxGe 221-70-0150: Hpaqb0.suh -> $2y$10$Sww7ft5P3nQZtNY8y7pQPuHqlMVZCVcsgIN2BZFvdcf.4YJ9BSacm 232-73-2252: Ripd2zov -> $2y$10$7ehXalI.klztA3zbZg/6IeSUbyLBvucTe2H.YtJxMkNReMHlotlj2 234-13-0235: Lvab7qkuf -> $2y$10$fN2ldWgm6xORf0oWCl3/DuU6B1p1QiUvod0h4b/2NuZCn4VHPjj7S 240-65-0520: Xdulm3,Rod -> $2y$10$n9QndOybCgPiIpl6vXDDS.53UeTmnO1MzJLVUAbjLEm3DppfaaSSq 249-75-5383: nid>9Won -> $2y$10$KaCq.8q7.Qll55X8EdGfXeSDUy5ze/BJLA2AiIQtIIajnwOWNQAXq 253-37-4748: Rar=2xid -> $2y$10$ETt//3CpHJ3PT54mKn1dBeknuPEDsZ.yG6OndvBCcz72B4.IuRxAm 272-59-9858: yux>2Gzog -> $2y$10$pptlmNTUd78TNI/n.Pi0SeGOr89xcqXbsNgnchempqk0HCtIAbU72 273-22-1454: Soz5zixl -> $2y$10$.fwrVu8e9kYdFxs21TYPCOL6C2M6.hm19vsba/BA8yTxOOPqkOYpe 288-12-9917: cim-7Qup -> $2y$10$ommye5mzTJdUOfQ/dvDT/O4LgLoTfynam2O4WVpAZnRVkaz/z6eYC 296-88-3962: Zefr8%duq -> $2y$10$G.vzbA/2gSNKWoOQuuBG3.etTxzcxet1VqJDshJXncF2pPLVDEmSi 305-95-2520: Ngin>8Nit -> $2y$10$/DLu6czHMowfbxBO93XokuU/cwpYK7gbpCbVYu7eV28s0yTA865cK 306-92-5183: Sah1)Fiv -> $2y$10$VxwWviZPtcPYKYWJVktGrepjDnw3QTlzbirFXLknVsx.BGw09KOSu 312-47-3348: Duw9