This shows you the differences between two versions of the page.
Both sides previous revision Previous revision Next revision | Previous revision | ||
api [2023/11/23 13:52] kaduuwikiadmin |
api [2025/03/26 08:50] (current) kaduuwikiadmin [API Script to find and extracts accounts in leaks] |
||
---|---|---|---|
Line 12: | Line 12: | ||
===== API Documentation ===== | ===== API Documentation ===== | ||
- | Please find the API documentation | + | Please find two API documentations |
+ | * {{ :: | ||
+ | * The{{ : | ||
Please note that Kaduu SaaS API is based on a REST/HTTPS protocol with JSON format. All endpoints except the | Please note that Kaduu SaaS API is based on a REST/HTTPS protocol with JSON format. All endpoints except the | ||
Line 53: | Line 55: | ||
- | ===== API Script ===== | ||
+ | ===== API Script to extract leaks and save it to a CSV ===== | ||
- | The customer has various options in Kaduu for accessing the query data: | + | {{ ::query_leaks.zip |The Leak Center Query Tool}} is a Python script |
- | • Via dashboard: data can be displayed and then exported (CSV, XML, DOCX etc) | + | |
- | • Via webhook | + | |
- | • Via REST API | + | |
- | • Via alerting (email) | + | |
- | + | ||
- | The REST API allows you great flexibility in automation and integration into your existing processes and applications. You can use the API according to the official documentation https:// | + | |
- | * White labeled alerts: You use Kaduu to regularly provide end customers or specific people with email alerts on certain topics (e.g. leaked data). To do this, you want to use an email with your design, company name and structure and also send this via your infrastructure. | + | |
- | * Ticketing System Integration: | + | |
- | * Automated Output Parsing: You want to store all results for certain search queries daily in an easy-to-process format (CSV, XLS, etc.) locally in a folder of your choice for analysis and further processing. | + | |
- | * Reduce Workload in Alerting: You want to save time when using Kaduu' | + | |
- | + | ||
- | **How to use the script?** | + | |
- | Run the script either by giving the input in the terminal | + | |
- | + | ||
- | **Using the input file (example_input.csv)** | + | |
- | + | ||
- | The script | + | |
- | + | ||
- | + | ||
- | **What are the API Endpoints integrated into the script?** | + | |
- | + | ||
- | We didn’t integrate all API endpoints available, but just a few relevant ones from control.leak.center: | + | |
- | + | ||
- | * 'domain': " | + | |
- | * ' | + | |
- | * ' | + | |
- | * ' | + | |
- | * ' | + | |
- | * ' | + | |
- | * ' | + | |
- | + | ||
- | **How to use the script for daily alerting? | + | |
- | Alert Option “1” Use the Script for a daily Job. The script will ignore the date range, but fetch the current day and execute the query for the current day only. If alerting is set to 0: It will use the date range. | + | |
- | You can customize the HTML Email in the Python code here: | + | |
- | + | ||
- | + | ||
- | **If you want to run the script in Crontab: | + | |
- | • Locate Your Python Script: Ensure your script (V1.py) is executable and located in a suitable directory. You might also want to make sure that the script has the appropriate permissions to execute. You can make it executable using the command: bash chmod +x / | + | |
- | • Find the Path to Your Python Interpreter: | + | |
- | • Edit Your Crontab: Open your crontab for editing by running: bash crontab -e (This will open the crontab file in your default text editor) | + | |
- | • Add a Cron Job: In the crontab file, add a line that specifies when the script should run and what command should be executed. The general format is: * * * * command to execute. For daily execution, you might use something like: 0 0 * * * / | + | |
- | • Save and Exit: Save the crontab file and exit the editor. Your cron job is now scheduled. The cron daemon will automatically pick up the new job. | + | |
- | • Check the Crontab List: To make sure your cron job is listed, you can view your current cron jobs with: crontab | + | |
- | • Logging: | + | |
- | • Environment Issues: If your script depends on environment variables or a specific environment setup, you might need to either export the necessary variables directly in the crontab or run a shell script from cron that sets up the environment before running your Python script. | + | |
- | • Remember to replace / | + | |
+ | The script processes paginated responses from the API and writes the results to a CSV file, Leaks.csv, with structured headers including id, createdAt, content, fileName, and more. | ||
+ | ===== API Script to find and extracts accounts in leaks ===== | ||
+ | This script is designed to help users search through data leaks for specific information like email addresses and passwords. It automates the process of logging into the Leak Center' |