harian untung99play.xyz

untung99play.xyz: MikroTik Tutorial How to recover RouterOS passwords from a backup file


Untung99 menawarkan beragam permainan yang menarik, termasuk slot online, poker, roulette, blackjack, dan taruhan olahraga langsung. Dengan koleksi permainan yang lengkap dan terus diperbarui, pemain memiliki banyak pilihan untuk menjaga kegembiraan mereka. Selain itu, Untung99 juga menyediakan bonus dan promosi menarik yang meningkatkan peluang kemenangan dan memberikan nilai tambah kepada pemain.

Berikut adalah artikel atau berita tentang Harian untung99play.xyz dengan judul untung99play.xyz: MikroTik Tutorial How to recover RouterOS passwords from a backup file yang telah tayang di untung99play.xyz terimakasih telah menyimak. Bila ada masukan atau komplain mengenai artikel berikut silahkan hubungi email kami di koresponden@untung99play.xyz, Terimakasih.

These steps will help you recover a forgotten password from an unencrypted RouterOS backup file. To complete these step we will use a python tool called RouterOS-Backup-Tools written by Lorenzo Santina (BigNerd95). I have included steps specific to Windows and Linux which vary slightly.

Jump to Steps for… Windows | Linux

Windows MikroTik Password Recovery

Install Python 3 and git from Windows

Open a git bash console and create a new directory

mkdir rostest
cd rostest

Clone the RouterOS-Backup-Tools repo

git clone https://github.com/BigNerd95/RouterOS-Backup-Tools.git

Create a virtualenv and install the dependency library

virtualenv ./venv
./venv/Scripts/activate.bat
pip install pycryptodome

Now we are ready to extract our .backup file and decode the passwords. Before beginning this step, copy your backup file into the rostest folder.

python RouterOS-Backup-Tools/ROSbackup.py unpack myrouter.backup -d myrouter

python RouterOS-Backup-Tools/extract_user.py myrouter/user.dat
************** Output ***************
User: admin
Pass:

User: admin
Pass:

User: admin
Pass: mysecretpassword

*************************************

Jump to Conclusion


Linux MikroTik Password Recovery

Make sure you have Python 3 installed.

python3 -V

Create a new folder and clone the RouterOS-Backup-Tools repo

mkdir rostest
cd rostest
git clone https://github.com/BigNerd95/RouterOS-Backup-Tools.git

Create a virtualenv and install the dependency library

virtualenv ./venv
source ./venv/Scripts/activate
pip install pycryptodome

Now we are ready to extract our .backup file and decode the passwords. Before beginning this step, copy your backup file into the rostest folder.

python RouterOS-Backup-Tools/ROSbackup.py unpack myrouter.backup -d myrouter

python RouterOS-Backup-Tools/extract_user.py myrouter/user.dat
************** Output ***************
User: admin
Pass:

User: admin
Pass:

User: admin
Pass: mysecretpassword

*************************************

Conclusion

That’s It! You have successfully recovered your forgotten password from a routeros backup file. If you are faced with needing to get a password from an encrypted backup you will need to unencrypted the backup using a bruteforce method. The software package RouterOS-Backup-Tools includes tools for bruteforcing and unencrypting RouterOS backup files but that is beyond the scope of this article.

Let me know what you think, leave a comment below. Did these steps work for you?