nick@Vaxis:~$ ssh artemis Linux artemis 5.10.0-28-amd64 #1 SMP Debian 5.10.209-2 (2024-01-31) x86_64 The programs included with the Debian GNU/Linux system are free software; the exact distribution terms for each program are described in the individual files in /usr/share/doc/*/copyright. Debian GNU/Linux comes with ABSOLUTELY NO WARRANTY, to the extent permitted by applicable law. Last login: Wed Nov 13 12:52:08 2024 from 136.168.38.41 nick@artemis:~$ mysql companyf24 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 94502 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 [companyf24]> describe Employee; +---------------+------------------+------+-----+---------+-------+ | Field | Type | Null | Key | Default | Extra | +---------------+------------------+------+-----+---------+-------+ | SSN | varchar(12) | NO | PRI | NULL | | | Dnumber | int(11) | NO | MUL | NULL | | | Fname | varchar(50) | YES | | NULL | | | Minit | char(1) | YES | | NULL | | | Lname | varchar(50) | NO | | NULL | | | DateOfBirth | date | YES | | NULL | | | Address | varchar(255) | YES | | NULL | | | Salary | int(10) unsigned | YES | | NULL | | | SupervisorSSN | varchar(12) | YES | MUL | NULL | | +---------------+------------------+------+-----+---------+-------+ B9 rows in set (0.001 sec) BB BMariaDB [companyf24]> exit BBye Bnick@artemis:~$ cd scripts/ nick@artemis:~/scripts$ ls -l total 40 -rw-r--r-- 1 nick nick 1349 Nov 13 13:36 add_pw.php -rwxr-xr-x 1 nick nick 409 Apr 22 2024 backitup.sh -rw-r--r-- 1 nick nick 23325 Oct 21 13:12 companyf24_2024-10-21_13-12-15.dump.sql -rwxr-xr-x 1 nick nick 2016 Mar 4 2024 insertgenerator_v2.py -rw-r--r-- 1 nick nick 2355 Apr 24 2024 update_pw.php nick@artemis:~/scripts$ php add_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 PHP Notice: Undefined index: Tylpe in /home/fac/nick/scripts/add_pw.php on line 52 Field: SSN, Type: PHP Notice: Undefined index: Tylpe in /home/fac/nick/scripts/add_pw.php on line 52 Field: Dnumber, Type: PHP Notice: Undefined index: Tylpe in /home/fac/nick/scripts/add_pw.php on line 52 Field: Fname, Type: PHP Notice: Undefined index: Tylpe in /home/fac/nick/scripts/add_pw.php on line 52 Field: Minit, Type: PHP Notice: Undefined index: Tylpe in /home/fac/nick/scripts/add_pw.php on line 52 Field: Lname, Type: PHP Notice: Undefined index: Tylpe in /home/fac/nick/scripts/add_pw.php on line 52 Field: DateOfBirth, Type: PHP Notice: Undefined index: Tylpe in /home/fac/nick/scripts/add_pw.php on line 52 Field: Address, Type: PHP Notice: Undefined index: Tylpe in /home/fac/nick/scripts/add_pw.php on line 52 Field: Salary, Type: PHP Notice: Undefined index: Tylpe in /home/fac/nick/scripts/add_pw.php on line 52 Field: SupervisorSSN, Type: nick@artemis:~/scripts$ ^C nick@artemis:~/scripts$ php add_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) nick@artemis:~/scripts$ php -a Interactive mode enabled php > $password = "hello"; php > echo password_hash($password, PASSWORD_DEFAULT); $2y$10$sJ1tGsKlPZjXBNPExl8It.s6goyKoYohtwI2Vp7dPOdkWWgIc2kvq echo>password_hash($password, PASSWORD_DEFAULT); $2y$10$yAJ04uJkVIIx.KHCGF8d8uUj9qSvUxsqGoREcNQyve3gNUgpS0xeu echo>password_hash($password, PASSWORD_DEFAULT); $2y$10$M9Sh4rigesS8C3wBXTTbw.vD0pLry5zm1VqBLgOsVlLstLT2aPbwm echo>password_hash($password, PASSWORD_DEFAULT); $2y$10$h0XQ862E.HH/9Vh.HKvHCO5m22j2H0/uijQFD9Z2Em9vsAt.lHuC. echo>password_hash($password, PASSWORD_DEFAULT); $2y$10$3PFL1peR1NUmSB52eHbLiuoUzyDeELcoaL.sG3wb8JNeQ0t4klTm. =pho>password_hash($password, PASSWORD_DEFAULT);echo echo>strlen($hashed); 60 php > exit nick@artemis:~/scripts$ fg -bash: fg: current: no such job nick@artemis:~/scripts$ mysql companyf24 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 94508 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 [companyf24]> select SSN from Employee; +-------------+ | SSN | +-------------+ | 199-51-5758 | | 429-10-4540 | | 433-95-5866 | | 476-04-9905 | | 479-65-6252 | | 511-73-5142 | | 686-50-9129 | | 232-73-2252 | | 240-65-0520 | | 444-10-9453 | | 489-29-5492 | | 753-93-1975 | | 785-75-7978 | | 872-67-7877 | | 140-34-0908 | | 176-57-7749 | | 201-98-8291 | | 253-37-4748 | | 489-78-5381 | | 573-52-2382 | | 600-30-0783 | | 648-14-2718 | | 709-53-2589 | | 720-62-3603 | | 722-47-2860 | | 789-18-4131 | | 884-44-5249 | | 884-82-2308 | | 898-36-7152 | | 179-46-3342 | | 305-95-2520 | | 342-19-0997 | | 615-41-3638 | | 636-12-5374 | | 700-84-6055 | | 158-44-5836 | | 312-47-3348 | | 498-11-3068 | | 504-74-1709 | | 519-05-5719 | | 598-05-9422 | | 708-11-0063 | | 198-51-1274 | | 272-59-9858 | | 273-22-1454 | | 342-24-8788 | | 469-87-9831 | | 579-58-6120 | | 687-45-8914 | | 689-31-8418 | | 723-88-6191 | | 758-19-5868 | | 856-81-4983 | | 103-40-8183 | | 454-98-3444 | | 456-07-1401 | | 488-58-0256 | | 571-69-4266 | | 649-94-7049 | | 749-74-3457 | | 790-22-4853 | | 868-66-3401 | | 160-21-7388 | | 221-70-0150 | | 249-75-5383 | | 306-92-5183 | | 716-15-9852 | | 752-84-8775 | | 779-97-6862 | | 858-82-4762 | | 184-41-4519 | | 192-65-9793 | | 197-64-9509 | | 234-13-0235 | | 288-12-9917 | | 296-88-3962 | | 401-65-8167 | | 432-99-2689 | | 517-15-9350 | | 592-42-2417 | | 607-74-1169 | | 772-66-3995 | | 785-65-6280 | | 102-09-0721 | | 103-43-6534 | | 174-19-9377 | | 405-04-1356 | | 444-41-9513 | | 461-03-9851 | | 471-65-2228 | | 515-77-3666 | | 553-65-7982 | | 618-35-0602 | | 727-58-2986 | | 789-03-4621 | | 793-24-8756 | | 819-87-3158 | | 837-38-2747 | +-------------+ B98 rows in set (0.001 sec) BB BMariaDB [companyf24]> ex [1]+ Stopped mysql companyf24 nick@artemis:~/scripts$ qkpassword.pl Cyim7Zuk nick@artemis:~/scripts$ qkpassword.pl rew9Bumr nick@artemis:~/scripts$ qkpassword.pl fex!1Bafj nick@artemis:~/scripts$ qkpassword.pl fan73Gped nick@artemis:~/scripts$ qkpassword.pl puv4Hoq nick@artemis:~/scripts$ qkpassword.pl Gos7Gbet nick@artemis:~/scripts$ qkpassword.pl Hixd86Gfay nick@artemis:whichiqkpassword.plpass /usr/local/bin/qkpassword.pl nick@artemis:~/scripts$ php -a Interactive mode enabled l");> $pw = exec("qkpassword.pk echo>$pw; Ros06gsef php > exit nick@artemis:~/scripts$ php add_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 Employee primary key for retrieval/update purposes: SSN PHP Notice: Undefined variable: pkColunn in /home/fac/nick/scripts/add_pw.php on line 67 nick@artemis:~/scripts$ php add_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 Employee primary key for retrieval/update purposes: SSN Updating 199-51-5758: ron6Xey $2y$10$vn2hVP/k7xtqawlMos5Hx.zMITIs5poUX56PboDrpcEIU7o9p/xu. Updating 429-10-4540: Kis99Bizl $2y$10$qg/rqI1LNMpcII9mzvTMkeo4N35MmHReilNIhPQB4x3bYvPAsIoCG Updating 433-95-5866: tup74Neg $2y$10$Aaff26wq9bsyn9xN/j8mS.J3rSK1v2rgqbmOZpu/XUIaZhE4bACQO Updating 476-04-9905: Bvavc65giw $2y$10$bjRqI6w7BVdTWKmuUaGKAOxi1puJuWBPAu7Nt0zQYJ3mDoYNmVAeq Updating 479-65-6252: wip0@Fuvz $2y$10$Y7y5Qjl4luX0GlKS0QzUt.1vG8w4cqb3jLz65Vydq5GUt5T7Yd31O Updating 511-73-5142: Plav7~hyem $2y$10$K0hC4enute6Bu5PkQCd1Yu39DDcYc8UnqPgKWpiKluqnI/UmcOoEm Updating 686-50-9129: Tetk7Rjuf $2y$10$4aEtnplqu4hObbLceNGQHukQyKUvXvXwVGBzMxsi3v7w1W9jajM5y Updating 232-73-2252: Ripd2zov $2y$10$TwaOpCODFSAUBAJRLR0OqOFuZ8R0Df3nPHnpCgiaCFN3XPy805PQy Updating 240-65-0520: Xdulm3,Rod $2y$10$poiyd.kJpCYiEya7stJg..E0yYsjzOhdSyCttkY2d34rKzAHNJTXO Updating 444-10-9453: qqumy0Doh $2y$10$mZllfdpookmUesAGzGeoVeTyhIEJKimOemHaMpPEmM00R0U72Up.S Updating 489-29-5492: Fov56cikg $2y$10$O0ZIuWbBJTITk45DcfrAXO2OskJjYO8vyhhUKvMJsEeHM6ZM3HgWm Updating 753-93-1975: Zug9Kib $2y$10$6gOWnmYhGDrgdN7NONdrju3b1ohcwJapEap5aDyMMiX28jXtKkJ0m Updating 785-75-7978: xpoz47Req $2y$10$taN1gVDggOk5l6CAZiiRa.3y2qRvh0ZEfAqfRnwsK9x.m6kW7a8xe Updating 872-67-7877: Xhup>6Vceq $2y$10$Jjns/RoKnGL6lEpydwhzrOAoUrxuszj3r0U2l/jyojo37TMOEOMoC Updating 140-34-0908: Ropc-5fen $2y$10$PoCaGLD38ExQyM/nTghgr.PAyXKNZnjKS2DziSDRK1DvzdBLFlBn6 Updating 176-57-7749: ziw.4Qluvz $2y$10$hkd4wbMLSey33AuqKx.vk.pqT8AK8sOVvnvfL/6gRrhwvJ4Q0E5vm Updating 201-98-8291: Cew5Tud $2y$10$CtTg0UV4VwackK/NUNEPLOORjqRat3BJdDDOIcKOGnM8ClIQ0HVt2 Updating 253-37-4748: Rar=2xid $2y$10$57QAjpwH.5REiZEn8ccyu.aa.AiJf8SO.i1BLJVUNWeltHI/fD2/6 Updating 489-78-5381: Huc1Zvan $2y$10$UvESH2XgdKzm.lPY0JQYmu5onxb4xEgjYUCJq9v6RDMWIKMgGBX0. Updating 573-52-2382: wez&8Wul $2y$10$2gOezDqao4rZCjhdRe8bCesUl73tnsYcXywWkijswj8jfHwgM8SDS Updating 600-30-0783: Sxuqt0zuz $2y$10$JElDSxpnTYSqutgb7KrxsuG2EJrRCBB762uf31xXPlqB.lSzTtbJG Updating 648-14-2718: Rzujy@7Zam $2y$10$Box8sPw83NWyEwd3OFT9ruG8zodq763UcuMqt4iXj2ZGzy25AUAX2 Updating 709-53-2589: Fig_1Hod $2y$10$BWMua7MkD1BnUgtXwOGC5OhBWPzRKnWOieWHNFtGFMVgR2hl3QFbC Updating 720-62-3603: kib3Jux $2y$10$NnlIMTgwUXqfe9K7/5CX3OFLbFv8ofJyozeP6HlhYlqxMQfz4wtrm Updating 722-47-2860: Yumj#2zges $2y$10$2stGhzByHqWJd8Jp1aMkuOzv.L8pQIU7TEA0xDMe8U7h3UJQlC5ki Updating 789-18-4131: vipj3-Bir $2y$10$Jnj9v2d7g96j3MDS8g2.UePM01py.PoZDIKIJqDodm1TmgI24Uug. Updating 884-44-5249: Yud07romp $2y$10$UuvuanANkvX486RVw8la5eZxw22ao5dKLSax.4AqP1oTjRevHLzlC Updating 884-82-2308: Kog2>wahd $2y$10$.INPo9P9tZL1N31gXofaOOz9QekKm/gTOJDORCBPxk2.LoW5b8L0G Updating 898-36-7152: Zidt+4gul $2y$10$8BNVhFdEakIVshxV7roWi.LYZKNEFixuRPnw2acvXRMERsxJyIg52 Updating 179-46-3342: Rdic0jey $2y$10$zDul36pxgVU5DOIgeN9KkuuT4JQnFW68mjE1fEnCmLdS1HBMfOQIm Updating 305-95-2520: Ngin>8Nit $2y$10$s6eH3FR9pmgjiXLYN6trluCwKyKa5nbLeZ7iVXBpIuiNeHw.z4P3O Updating 342-19-0997: Fev_1jik $2y$10$nrmdyaKzeUGMztdcYKayjO4XzT7.cZKZ97J6aQWIpwB5QYfvtZyKq Updating 615-41-3638: Wiyp8(kab $2y$10$0olwM56bGyJJAsDZDomrX.Jmu6QMtxUE9RXRaHwz9qTtTKPqt7XdO Updating 636-12-5374: Fog8tih $2y$10$pSZs25Nq9iXVMIUaa1LKC.6IbB5vvridvTF4ul7DrQA1yNWDX4Zhi Updating 700-84-6055: Pmops%8Quf $2y$10$zG1zBsrNHZ0yerJpg.0elezAtrPl7ma9c7kuuiZ.v667kEoadQP5i Updating 158-44-5836: Wel*6lof $2y$10$LSoxYwjDuOSbspaBpwQaT.xjOLDuoIIoFqOux9FRbCquoXG5cWuo2 Updating 312-47-3348: Duw92Gzog $2y$10$T0VWLESxvr5Xoxkx7Xa.MOm25u.c2sURupW.AHe7YdAvTssxOPTy2 Updating 273-22-1454: Soz5zixl $2y$10$XzRH80MyV1iL0FvrMYqzKeZ8ZSOyECzo3b67YTQ51El5qeUhjY68e Updating 342-24-8788: Qoj1fir $2y$10$POs8MFFoYT3vGyAQ3zlT.usJLhWS0N9pvIIf93Yeyzv8fcOIL59by Updating 469-87-9831: Vekq6+pal $2y$10$isnZe57woddECyE7.OYHIuiNTzFkSBFzIws5GVd0sXtunXiYlHJ56 Updating 579-58-6120: mur8Qotn $2y$10$YkXic0SVlhzAa5C8kDXGiuqfHWpcum4SV.SxobNmIzzv9KSbqUq36 Updating 687-45-8914: jelq74Kay $2y$10$uAMTAG4GX8.Aoi8wdSEQ9.ZQOm.h5moBXLjAF5sNF66mEt3EkMQ0a Updating 689-31-8418: Biy8>puk $2y$10$Fp2xF1hx6ySYYHV2hP3eo.Qo9XTVJsYUr34P852TIPAaFJBxdLEZ. Updating 723-88-6191: Xsijs5~mag $2y$10$/8hiwUrQSzTB4k3H5WmA/.PR1DNB.lYjR6xQ9/66ZkypPmmnP0fHy Updating 758-19-5868: Nvex&9rut $2y$10$XnX.HFnZfUNsXIXL4iRHn.SMvZXyXb4vUB3FxlyLKR0DnRlBwRKpe Updating 856-81-4983: Jap#6hivt $2y$10$ueMq65UmdFmJ9TkrjMoUG.XuguaL4HIdWO1Ne7O/QDtIsDWmy/jma Updating 103-40-8183: Vot,8niv $2y$10$GJJV8qPBOzEAK.JWI1by5uw3nlkIDwuOmkEj2KyU7xoP1yevW3.Y6 Updating 454-98-3444: tnov`9Baf $2y$10$9.rDQAJdqlc9IWrY.QYLDuUFRyfUzpk1SajNfRNc0xDObbXExnUFC Updating 456-07-1401: Jig99ropq $2y$10$iUIlWBDJugZwD5u75Weco.soXF4xVG7tzA8mjqmWdWn4.8QZYfi/W Updating 488-58-0256: Gob0>Knep $2y$10$KfR2gFi311.36aR0iXVYcuTVUekCJyA9RbAmxJmb2b5SYaFUqAUvu Updating 571-69-4266: rohs7@Quhf $2y$10$vOt/YQuIk4NGJIiTO2o2w.PAHmQPh5dBRzGr3x6swsJzyaODA91iq Updating 649-94-7049: Qix2+Wiw $2y$10$ds/eLyfzVSq0hiOugeQBJO4PvwPG8PSXU9jwv0at5kjW59Np7cJvW Updating 749-74-3457: Jof1#reg $2y$10$vfcba5HsS0c4kuzdlCf.aOORi3Udfm/d3GUmt5JUzw1jZoMQlC/Hq Updating 790-22-4853: guw3Fil $2y$10$nDEojkHzmF0xs61oeqKIl.JX8Yo/9XRMj1soGGdKQ5M1CFAk0zpxS Updating 868-66-3401: Gaq15guz $2y$10$1jbKSuhbTK3ECgko0.QWXuJ5zWafPJY2OnnE0H.4Vfmz8q7YKeeYa Updating 160-21-7388: lem6Gaj $2y$10$cZWn5kn5U.0qk42CsbkvjeR6sm4DJzO6T76k/ri/qINWQjK4WY0s2 Updating 221-70-0150: Hpaqb0.suh $2y$10$Gi08wnSTXuMW4DVR9/gGEeDUDiTOMFhd5IZujh.owdx9PjGb1mzii Updating 249-75-5383: nid>9Won $2y$10$3SvqqDhNiJ9dyxImdsq.FeVh0C5jNSLjlFmvbPtBNk5LarVl.VB5m Updating 306-92-5183: Sah1)Fiv $2y$10$RJezQW0xFToxMqFUjT2fXOrif1rPJ.bZ8sSueJZpcANhFyqD4m3r2 Updating 716-15-9852: Ram87zuk $2y$10$umbY9R/l.29w3xlXPDe58u4DFjsCH38CF2vXbZaki00wrA4bd7e1K Updating 752-84-8775: vux8-Viw $2y$10$iPQXJgoCNM6qX7tEWwwKq.OGKsX2hD703aK7HvXYotkAbLiLmuX.. Updating 779-97-6862: Reg4nad $2y$10$8zmkKz35fsqmLiTEE0swZOtFGauVm8d/rqHnBmjPkAtQEZz6gltJe Updating 858-82-4762: Fhawm5Nup $2y$10$dIWHglBCk3oJcW4/i.DUAu79PfkcaV.vVFmnokmna3k/DypNDgsX2 Updating 184-41-4519: Pces7@Qim $2y$10$13XkQxEBfa7WfB25CKFXWuc6PqiLRZAf0Ej3ZcQCu26hvTie.awqW Updating 192-65-9793: Kuj3tkep $2y$10$esVtHi4Aq67jwB.oNagR2.Us0d0cB30xiiUF0wZFQ.lzr5Pidu4KG Updating 197-64-9509: Kiq@8Pap $2y$10$20MyJ0iFFJf2/rFdtxLnfeFTZ05F3J1xp99pnuV1yv955rS10b0lO Updating 234-13-0235: Lvab7qkuf $2y$10$W4H/qkAH1w57pYEJdr8Rp.SYpAjSx5W6hygPtzR07FE.Tc8lXnIQW Updating 288-12-9917: cim-7Qup $2y$10$p3l55DkfOslF3qU3Cq/gSOwN5Al.Hd4WPqY5ct6BF1hBOSq4vLjKC Updating 296-88-3962: Zefr8%duq $2y$10$GzLhZ6XeSvgUnrqbsPz3DOfVgmuy9unDnRoEpIyZmbRqNoYrwGt4y Updating 401-65-8167: jnegd5Jet $2y$10$phDqMWbwxZQAqF/mQzaKZeEhdZL7u2lt./F7RlbhuZCVri9N4Xl8C Updating 432-99-2689: Wad1`Rur $2y$10$mKBt4N5f1nhjVZ1STBnDLenBvtIRze25cutshkpK1ff8sv0AZBvze Updating 517-15-9350: Duh%3Cret $2y$10$1szHbMOhZIY6xa1.R65ou.ORPNIYtoVePu9H//llxu0dl8vwGsI3i Updating 592-42-2417: comt9Wpuh $2y$10$nFP9ghbsbD.WWBYhnZgbWuK/CGakEN/YHhUNZA8besurPti9O06Ky Updating 607-74-1169: Wdax=6Khek $2y$10$GQxlAi.Pe2jlH2Q7O5wcq.EhGvK5FkD21JcLxa52Bn4Cj9Od8slqe Updating 772-66-3995: fol!5Gfexr $2y$10$MH7hOvmgV4Y6zyWAH0RpROGvUMnUdGiNmKrJbfoLH2ZA3X9XbdsJi Updating 785-65-6280: Jey54klev $2y$10$ffj.gWiKuYeqbJfc4HvdD.AqnSwfb4Zw3rHBlEyt0MDn6pq.yPvG. Updating 102-09-0721: Vet53nifx $2y$10$nd1NyBDyJVKGJGkCj1eeCOeNp6BDabIFjlkHmuW/i4Zcik/EJ2miK Updating 103-43-6534: cip6!Djotc $2y$10$TnGH2moS5tD3yUUdlsBwQuiXBSMd1e8/7gEnuZo8vq83beXRK6uki Updating 174-19-9377: Movr8Joc $2y$10$2DDnJPu69u95QBVREV8tOeNHZwKJ3RWBL7HPas1Ge39swAFJTWd4C Updating 405-04-1356: qjan8 select * from Employee; +-------------+---------+-------------+-------+----------------+-------------+--------------------------+--------+---------------+---------------+--------------------------------------------------------------+ | 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 | 387-52-8103 | Vet53nifx | $2y$10$nd1NyBDyJVKGJGkCj1eeCOeNp6BDabIFjlkHmuW/i4Zcik/EJ2miK | | 103-40-8183 | 7 | Janie | N | Brydell | 1967-06-01 | 835 Corben Parkway | 190631 | 375-65-5664 | Vot,8niv | $2y$10$GJJV8qPBOzEAK.JWI1by5uw3nlkIDwuOmkEj2KyU7xoP1yevW3.Y6 | | 103-43-6534 | 10 | Kippar | N | Ommanney | 1966-04-09 | 32 Lighthouse Bay Way | 228764 | 782-72-3994 | cip6!Djotc | $2y$10$TnGH2moS5tD3yUUdlsBwQuiXBSMd1e8/7gEnuZo8vq83beXRK6uki | | 140-34-0908 | 3 | Tabby | P | Iveans | 1996-09-27 | 41 Beilfuss Park | 124336 | 628-77-9563 | Ropc-5fen | $2y$10$PoCaGLD38ExQyM/nTghgr.PAyXKNZnjKS2DziSDRK1DvzdBLFlBn6 | | 158-44-5836 | 5 | Lauretta | C | Lars | 1976-07-22 | 78 Fair Oaks Terrace | 67137 | 167-27-4761 | Wel*6lof | $2y$10$LSoxYwjDuOSbspaBpwQaT.xjOLDuoIIoFqOux9FRbCquoXG5cWuo2 | | 160-21-7388 | 8 | Mercy | B | Bryant | 1969-09-05 | 3 Shoshone Hill | 165390 | 231-18-6332 | lem6Gaj | $2y$10$cZWn5kn5U.0qk42CsbkvjeR6sm4DJzO6T76k/ri/qINWQjK4WY0s2 | | 174-19-9377 | 10 | Jarrad | S | McCullogh | 2001-09-23 | 88 Merry Terrace | 124273 | 140-38-1442 | Movr8Joc | $2y$10$2DDnJPu69u95QBVREV8tOeNHZwKJ3RWBL7HPas1Ge39swAFJTWd4C | | 176-57-7749 | 3 | Jane | M | O' Hogan | 1960-03-22 | 4158 Schmedeman Hill | 101593 | 111-45-2255 | ziw.4Qluvz | $2y$10$hkd4wbMLSey33AuqKx.vk.pqT8AK8sOVvnvfL/6gRrhwvJ4Q0E5vm | | 179-46-3342 | 4 | Bartholomeo | C | Dulanty | 2003-04-21 | 797 Florence Hill | 102293 | 771-03-0333 | Rdic0jey | $2y$10$zDul36pxgVU5DOIgeN9KkuuT4JQnFW68mjE1fEnCmLdS1HBMfOQIm | | 184-41-4519 | 9 | Berenice | V | Di Dello | 1994-11-22 | 15 Elka Parkway | 112460 | 293-97-5018 | Pces7@Qim | $2y$10$13XkQxEBfa7WfB25CKFXWuc6PqiLRZAf0Ej3ZcQCu26hvTie.awqW | | 192-65-9793 | 9 | Taffy | W | Sennett | 1978-08-15 | 0277 Kipling Street | 136542 | 461-62-7430 | Kuj3tkep | $2y$10$esVtHi4Aq67jwB.oNagR2.Us0d0cB30xiiUF0wZFQ.lzr5Pidu4KG | | 197-64-9509 | 9 | Sloan | Y | Hatje | 1964-10-18 | 165 Springview Parkway | 45960 | 730-43-0531 | Kiq@8Pap | $2y$10$20MyJ0iFFJf2/rFdtxLnfeFTZ05F3J1xp99pnuV1yv955rS10b0lO | | 198-51-1274 | 6 | Agnes | M | Pagram | 1958-07-01 | 27 Goodland Lane | 38433 | 556-94-7372 | bros~3Wow | $2y$10$Ue6XwY/mfTk3vJlwhK/SVO/mrzqx.iwc0AhQGAqmhIB6NRSZKH08e | | 199-51-5758 | 1 | Omar | B | Quince | 1998-02-07 | 41 Summer Ridge Road | 232782 | 801-72-0598 | ron6Xey | $2y$10$vn2hVP/k7xtqawlMos5Hx.zMITIs5poUX56PboDrpcEIU7o9p/xu. | | 201-98-8291 | 3 | Harman | N | Barrows | 1955-03-09 | 04207 American Ash Alley | 220885 | 717-69-4965 | Cew5Tud | $2y$10$CtTg0UV4VwackK/NUNEPLOORjqRat3BJdDDOIcKOGnM8ClIQ0HVt2 | | 221-70-0150 | 8 | Kellie | D | Alexsandrovich | 1972-01-15 | 02 Aberg Hill | 100188 | 349-14-1435 | Hpaqb0.suh | $2y$10$Gi08wnSTXuMW4DVR9/gGEeDUDiTOMFhd5IZujh.owdx9PjGb1mzii | | 232-73-2252 | 2 | Joline | C | Teanby | 1953-12-09 | 2699 Vermont Pass | 74427 | 390-11-4874 | Ripd2zov | $2y$10$TwaOpCODFSAUBAJRLR0OqOFuZ8R0Df3nPHnpCgiaCFN3XPy805PQy | | 234-13-0235 | 9 | Kali | K | Smithers | 1998-06-07 | 22 Calypso Center | 53815 | 651-22-3782 | Lvab7qkuf | $2y$10$W4H/qkAH1w57pYEJdr8Rp.SYpAjSx5W6hygPtzR07FE.Tc8lXnIQW | | 240-65-0520 | 2 | Hailey | K | Tickel | 1983-05-06 | 1 Texas Park | 98502 | 257-13-3187 | Xdulm3,Rod | $2y$10$poiyd.kJpCYiEya7stJg..E0yYsjzOhdSyCttkY2d34rKzAHNJTXO | | 249-75-5383 | 8 | Anabel | M | Meadmore | 1958-03-21 | 79 Donald Pass | 43869 | 864-54-8908 | nid>9Won | $2y$10$3SvqqDhNiJ9dyxImdsq.FeVh0C5jNSLjlFmvbPtBNk5LarVl.VB5m | | 253-37-4748 | 3 | Mollie | J | Valentin | 1954-05-24 | 9 Northridge Avenue | 153802 | 152-34-5278 | Rar=2xid | $2y$10$57QAjpwH.5REiZEn8ccyu.aa.AiJf8SO.i1BLJVUNWeltHI/fD2/6 | | 272-59-9858 | 6 | Claretta | F | Kenworth | 2001-10-15 | 42561 Boyd Parkway | 159868 | 650-05-1171 | yux>2Gzog | $2y$10$T0VWLESxvr5Xoxkx7Xa.MOm25u.c2sURupW.AHe7YdAvTssxOPTy2 | | 273-22-1454 | 6 | Dominique | R | Theodoris | 1955-09-03 | 92 Killdeer Alley | 146107 | 798-38-4457 | Soz5zixl | $2y$10$XzRH80MyV1iL0FvrMYqzKeZ8ZSOyECzo3b67YTQ51El5qeUhjY68e | | 288-12-9917 | 9 | Norbert | C | Scarce | 1968-03-16 | 98057 Northridge Alley | 230722 | 856-12-7860 | cim-7Qup | $2y$10$p3l55DkfOslF3qU3Cq/gSOwN5Al.Hd4WPqY5ct6BF1hBOSq4vLjKC | | 296-88-3962 | 9 | Timothee | T | Otteridge | 1991-09-10 | 353 Wayridge Way | 200554 | 711-47-5728 | Zefr8%duq | $2y$10$GzLhZ6XeSvgUnrqbsPz3DOfVgmuy9unDnRoEpIyZmbRqNoYrwGt4y | | 305-95-2520 | 4 | Lucita | M | Vasiljevic | 1979-06-28 | 94 Arrowood Way | 75388 | 133-67-7775 | Ngin>8Nit | $2y$10$s6eH3FR9pmgjiXLYN6trluCwKyKa5nbLeZ7iVXBpIuiNeHw.z4P3O | | 306-92-5183 | 8 | Silvana | I | Awde | 1963-09-06 | 2 Burrows Drive | 218512 | 849-63-2877 | Sah1)Fiv | $2y$10$RJezQW0xFToxMqFUjT2fXOrif1rPJ.bZ8sSueJZpcANhFyqD4m3r2 | | 312-47-3348 | 5 | Cybil | K | Broadwood | 1980-12-09 | 7219 Reindahl Terrace | 143198 | 482-80-6452 | Duw9Knep | $2y$10$KfR2gFi311.36aR0iXVYcuTVUekCJyA9RbAmxJmb2b5SYaFUqAUvu | | 489-29-5492 | 2 | Ward | J | Edgson | 1987-12-07 | 4956 School Pass | 205083 | 793-91-4225 | Fov56cikg | $2y$10$O0ZIuWbBJTITk45DcfrAXO2OskJjYO8vyhhUKvMJsEeHM6ZM3HgWm | | 489-78-5381 | 3 | Jerrylee | D | Salliere | 2002-10-24 | 5 Del Sol Avenue | 197266 | 137-87-4928 | Huc1Zvan | $2y$10$UvESH2XgdKzm.lPY0JQYmu5onxb4xEgjYUCJq9v6RDMWIKMgGBX0. | | 498-11-3068 | 5 | Lonny | K | Ughelli | 1952-07-19 | 041 High Crossing Drive | 248734 | 322-73-6741 | xew41Vuw | $2y$10$rSAcqn6QUXmjWRYhpy0.we.FRsqmchcwbo0LNt4bdZFQNsCaPRN8O | | 504-74-1709 | 5 | Nickola | R | Andric | 1984-07-10 | 94786 Village Way | 69938 | 160-02-1988 | Mun73tadm | $2y$10$CgSGlECs3kEjDaiOeqHPiOIy3hNd0iycs1hP0HOtJy/4yYn9Zg4V2 | | 511-73-5142 | 1 | Janka | R | Hitchens | 1993-01-07 | 223 Macpherson Place | 212165 | 557-14-8462 | Plav7~hyem | $2y$10$K0hC4enute6Bu5PkQCd1Yu39DDcYc8UnqPgKWpiKluqnI/UmcOoEm | | 515-77-3666 | 10 | Selma | D | Duly | 1976-02-19 | 9 Southridge Center | 102921 | 850-66-9042 | Zod3fom | $2y$10$QaUzKS68z8ACXl700cz0EOmOZ2kApT/ru3DHPsj5aYf8EYABEyZMq | | 517-15-9350 | 9 | Katharina | A | Gilbertson | 1966-09-19 | 93444 Fulton Lane | 36634 | 249-29-3206 | Duh%3Cret | $2y$10$1szHbMOhZIY6xa1.R65ou.ORPNIYtoVePu9H//llxu0dl8vwGsI3i | | 519-05-5719 | 5 | Jim | E | Maling | 1961-04-03 | 210 Londonderry Terrace | 79479 | 784-79-6956 | zaym90Mroz | $2y$10$eHMGdLoxuOhbGexkFOhD7Opcbmr.qAIvOmJ/h2ABW8RcCeV3LFYMy | | 553-65-7982 | 10 | Kliment | G | Adamek | 1971-07-14 | 78927 Oxford Junction | 216573 | 141-11-6100 | Hod-8muv | $2y$10$BD0ZELPszP5wPsmq43uAw.wT2CyqFNVQY.AfVFXRAIamjjnmNctmq | | 571-69-4266 | 7 | Clo | C | Waszczykowski | 1993-06-25 | 9870 Scott Center | 75741 | 151-21-5386 | rohs7@Quhf | $2y$10$vOt/YQuIk4NGJIiTO2o2w.PAHmQPh5dBRzGr3x6swsJzyaODA91iq | | 573-52-2382 | 3 | Cammy | R | Tebbutt | 1975-04-15 | 637 Nelson Parkway | 163660 | 616-06-1786 | wez&8Wul | $2y$10$2gOezDqao4rZCjhdRe8bCesUl73tnsYcXywWkijswj8jfHwgM8SDS | | 579-58-6120 | 6 | Rabbi | D | Faich | 1994-09-12 | 34 Hansons Pass | 35523 | 328-48-4448 | mur8Qotn | $2y$10$YkXic0SVlhzAa5C8kDXGiuqfHWpcum4SV.SxobNmIzzv9KSbqUq36 | | 592-42-2417 | 9 | Gibby | S | Beldam | 1990-08-30 | 6 Veith Hill | 34221 | 265-64-9915 | comt9Wpuh | $2y$10$nFP9ghbsbD.WWBYhnZgbWuK/CGakEN/YHhUNZA8besurPti9O06Ky | | 598-05-9422 | 5 | Madelaine | A | Plowell | 1952-09-10 | 2 Manufacturers Road | 71445 | 854-35-5680 | Tex!8lik | $2y$10$Gls4JTHdzk0A0LwQicCWHOoYTbmiZoLipdTIcI5HlYTqn2QyRrCZe | | 600-30-0783 | 3 | Mathe | N | Barttrum | 1953-03-13 | 7 Russell Lane | 200440 | 751-62-8627 | Sxuqt0zuz | $2y$10$JElDSxpnTYSqutgb7KrxsuG2EJrRCBB762uf31xXPlqB.lSzTtbJG | | 607-74-1169 | 9 | Gertruda | C | Gockelen | 1976-03-07 | 79091 Menomonie Alley | 158057 | 717-17-8602 | Wdax=6Khek | $2y$10$GQxlAi.Pe2jlH2Q7O5wcq.EhGvK5FkD21JcLxa52Bn4Cj9Od8slqe | | 615-41-3638 | 4 | Lily | A | Wildash | 1950-09-06 | 19 Graedel Park | 63478 | 205-81-9032 | Wiyp8(kab | $2y$10$0olwM56bGyJJAsDZDomrX.Jmu6QMtxUE9RXRaHwz9qTtTKPqt7XdO | | 618-35-0602 | 10 | Durand | L | Gori | 1986-12-29 | 2274 Vernon Plaza | 33041 | 869-58-2221 | gity!3Mkuf | $2y$10$kTXGXfX8Uavsng2JgQC6t.27367A/qycbJpvH5yL2gxYs3RGgHiC2 | | 636-12-5374 | 4 | Damon | K | Rawlyns | 1981-04-08 | 55 Village Green Court | 153178 | 851-47-2030 | Fog8tih | $2y$10$pSZs25Nq9iXVMIUaa1LKC.6IbB5vvridvTF4ul7DrQA1yNWDX4Zhi | | 648-14-2718 | 3 | Gloriana | K | Tildesley | 1974-04-20 | 50384 Oakridge Park | 158296 | 311-64-9456 | Rzujy@7Zam | $2y$10$Box8sPw83NWyEwd3OFT9ruG8zodq763UcuMqt4iXj2ZGzy25AUAX2 | | 649-94-7049 | 7 | Minta | N | Bradforth | 1953-10-26 | 535 Surrey Parkway | 271539 | 138-18-7914 | Qix2+Wiw | $2y$10$ds/eLyfzVSq0hiOugeQBJO4PvwPG8PSXU9jwv0at5kjW59Np7cJvW | | 686-50-9129 | 1 | Abrahan | L | Ratnege | 1996-06-28 | 18 Forest Run Parkway | 50301 | 142-37-2034 | Tetk7Rjuf | $2y$10$4aEtnplqu4hObbLceNGQHukQyKUvXvXwVGBzMxsi3v7w1W9jajM5y | | 687-45-8914 | 6 | Egor | P | Osinin | 1988-11-01 | 327 Kingsford Circle | 114091 | 167-34-9728 | jelq74Kay | $2y$10$uAMTAG4GX8.Aoi8wdSEQ9.ZQOm.h5moBXLjAF5sNF66mEt3EkMQ0a | | 689-31-8418 | 6 | Shea | L | Aitchison | 1955-12-27 | 36641 Russell Circle | 187250 | 556-22-2198 | Biy8>puk | $2y$10$Fp2xF1hx6ySYYHV2hP3eo.Qo9XTVJsYUr34P852TIPAaFJBxdLEZ. | | 700-84-6055 | 4 | Genna | H | Eunson | 1993-04-05 | 05919 Golf View Terrace | 188564 | 113-64-7826 | Pmops%8Quf | $2y$10$zG1zBsrNHZ0yerJpg.0elezAtrPl7ma9c7kuuiZ.v667kEoadQP5i | | 708-11-0063 | 5 | Eimile | A | Filyashin | 1971-06-18 | 27 Farmco Point | 219409 | 501-31-5094 | Tad23clox | $2y$10$zbs3UKynwZxt11cRB1egqeE6rSHfmgs5/H6v1dS9ylswCGumddnYK | | 709-53-2589 | 3 | Tallie | D | Areles | 1998-01-25 | 3 Marquette Junction | 117645 | 187-30-9096 | Fig_1Hod | $2y$10$BWMua7MkD1BnUgtXwOGC5OhBWPzRKnWOieWHNFtGFMVgR2hl3QFbC | | 716-15-9852 | 8 | Clem | B | Neary | 1957-08-28 | 87194 Lake View Road | 42177 | 280-01-2353 | Ram87zuk | $2y$10$umbY9R/l.29w3xlXPDe58u4DFjsCH38CF2vXbZaki00wrA4bd7e1K | | 720-62-3603 | 3 | Jessey | B | Zorro | 1968-08-29 | 4 Maple Wood Drive | 243906 | 789-96-1423 | kib3Jux | $2y$10$NnlIMTgwUXqfe9K7/5CX3OFLbFv8ofJyozeP6HlhYlqxMQfz4wtrm | | 722-47-2860 | 3 | Dillon | R | Salvadori | 1989-09-23 | 866 Warbler Court | 218669 | 413-39-0863 | Yumj#2zges | $2y$10$2stGhzByHqWJd8Jp1aMkuOzv.L8pQIU7TEA0xDMe8U7h3UJQlC5ki | | 723-88-6191 | 6 | Carlin | K | Rickesies | 1976-02-26 | 694 Tomscot Pass | 202078 | 461-47-9056 | Xsijs5~mag | $2y$10$/8hiwUrQSzTB4k3H5WmA/.PR1DNB.lYjR6xQ9/66ZkypPmmnP0fHy | | 727-58-2986 | 10 | Lazarus | V | Olenchikov | 1962-01-09 | 1887 Mesta Place | 34771 | 590-47-1306 | Vuv@0Tnan | $2y$10$w3OAX5e2A1n8jYN9M2BxOurm2R8bvb1WHQuj9AcW/HQkD5QHeDkOG | | 749-74-3457 | 7 | Claiborn | G | Jaggli | 1993-03-16 | 10 Rusk Lane | 237942 | 104-32-3426 | Jof1#reg | $2y$10$vfcba5HsS0c4kuzdlCf.aOORi3Udfm/d3GUmt5JUzw1jZoMQlC/Hq | | 752-84-8775 | 8 | Laurens | M | Cotte | 1973-09-24 | 3 Miller Avenue | 54285 | 658-05-4163 | vux8-Viw | $2y$10$iPQXJgoCNM6qX7tEWwwKq.OGKsX2hD703aK7HvXYotkAbLiLmuX.. | | 753-93-1975 | 2 | Shel | A | McQuillin | 1976-01-31 | 34 Starling Plaza | 33093 | 768-75-2105 | Zug9Kib | $2y$10$6gOWnmYhGDrgdN7NONdrju3b1ohcwJapEap5aDyMMiX28jXtKkJ0m | | 758-19-5868 | 6 | Emilee | M | Syms | 1970-10-10 | 412 Vernon Drive | 207940 | 757-98-9036 | Nvex&9rut | $2y$10$XnX.HFnZfUNsXIXL4iRHn.SMvZXyXb4vUB3FxlyLKR0DnRlBwRKpe | | 772-66-3995 | 9 | Gray | L | Turone | 1984-10-29 | 0 Haas Park | 67690 | 744-95-2396 | fol!5Gfexr | $2y$10$MH7hOvmgV4Y6zyWAH0RpROGvUMnUdGiNmKrJbfoLH2ZA3X9XbdsJi | | 779-97-6862 | 8 | Oralla | V | O'Fielly | 2002-07-19 | 48 Dorton Terrace | 26758 | 811-81-3656 | Reg4nad | $2y$10$8zmkKz35fsqmLiTEE0swZOtFGauVm8d/rqHnBmjPkAtQEZz6gltJe | | 785-65-6280 | 9 | Moore | K | Sartin | 1974-04-11 | 188 Kinsman Avenue | 232366 | 755-17-4433 | Jey54klev | $2y$10$ffj.gWiKuYeqbJfc4HvdD.AqnSwfb4Zw3rHBlEyt0MDn6pq.yPvG. | | 785-75-7978 | 2 | Noelyn | R | Janeczek | 1968-11-16 | 37446 Mandrake Hill | 185138 | 827-56-3174 | xpoz47Req | $2y$10$taN1gVDggOk5l6CAZiiRa.3y2qRvh0ZEfAqfRnwsK9x.m6kW7a8xe | | 789-03-4621 | 10 | Katalin | C | McKea | 1978-11-13 | 50245 Roth Avenue | 242653 | 800-16-1267 | jaj9Cot | $2y$10$ABACDJb4cDz3exBAN90mgu2dxsMUUxlBio2acd2IXWVbgd6S625z2 | | 789-18-4131 | 3 | Kristopher | K | Southby | 1953-03-11 | 87021 Russell Junction | 67726 | 817-64-5529 | vipj3-Bir | $2y$10$Jnj9v2d7g96j3MDS8g2.UePM01py.PoZDIKIJqDodm1TmgI24Uug. | | 790-22-4853 | 7 | Morgen | L | Harbor | 1994-01-18 | 042 Sunbrook Alley | 278431 | 472-81-9344 | guw3Fil | $2y$10$nDEojkHzmF0xs61oeqKIl.JX8Yo/9XRMj1soGGdKQ5M1CFAk0zpxS | | 793-24-8756 | 10 | Hilde | D | Flook | 1956-03-04 | 839 Lawn Park | 167156 | 731-06-2333 | Wazf48trec | $2y$10$8QSLKWUR1gwncAQ1aXQXYO2g9XOKs2Q4pgUXO468mBqC0yiMxT.QC | | 819-87-3158 | 10 | Joy | V | Mattiazzi | 1952-09-29 | 3 Corry Park | 228458 | 291-38-7811 | Reb00cqiq | $2y$10$IWNFI8CmvXYmERii2zMnFOxwbcS4mzS7bCHaRZfSb3OiFbXCH.9we | | 837-38-2747 | 10 | Averyl | J | Goman | 1984-12-16 | 505 Northfield Hill | 128429 | 349-15-4190 | Kadl93vas | $2y$10$wC/H/2Gxu6S7cYh0WfsL8Oezpj93GQAXdcXOSaMp8T.y/3ddkCUv6 | | 856-81-4983 | 6 | Jarvis | E | Clampton | 1982-08-03 | 4497 Elgar Lane | 209152 | 161-34-3372 | Jap#6hivt | $2y$10$ueMq65UmdFmJ9TkrjMoUG.XuguaL4HIdWO1Ne7O/QDtIsDWmy/jma | | 858-82-4762 | 8 | Cornela | D | Kildahl | 1976-07-27 | 632 7th Way | 161931 | 384-60-5206 | Fhawm5Nup | $2y$10$dIWHglBCk3oJcW4/i.DUAu79PfkcaV.vVFmnokmna3k/DypNDgsX2 | | 868-66-3401 | 7 | Siffre | A | Moffat | 1977-02-09 | 8 Manufacturers Road | 63385 | 140-25-1949 | Gaq15guz | $2y$10$1jbKSuhbTK3ECgko0.QWXuJ5zWafPJY2OnnE0H.4Vfmz8q7YKeeYa | | 872-67-7877 | 2 | Lily | C | Clubbe | 1995-08-19 | 2 Schurz Parkway | 208553 | 199-78-3996 | Xhup>6Vceq | $2y$10$Jjns/RoKnGL6lEpydwhzrOAoUrxuszj3r0U2l/jyojo37TMOEOMoC | | 884-44-5249 | 3 | Sean | A | Morriarty | 1956-12-21 | 14860 Hauk Junction | 209607 | 412-70-8841 | Yud07romp | $2y$10$UuvuanANkvX486RVw8la5eZxw22ao5dKLSax.4AqP1oTjRevHLzlC | | 884-82-2308 | 3 | Joceline | G | Baxill | 1962-06-23 | 48 Hauk Trail | 117731 | 784-07-2436 | Kog2>wahd | $2y$10$.INPo9P9tZL1N31gXofaOOz9QekKm/gTOJDORCBPxk2.LoW5b8L0G | | 898-36-7152 | 3 | Ranna | N | Tobin | 1951-10-15 | 176 Village Alley | 184976 | 738-51-8411 | Zidt+4gul | $2y$10$8BNVhFdEakIVshxV7roWi.LYZKNEFixuRPnw2acvXRMERsxJyIg52 | +-------------+---------+-------------+-------+----------------+-------------+--------------------------+--------+---------------+---------------+--------------------------------------------------------------+ B98 rows in set (0.001 sec) BB BMariaDB [companyf24]> describe Employee; +----------------+------------------+------+-----+---------+-------+ | Field | Type | Null | Key | Default | Extra | +----------------+------------------+------+-----+---------+-------+ | SSN | varchar(12) | NO | PRI | NULL | | | Dnumber | int(11) | NO | MUL | NULL | | | Fname | varchar(50) | YES | | NULL | | | Minit | char(1) | YES | | NULL | | | Lname | varchar(50) | NO | | NULL | | | DateOfBirth | date | YES | | NULL | | | Address | varchar(255) | YES | | NULL | | | Salary | int(10) unsigned | YES | | NULL | | | SupervisorSSN | varchar(12) | YES | MUL | NULL | | | PasswordPlain | varchar(60) | YES | | NULL | | | PasswordHashed | varchar(60) | YES | | NULL | | +----------------+------------------+------+-----+---------+-------+ B11 rows in set (0.001 sec) BB BMariaDB [companyf24]> select * from Employee order by rand() limit 1; +-------------+---------+-------+-------+-----------+-------------+----------------------+--------+---------------+---------------+--------------------------------------------------------------+ | SSN | Dnumber | Fname | Minit | Lname | DateOfBirth | Address | Salary | SupervisorSSN | PasswordPlain | PasswordHashed | +-------------+---------+-------+-------+-----------+-------------+----------------------+--------+---------------+---------------+--------------------------------------------------------------+ | 689-31-8418 | 6 | Shea | L | Aitchison | 1955-12-27 | 36641 Russell Circle | 187250 | 556-22-2198 | Biy8>puk | $2y$10$Fp2xF1hx6ySYYHV2hP3eo.Qo9XTVJsYUr34P852TIPAaFJBxdLEZ. | +-------------+---------+-------+-------+-----------+-------------+----------------------+--------+---------------+---------------+--------------------------------------------------------------+ B1 row in set (0.001 sec) BB BMariaDB [companyf24]> [2]+ Stopped mysql companyf24 nick@artemis:~/scripts$ cd nick@artemis:~$ cdbpublic_html/3420/companyf24 nick@artemis:~/public_html/3420/companyf24$ php login.php array(0) { } Company database website - login

