diegodiaz1256

pasacosas

Mar 7th, 2021 (edited)
210
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 1.61 KB | None | 0 0
  1. SELECT user,authentication_string,plugin,host FROM mysql.user;
  2. +------------------+------------------------------------------------------------------------+-----------------------+-----------+
  3. | user             | authentication_string                                                  | plugin                | host      |
  4. +------------------+------------------------------------------------------------------------+-----------------------+-----------+
  5. | debian-sys-maint | $A$005$L&iQ9W\yR;7`fjFgmadCQ9vYOBXH1c8hCtHFLVvUhfodGTgoV9Wibgl0 | caching_sha2_password | localhost |
  6. | mysql.infoschema | $A$005$THISISACOMBINATIONOFINVALIDSALTANDPASSWORDTHATMUSTNEVERBRBEUSED | caching_sha2_password | localhost |
  7. | mysql.session    | $A$005$THISISACOMBINATIONOFINVALIDSALTANDPASSWORDTHATMUSTNEVERBRBEUSED | caching_sha2_password | localhost |
  8. | mysql.sys        | $A$005$THISISACOMBINATIONOFINVALIDSALTANDPASSWORDTHATMUSTNEVERBRBEUSED | caching_sha2_password | localhost |
  9. | root             |                                                                        | auth_socket           | localhost |
  10. +------------------+------------------------------------------------------------------------+-----------------------+-----------+
  11. 5 rows in set (0.00 sec)
  12. ALTER USER 'root'@'localhost' IDENTIFIED WITH mysql_native_password BY 'password';
  13.  
  14.   GNU nano 4.8           /etc/apache2/mods-enabled/dir.conf                    
  15. <IfModule mod_dir.c>
  16.         DirectoryIndex index.html index.cgi index.pl index.php index.xhtml inde>
  17. </IfModule>
  18.  
  19. # vim: syntax=apache ts=4 sw=4 sts=4 sr noet
  20. sudo apt install php libapache2-mod-php php-mysql -y
  21.  
Advertisement
Add Comment
Please, Sign In to add comment