This shows you the differences between two versions of the page.
Both sides previous revision Previous revision Next revision | Previous revision | ||
api [2024/08/15 18:00] kaduuwikiadmin [API Script to find and extracts accounts in leaks] |
api [2025/03/26 08:50] (current) kaduuwikiadmin [API Script to find and extracts accounts in leaks] |
||
---|---|---|---|
Line 55: | Line 55: | ||
- | ===== API Script for all endpoints ===== | ||
- | |||
- | |||
- | The customer has various options in Kaduu for accessing the query data: | ||
- | * 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. In this chapter we illustrate how the API can be used with a customizable Python script which could assist you with few business use cases: | ||
- | |||
- | * 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' | ||
- | |||
- | You can learn more in the {{ : | ||
+ | ===== API Script to extract leaks and save it to a CSV ===== | ||
+ | {{ :: | ||
+ | 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 ===== | ===== 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' | + | 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' |
- | + | ||
- | The script handles several key steps: | + | |
- | + | ||
- | * Logging In: It starts by using a username and password to log into the API and get a security token. This token is necessary for making secure requests to the service. | + | |
- | * Reading Input Data: It reads from various text files that contain the user's search terms, date ranges | + | |
- | * Searching Leaks: Using the provided search terms, the script sends a query to the API to find leaks that match the criteria. | + | |
- | * Processing Results: Once it retrieves the data, the script filters through it to find and extract only those details | + | |
- | * Continued Searches: The script can handle multiple pages of results from the API, ensuring it captures all relevant data. | + | |
- | + | ||
- | + | ||
- | The script can be downloaded | + | |
- | * auth.txt - your Kaduu email and pwd | + | |
- | * DateRange.txt - the date range for the query. Could be for example " | + | |
- | * input.txt - should contain your domain (like " | + | |
- | * Tags.txt - by default " | + |