Thứ Năm, 16 tháng 6, 2016

Gmail Error: Password not accepted from server [SOLVED]

Found a good solution today if you’re receiving the following error: SMTP -> ERROR:Password not accepted from server. Code: 535 Reply: 535-5.7.1 Please log in with your web browser and then try again. Even if the Gmail account credentials are correct, Google’s servers may still block the server attempting to authenticate (more than likely due to a new server location and/or recent password change). Firts, you need allow...
Read More

Cracking password Oracle 12c format using hashcat

Download hashcat from https://hashcat.net/hashcat/ and unpack it Select spare4  value from sys.user$   In this case for example, System Properties: -> Database: Oracle 12c -> Account: SYS -> Passwd: SYS -> SYS.USER$: NAME = 'SYS', SPARE4 = 'S:B283DCCE5DC81D2023E3304C8818646CFF434C9C2FCDD505130ED13524B4'   This means: HASH = 'B283DCCE5DC81D2023E3304C8818646CFF434C9C', SALT = '2FCDD505130ED13524B4'...
Read More

Thứ Tư, 15 tháng 6, 2016

Reset a MySQL root password

1. Linux Stop the MySQL service (Ubuntu and Debian) Run the following command: sudo /etc/init.d/mysql stop  (CentOS, Fedora, and Red Hat Enterprise Linux) Run the following command: sudo /etc/init.d/mysqld stop Start MySQL without a password: sudo mysqld_safe --skip-grant-tables & Connect to MySQL: mysql -uroot Set a new MySQL root password: use mysql; update user set password=PASSWORD("mynewpassword") where User='root'; flush...
Read More

Reset a MySQL root password

1. Linux Stop the MySQL service (Ubuntu and Debian) Run the following command: sudo /etc/init.d/mysql stop  (CentOS, Fedora, and Red Hat Enterprise Linux) Run the following command: sudo /etc/init.d/mysqld stop Start MySQL without a password: sudo mysqld_safe --skip-grant-tables & Connect to MySQL: mysql -uroot Set a new MySQL root password: use mysql; update user set password=PASSWORD("mynewpassword") where User='root'; flush...
Read More