Welcome to Companyf24

The only company that assigns projects to employees
SSN:
Password:
nick@artemis:~/public_html/3420/companyf24$ php -a Interactive mode enabled array();POST = ( php > $_POST['ssn'] = '689-31-8418'; $_POST["password"] = "Biy8>puk"; gin.php");ude ( array(2) { ["ssn"]=> string(11) "689-31-8418" ["password"]=> string(8) "Biy8>puk" } Company database website - login

Welcome to Companyf24

The only company that assigns projects to employees
SSN:
Password:
php > exit nick@artemis:~/public_html/3420/companyf24$ php -a Interactive mode enabled '=sarray();89-31-8418';iy8>puk"; 'ssn'][=p'689-31-8418';iy8>puk"; $_POST["password"]"=;"Biy8>puk"; "]i='"Login";"lgo php > include ("login.php"); array(3) { ["ssn"]=> string(11) "689-31-8418" ["password"]=> string(8) "Biy8>puk" ["login"]=> string(5) "Login" } Attempting to login
PHP Warning: Uncaught Error: Call to undefined function pasword_verify() in /home/fac/nick/public_html/3420/companyf24/login.php:22 Stack trace: #0 php shell code(1): include() #1 {main} thrown in /home/fac/nick/public_html/3420/companyf24/login.php on line 22 exit> rx nick@artemis:~/public_html/3420/companyf24$ php index.php PHP Fatal error: Cannot use isset() on the result of an expression (you can use "null !== expression" instead) in /home/fac/nick/public_html/3420/companyf24/index.php on line 5 nick@artemis:~/public_html/3420/companyf24$ php index.php Company database website

