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) { }
Username:
Password:
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 $2y$10$5mXNlaNmb81E.FVtUbgKOO133XPAqhq0a6kxEltuAR8LcasaxZZcK 342-19-0997: Fev_1jik -> $2y$10$VxA9OveK46MkrBxk3cG1NO3tNcaa9zIKpvwCTbezxlP.9pkrVWw3C 342-24-8788: Qoj1fir -> $2y$10$RqlZCnSqL6YSkOQnGe48SOXP3QDVG2ZNPIOWGBegvQTOmHrsh3zxG 401-65-8167: jnegd5Jet -> $2y$10$k7XyB9eemFnQCOxvCrXeeOdEimiqcYCR74eatP0ZD7pdgNqTAzPm2 405-04-1356: qjan8 $2y$10$T3ADH0jrrho6xmMDdmb5Oe.riYYE.cx4qCIh13VKGFytbmvsK59gS 429-10-4540: Kis99Bizl -> $2y$10$k3flRrLnsZE5nnUi0qEbJuC58y.p1UZXNytSVw.BG9zyOFp0WBVGi 432-99-2689: Wad1`Rur -> $2y$10$TvWAr17nMnTH3mCIJYIJ..ZLHxZmCCK6lLxVyaqWS/jfx/ulg589u 433-95-5866: tup74Neg -> $2y$10$Bo89wbPkmOgQu1sWV6RmOumXgk5c4ZaTwvORKex6C/VWZadraS07i 444-10-9453: qqumy0Doh -> $2y$10$5hFaapCNGkIKsIbXyebwTel/a/TcF4JvRwkLfk0p4tRMPt4gTYNIC 444-41-9513: bet_6Qsob -> $2y$10$qdlXz8A5DDE6WppubnqbsuRWClOrTwNedBL5.Bj/MupoUtP2VXs0y 454-98-3444: tnov`9Baf -> $2y$10$vWbvD4XylpYGBCSqsanjGOdYbvS1LZuFA.Sjdj5J4xlruz6Xa1a/O 456-07-1401: Jig99ropq -> $2y$10$JYhtUEPSsVf8lyqSNF8atOwYaMVK5ow0WkVIIRchMtwmLohcd/Lom 461-03-9851: Tuf9jew -> $2y$10$jDNaxvmaGylRQAkoiVGlhOx8GM59b4vKQobS6mVZrvkJaKAN6y8Gi 469-87-9831: Vekq6+pal -> $2y$10$SdkUCflF4x1eZyTmvz6keO4BlOE2ydz9K/3w/pmx68j0.KTCS1l1y 471-65-2228: Jhemk8*Juf -> $2y$10$dwCYFeobbVhYG7mnp9C.0.1n6qD1S7Qp6jYfmPdaAiqqHmF6UaoqK 476-04-9905: Bvavc65giw -> $2y$10$81hC9JgojSUK597iaoWKyuzYKy3SeZ5q6nuk6sZIjB.v5Gi5Lp.za 479-65-6252: wip0@Fuvz -> $2y$10$0JnUUghXLhmHqyuuqrxz6OvsgokeVhyj/wFAViofeSFLHeDBWh80O 488-58-0256: Gob0>Knep -> $2y$10$NhOzKW2BcjlhoZqN0sXNuecP297qzrJSR0Ew9O54g176qkaf9kOpm 489-29-5492: Fov56cikg -> $2y$10$MOSiGEsN48RPaLJpB3GuF.1Kc8r2JFZggjDrsXRS4HgkFx0x8sWuS 489-78-5381: Huc1Zvan -> $2y$10$e7aojrNtKc8O7CBpeX3LFOIXjGqcFt1MkcXFv9ZD9jLSAc46A3vaK 498-11-3068: xew41Vuw -> $2y$10$rlou3.LkiuaIg..BQaHTYercEXPK.3oZXf/jEGjM9wL4zryxCxS.K 504-74-1709: Mun73tadm -> $2y$10$OLDn.amcqBtrR.ZOWpnXmeAKqxiPN9GQpuL4GTcUXkPqMXVBGdaby 511-73-5142: Plav7~hyem -> $2y$10$UOSyL/L8ds48X5hDV.qDTeRwFH.uswpK96dp.NJPNR2lV4yic6HKO 515-77-3666: Zod3fom -> $2y$10$Xh7TjJQln4FKWK71PCeU1u05TupMRU8LldMPrdL6H2Zw5kEQwdc22 517-15-9350: Duh%3Cret -> $2y$10$yY1IEkKCQAhFBO8KO6lOoOwf0WoBRXX0EquxE9jAiIy6DB92ZxToa 519-05-5719: zaym90Mroz -> $2y$10$vThju/ykRNVAfhxjPVkbHu/wHYP3yur6mjtR4op93YmJ9l/tpgdeC 553-65-7982: Hod-8muv -> $2y$10$u52kqkYGxbGXbLwOYofUzevgyO0lDLSj/ieWJUuVX.QF..Ap5lFjW 571-69-4266: rohs7@Quhf -> $2y$10$uAX0OTiH/2Q7Q7LtSlJxdu4Emge0xzwMJa2WGU7KGLpWOsHYwru9O 573-52-2382: wez&8Wul -> $2y$10$aJnru/44fIVf5p2dAdid5.nvVKem8HpHue4hl9TkVtcsnjgVFYHZC 579-58-6120: mur8Qotn -> $2y$10$5PeKsRfpLx2hnAEv0p0DzeuHcjX5I7ieCz9cQQ9HpIPBP8vU.aoEe 592-42-2417: comt9Wpuh -> $2y$10$sXQYELlwkWm2mzc6p5fOHOBY5kBkw2AqfQ14AECUuQwCQIC4MfRx6 598-05-9422: Tex!8lik -> $2y$10$AxZDO99Saxj0OMLPmvcdgOsoSCSyyARa0rzzmbpsjH/1Jhs8UTqJm 600-30-0783: Sxuqt0zuz -> $2y$10$Mc0BKS.dn5DIDuNdejE/5eUxU.YVoLtKnP/Tt4Tb1.lf/fo9U/b/G 607-74-1169: Wdax=6Khek -> $2y$10$uCEpFi.fh1N.hlaX07xvo.6bMefBJxc1gvSgx.i2aahZMj1BzjdNa 615-41-3638: Wiyp8(kab -> $2y$10$Z9wfaX1IioeqGSIa7SdDwe1Q7mkJLXUtKzVGzu.MzE2EqctyeXEQW 618-35-0602: gity!3Mkuf -> $2y$10$Up03MmG2ozNk4HAWzkLeU.I1F12XlqzsiSg4wfEgJCaEPHOEj.dXe 636-12-5374: Fog8tih -> $2y$10$5a/jCawpgX.H2S.GX2vwNOWeusRUrQNh/fiHxHC7h.V3H1BHAhdDW 648-14-2718: Rzujy@7Zam -> $2y$10$u3dmZwcVAWGUydfLWCI5c.kI1y5adTBX4Na2bUZ6Tw64gfLk92DyK 649-94-7049: Qix2+Wiw -> $2y$10$hWf1.95DlLI5dVa72PuSSeqZY7J0pYnHStlUgITonJyIwWRR9ZvkS 686-50-9129: Tetk7Rjuf -> $2y$10$/1pfM/QYrySwfuLX0dRptuDMjHwFTNRMiiHHj8bYJGyg.XS467Msu 687-45-8914: jelq74Kay -> $2y$10$.x379PkXAfELPhPAhQtjRea99O6npgxQ9JMjfnTZTbLveO7VN8mbO 689-31-8418: Biy8>puk -> $2y$10$HBL2BSCNSHisAdYCHU4wwuHDIklhY0YyBrdFCNjghV2WFULZZyvoW 700-84-6055: Pmops%8Quf -> $2y$10$Cm1X6B6Bd1gXrHzlEUITOuJ4SqTp8CvOoB1BU7elFKeA4OZo9A8Lm 708-11-0063: Tad23clox -> $2y$10$CQ128MRrpPZLQxBotMyPiu2jayapzhTll9NeyTb6Nuaza1j7hVQCG 709-53-2589: Fig_1Hod -> $2y$10$idf3FQ6iRWq3IPMOONF0Z.JylhpFuhKgcRJKGyDI5ycfiqKgHY.tq 716-15-9852: Ram87zuk -> $2y$10$QfTDWlyt2s/kSp6gPFAXhugkiGRKtGcIhnOAYM8sCwks6k7JWz8m2 720-62-3603: kib3Jux -> $2y$10$mbi2MTZdiPoeP5QHZy8Zr.Povhxrb7PuhoMsF/vyECQQ0E/sjoISu 722-47-2860: Yumj#2zges -> $2y$10$aKppyNKqKb/YuDtUtu5hlOm67ifEdPX1KHveiUEWK..MmXX1JI9OK 723-88-6191: Xsijs5~mag -> $2y$10$Mov6OZfanxrU7iewSYTyiep84pTt8swbsYqBlOdHeTmllmkj.cwwq 727-58-2986: Vuv@0Tnan -> $2y$10$kdB22JBp39IXhuIkJwKHOeoPEhvNC7j57oVMuyQ1/6dlUZMDB9J9O 749-74-3457: Jof1#reg -> $2y$10$8uFNkx71OOx8xhTGgcODMOiQoncQkszfo.1ihHX1QQQVnAOtN4kqy 752-84-8775: vux8-Viw -> $2y$10$NaYZVtSJt7q5/Lkjh7ziCesx38UG31OKNB5/v7Rbd4NoGzkgbH4Uy 753-93-1975: Zug9Kib -> $2y$10$8bbNiyNuA/xdPr1emvdPv.RPUclF4Tm2dY1EOMHy8eevF6f8M9yLS 758-19-5868: Nvex&9rut -> $2y$10$daG93qTDpwoh.IJ94gKY8uCaddU0Jli6ooZNMO5sEw6em1bUBQclm 772-66-3995: fol!5Gfexr -> $2y$10$JUYsA4yb3TdRGk9iGHzzv.pOhjCP9c8YciFi5bOeV/5oZiNnF/goG 779-97-6862: Reg4nad -> $2y$10$c7UBxrmLAUJQQL3DknV4ueTBNlbTdQUHTntJyGqt0DMY0ElxUIMV2 785-65-6280: Jey54klev -> $2y$10$7Kjgp5jgizt/5V7DD1pOHu6EQ331igtzILtfy.VG6kVwrpkaFi2wu 785-75-7978: xpoz47Req -> $2y$10$PwkYnwT8pcSsFrrSX1ss3OMe5jcy67nwPj6Q4LXWL08mtsYqK6k1i 789-03-4621: jaj9Cot -> $2y$10$ioaxF58WDX3mX/gHxklBeuUxWUfVH6Qg8NJ4LNNTjwnBPuXBdJHWa 789-18-4131: vipj3-Bir -> $2y$10$luS341aweHQ6dnWAG7903O0f5NJmXPZ8oGn8dFLDfelTqO1oH1x/a 790-22-4853: guw3Fil -> $2y$10$ZlPMOEKsEzVCJ3IkBhR7HuC6TTZPNUBb72lN5cVK6zAZDuJYFPWKW 793-24-8756: Wazf48trec -> $2y$10$9MLvLsw9ZzO14I1mPtm/keGW.p0KVwlsBTXyV5.3Am4fweIOGQQci 819-87-3158: Reb00cqiq -> $2y$10$OLhctVSWqLnAknak0VqIHenWIyo67nqGIbVrtHWqxQSC.lAGxStdO 837-38-2747: Kadl93vas -> $2y$10$zBYYMKfIOuyXfuYdpeOn7eUBOICr6ujIwARA9f.z0JvYE74ehNQPe 856-81-4983: Jap#6hivt -> $2y$10$ZXoN80DT6uR4ZCjoQZFBoO56vdrRC7.F3VrT.1pxoFnc5CxKc.gm. 858-82-4762: Fhawm5Nup -> $2y$10$Q1gZqLk6qMU9uWF2.LO5h.sU.az137oLyf2KJV10BSoufKjINNntO 868-66-3401: Gaq15guz -> $2y$10$GEQ6f1xmhvRF1xO0GH/66ud7jcVl6FTgTEn0T42g.NLP14BCenpfm 872-67-7877: Xhup>6Vceq -> $2y$10$SL3A.IJZ4kweIqscmyPwZ.EHRY1QgN9xH.GrNcqjbKLTPMZHp9VbK 884-44-5249: Yud07romp -> $2y$10$NwH5nRhNEXPgaQSRsJutPeWvVx4A/15aZ0F2ahwSdmylPc8Xtkfs. 884-82-2308: Kog2>wahd -> $2y$10$ux.FN4obevXTWBmqP.VNBuStJiDK7kWRWQITPsAZhRhwpy93ezaAe 898-36-7152: Zidt+4gul -> $2y$10$KSgZ7qb5LXvP.t2VWt1NUeWhEH2HsgFFqb.Y2ijJbdPkD9sDYUoU2 nick@artemis:~/scripts$ cd nick@artemis:~$ cdd~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$ exity bash: exity: command not found nick@artemis:~/scripts$ exit exit