Поменять пароль кали линукс

Сброс пароля Kali Linux

Все когда-нибудь забывали пароли. Поэтому, стоит использовать менеджер паролей. Но, что делать, если менеджер пароль не использовал и забыл пароль Kali Linux. Конечно — сбросить! В статье покажу легкий способ сброса пароля Kali Linux.

Как сбросить пароль Kali Linux

Сброс пароля root в Kali Linux — это довольно простой процесс, требующий перезагрузки системы и нескольких минут работы.

Этапы сброса пароля Kali Linux:

Шаг 1: Запустите Kali Linux и будьте готовы выполнить следующий шаг, в меню Kali Linux GRUB.

Если по какой-либо причине, при загрузке вы не видите меню Kali Linux GRUB, перезагрузите систему и удерживайте клавишу Shift [в некоторых случаях ESC].

Шаг 2: В меню Kali Linux GRUB используйте стрелки клавиатуры для навигации и выбора пункта дополнительных параметров (Advanced options…). Сделать это нужно быстро, так как загрузчик имеет установленный по умолчанию тайм-аут в несколько секунд.

Kali Linux GRUB Дополнительные параметры

Шаг 3: Нажмите клавишу e , чтобы войти в режим редактирования GRUB.

Режим восстановления Kali Linux

Если у вас есть несколько записей в меню Kali Linux Advanced GNU GRUB, перейдите и выберите запись режима восстановления (recovery mode), затем нажмите клавишу e , чтобы войти в режим редактирования.

Шаг 4: Измените режим загрузки. Найдите строку, начинающуюся с linux. В этой строке найдите режим ro (только чтение) и измените его на режим rw (чтение-запись).

Для навигации по файлу Grub, используйте клавиши влево и вправо.

Измените параметры загрузки Kali Linux

Шаг 5: В той же строке, которая начинается с linux, введите в конце строки init =/ bin / bash , чтобы указать ядру загрузиться в режиме shell:

Сброс пароля Kali Linux

Шаг 6: Теперь нажмите F10 или CTRL+X для загрузки. Kali Linux загрузится, и появится командная строка:

Сбросить пароль Kali Linux

Шаг 7: Используйте команду passwd для сброса пользователя root в Kali Linux. Введите новый пароль и подтвердите, при появлении запроса.

Сбросить пароль root Kali Linux

Шаг 8: После успешного обновления пароля root перезагрузите систему, выполнив команду:

Кроме того, вы можете сбросить настройки, выключить / включить компьютер и продолжить загрузку Kali Linux, как обычно.

Не нужно снова редактировать загрузчик GRUB, чтобы вернуть его в исходное состояние. Выполненные ранее изменения относятся только к первой загрузке и впоследствии будут утеряны.

Заключение

Как видите, сброс забытого пароля root в Kali Linux — простая задача, не требующая переустановки системы. Я сомневаюсь, что вам придется часто сбрасывать учетную запись root, но рекомендую добавить статью в закладки.

Читайте также:  Linux настройка wifi сети

Источник

How to Change Admin Password Kali Linux

Passwords are the must-haves when it comes to security and privacy of user accounts for a type of operating system (i.e., Windows or Linux.) Everybody uses a password to secure their devices and the data in them to avoid suspicious attacks and unauthorized logins. Just like this, two types of users can be created in the Linux and Windows operating systems (i.e., admin or root, and standard.)

According to their types, the privileges assigned to them are also different and have different impacts. Admin and root user accounts are said to be the managers of the whole system. Thus, we will be take a look at the ways to change the password for an admin account in a Kali Linux operating system installed on Windows 10.

Change Password for Currently Logged in Admin:

Let’s start with the opening of a Kali Linux application from our Windows 10 system, search “Kali Linux” from your search bar of the Windows 10 operating system. The application will appear in your system’s application area. Run it as administrator by tapping on the option of “Run as administrator”.

The black screen will be opened on your screen, and it will take for a while for some content to appear. The below-shown Console Interface of Kali Linux will appear, and you can add as many commands as you want to it. It automatically logged in from the only user account it has (i.e., “Test” with sudo rights except “root”.) This is why it doesn’t require a password to start it. But it does have a password.

If you need to change the password of this admin account named “Test”, you can do so by using the simple “passwd” command on the currently opened console. It will then allow the user to enter the existing admin account password. You will be capable of setting a new password for it after safely integrating the current password.

You need to add a new password twice for confirming. Your admin account “test” password will be updated successfully on your Linux machine. Try the new password while using some commands in the shell next time.

Let’s say, you want to add a new user named “Peter” by using the “Test” admin on the Kali Linux shell, You need to use the “useradd” instruction with the “-m” option followed by a new username i.e. “Peter”. It requires your newly changed password for “Test” admin to continue.

A new user “Peter” will be added to your Kali Linux system, but it will not be an admin account. You need to set the password for this standard user “Peter” using the passwd command as shown below. The password for the standard user “Peter” has been set.

To log in from the standard account “Peter”, you need to try the “su Peter” instruction on the console of the currently logged in Admin account (i.e., “test”.) To log in, it will prompt for the password of user “Peter.”

Читайте также:  Which linux distribution is best

After adding its password, the console for the “Peter” standard account will be launched. The console will be simpler than the “Test” user console. When you try to update the Kali Linux system with the “apt-get” instruction, it will not allow you to do so. This is because of the type of “Peter” account i.e., not an admin account.

Thus, you need to make it a sudo user. Login from the “test” user again using the “su” query. Use the “usermod” instruction with “-a”, “-G” options followed by the keyword “sudo” for the “Peter” account. To proceed, it will request the password for the “Test” admin account.

