كذلك نعرض لكم احد توزيعات اللينكس المميزة متخصصة لباحثي امن المعلومات ومختبرين الاختراق Parrot Security. كذلك هناك توزيعات كثيرة لمختبرين الاختراق مثل Kali Linux and Blackarch وكل توزيعة لها مميزاتها.
كما نتحدث عن مميزات Parrot Security:
هكذا صممعت مع Cloud Pentesting و IoT Security وتستطيع ايضاً تشغليها عبر منفذ USB لتضمن وجود النسخة في اي وقت تحتاجة.
الخصوصية:
على سبيل المثال تدعم الاتصال عبر تقنيات TOR, I2P, anonsurf, gpg, tccf, zulucrypt, veracrypt, truecrypt
كذلك للحفاظ على خصوصيتك واخفاء هويتك. كذلك والعديد من المزايا يمكنكم التجربة والاستمتاع في استخدام النسخة
التحميل من الموقع الرسمي
https://www.parrotsec.org/download.fx
حيث ان التوزيعة تقبل وصلة الوايرلس عبر USB لكلا من:
TP-LINK TL-WN722N ( Volume 1 Only )
Alfa AWUS036NH
Atheros AR9271
Ralink RT3070
Ralink RT3572
Atheros AR9485
ضبط اعدادات قواعد البيانات:
Reconfigure Mysql/Mariadb Password
1. Stop the MySQL service.
service mysql stop
2. Start MySQL without password and permission checks.
mysqld_safe –skip-grant-tables &
3. Press [ENTER] again if your output is halted.
4. Connect to MySQL.
mysql -u root mysql
5. Run following commands to set a new password for root user. Substitute NEW_PASSWORD with your new password.
UPDATE user SET password=PASSWORD(‘my new p4ssw0rd’) WHERE user=’root’;
FLUSH PRIVILEGES;
6. Restart the MySQL service.
service mysql restart
Reconfigure Postgresql Password
1. Open psql from the postgres user.
sudo -u postgres psql
2. Change password of the postgres user (or any other database user)
\password postgres
or
\password myuser
3. Quit pgsql
\q
كذلك اعادة بناء ملفات DEB من المصدر
root@parrot:~# apt-get source <pack-name>
and
root@parrot:~# cd <pack-name>
Now we must edit the package source code and make the changes needed to the source code of the package
root@parrot:~# nano examples/classic-format.c
After that the important is check for any build dependencies the package may have, so install any build dependencies if needed
root@parrot:~# apt install dh-autoreconf libnfc-dev libssl-dev
With the dependencies installed the next command is all it takes to build our new version
root@parrot:~# dpkg-buildpackage
When the build completes without errors you’ll be able to install it
root@parrot:~# dpkg -i ../<pack-name>.deb