Welcome to Companyf24

The only company that assigns projects to employees
PHP Notice: Undefined index: ssn in /home/fac/nick/public_html/3420/companyf24/index.php on line 28
PHP Notice:  Undefined variable: project in /home/fac/nick/public_html/3420/companyf24/index.php on line 33
Enter a name:
nick@artemis:~/public_html/3420/companyf24$ mysql companyf24 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 94538 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 [companyf24]> select * from WorksOn where eSSN = "689-31-8418"; +-------------+---------+--------+ | eSSN | Pnumber | Hours | +-------------+---------+--------+ | 689-31-8418 | 1 | 4.2749 | | 689-31-8418 | 5 | 5.8343 | +-------------+---------+--------+ B2 rows in set (0.000 sec) BB BMariaDB [companyf24]> [3]+ Stopped mysql companyf24 nick@artemis:~/public_html/3420/companyf24$ php nav.php PHP Parse error: syntax error, unexpected 'else' (T_ELSE) in /home/fac/nick/public_html/3420/companyf24/nav.php on line 9 nick@artemis:~/public_html/3420/companyf24$ php nav.php nick@artemis:~/public_html/3420/companyf24$ vim ~/public_html/useraccounts/ admin.php index.php logout.php register.php config.php login.php register.old.php .php@artemis:~/public_html/3420/companyf24$ vim ~/public_html/useraccounts/logout 4;2m"~/public_html/useraccounts/logout.php" [dos] 25L, 370B▽ zzm cWelcome back, Toothmang Index 2 9h 8%~@k Ihtml/useraccounts/logout.php Type=PHP Line: 3 Column: 1/20 Byte: 11h 12%~@k I 4 1/7 Byte: 27h 16% 5 6 Byte: 30h 20%~@k 6 0-1/0 8h 24%~@k 7 1/5 Ah 28%~@k 8 0-1/0 Byte: 41h 32%~@k 9 1/49 3h 36%~@k tml/useraccounts/logout.php Type=PHP Line: 10 23 Byte: 76h 40%~@k 1 5 Byte: 8Fh 44%~@k 2 9 Byte: AAh 48%~@k 3 0-1/0 Byte: C9h 52%~@k 4 1/43 Bh 56%~@k 5 20 Byte: F8h 60%~@k { }ml/useraccounts/logout.php Type=PHP Line: 16 Column: 1/1 Byte: 10Eh 64%~@k { }7 0-1/0 11h 68%~@k 8 1/16 3h 72%~@k 9 8 25h 76%~@k header("Location: login.php");20 30 39h 80%~@k 1 0-1/0594%~@k ?>2 1/2 Bh 88%~@k 3 0-1/0 Fh 92%~@k 4 1/7 61h 96%~@k 4;mos,>Cowboyaccounts/logout.php Type=PHP Line: 25 Column: 1/7 Byte: 16Ah 100%~@k ~@k ~@k ~@k ~@k ~@k ~@k ::q! 4;mnick@artemis:~/public_html/3420/companyf24$ exitr logout There are stopped jobs. nick@artemis:~/public_html/3420/companyf24$ exit logout Connection to artemis.cs.csub.edu closed. nick@Vaxis:~$ exit exit