After this, use the “chsh” instruction followed by the “-s” flag and path to the “bash” folder of the “Peter” account. Now, your account “Peter” is set to “admin” or “sudo”.

Login from it by using the “su Peter” instruction followed by the password. You would be effectively logged in, and the console will appear, similar to the “test” account. Try out the update instruction in its console and it will be executed successfully this time.

This is about changing the password for the currently logged-in account and updating the type of a standard user to a sudo user by using the “usermod” instruction.

Change Password for Root User:

When you install Kali Linux on your Windows 10 system using the WSL tool, the “root” user account gets created automatically without a password. While it asks you to add a new user with its password like “test”.

So, currently, the “root” account has no password, and we will be changing it. Before that, use the “su” instruction to log in from the root using the current account “test” console. Add a password for admin “test” and you will be logged in from the “root” user in red. Use the “passwd” command to create its new password and retype it.

Conclusion:

This article demonstrates the importance of passwords in our daily life while using different devices and operating systems. We have seen simple commands to change the password for the kali Linux admin user and use this new password to execute some needed queries i.e., create a new account and more. At last, we have also demonstrated to create a password for the Kali Linux “root” user using the same “passwd” instruction. This is all about the use of passwd instruction on the Kali Linux console to change the password for the admin account.

Источник

HackWare.ru

Этичный хакинг и тестирование на проникновение, информационная безопасность

Пароли по умолчанию в Kali Linux

Рассмотрим, какие в Kali Linux стандартные (дефолтные) пароли и как их поменять.

Пароль пользователя Kali Linux

Какой пароль Kali Linux LIVE

При загрузке LIVE образа учётные данные для входа не требуются. Запуск команд с sudo также не требует паролей.

Но если появилось блокировки, то для этого окна нужно вводить пароль «kali».

Читайте также:  Orange pi zero установка linux

Какой пароль по умолчанию в Kali Linux

При установке системы вам будет предложено создать учётную запись пользователя — имя пользователя и пароль для него. Эти учётные данные в дальнейшем будут использоваться для входа в систему.

Если появилось блокировки, то для этого окна нужно вводить пароль вашего пользователя, который вы используете для входа в систему.

Как войти в Amazon EC2

Пользователь: kali

Как поменять свой пароль в Kali Linux

Для смены своего пароля запустите команду:

введите старый пароль, а затем два раза новый пароль.

Как поменять пароль для другого пользователя в Kali Linux

Чтобы поменять пароль для другого пользователя, запустите команду вида:

Какой пароль у root в Kali Linux

По умолчанию пароль root не установлен. Чтобы его установить выполните команду:

После этого вы можете войти как пользователь root.

Что делать, если забыл пароль от Kali Linux

Дефолтный пароль Kali Linux в VMware и ARM образах

Во всех официальных образах, в том числе VMware и ARM, стандартными учётными данными являются:

Пользователь: kali

Пароль: kali

Пароль образа Vagrant

Имя пользователя: vagrant

Пароль: vagrant

Пароль Kali Linux в SSH

Пароль SSH точно такой же как и пароль у пользователя в системе. Т.е. в стандартных образах имя пользователя и пароль kali. После установки системы или смены пароля пользователя, при подключении по SSH используйте пароль вашей учётной записи в системе.

Рекомендуется настроить вход с использованием файлов ключей, подробности смотрите в «SSH (ч.4): Создание и настройка ключей OpenSSH».

Стандартные учётные данные в инструментах

Некоторые инструменты, поставляемые с Kali, будут использовать свои собственные дефолтные учётные данные (другие сгенерируют новый пароль при первом его использовании). Следующие инструменты имеют пароли по умолчанию:

BeEF-XSS

Имя пользователя: beef

Пароль: beef

Конфигурационный файл: /etc/beef-xss/config.yaml

MySQL

Пользователь: root

Для первоначальной настройки программы и установки пароля пользователя root, запустите команду:

mysql_secure_installation

Если вы уже установили пароль MySQL в Kali Linux, но забыли его, то смотрите статью «Как сменить пароль рута MySQL в Kali Linux».

PostgreSQL

Пользователь: postgres

Пароль: postgres

Как поменять пароль PostgreSQL

sudo systemctl start postgresql.service sudo -u postgres psql postgres

В приглашении psql введите команду:

\password postgres Введите новый пароль:

OpenVAS

Имя пользователя: admin

Для настройки программы выполните команду:

Metasploit-Framework

В официальной документации сказано:

Имя пользователя: postgres

Пароль: postgres

Конфигурационный файл: /usr/share/metasploit-framework/config/database.yml

Но при попытке подключения из msfconsole с этими учётными данными возникает ошибка:

Error while running command db_connect: Failed to connect to the Postgres data service: ВАЖНО: пользователь "postgres" не прошёл проверку подлинности (Peer)

Ещё один вариант ошибки, если не указать пароль:

Error while running command db_connect: Failed to connect to the Postgres data service: fe_sendauth: no password supplied

Для её исправления можно поступить следующим образом. Запускаем службу PostgreSQL, создаём нового пользователя (имя user) с паролем и создаём базу данных (названа metasploit) от имени этого пользователя:

sudo systemctl start postgresql.service sudo -u postgres createuser user -W sudo -u postgres createdb -O user metasploit

Затем (замените user на имя пользователя, а user_pass на пароль пользователя):

msfconsole db_connect user:user_pass@localhost/metasploit db_status

Источник

Оцените статью
Adblock
detector