Powrót do prezentacji
DIGI-NETRA
Kauravsrestha-Duryodhan61
Python
Interfejsy wiersza poleceń OSINT
To repozytorium zatwierdza klucz API w swoim źródle, który wygląda jak żywy. Klucze w śledzonym źródle są rozliczane przez każdego, kto je znajdzie, a skanery sekretów znajdują je szybko. Przechowuj swoje klucze w zmiennej środowiskowej lub menedżerze sekretów — nigdy w zatwierdzonym kodzie.
DIGI-NETRA is an India-focused number investigator. It prepends the 91 country code to a local number, calls the WhatsApp Data API profile endpoint, and persists the returned profile picture, normalized phone and about text.
It is featured here for the integration, not the implementation: the repository commits a live-looking RapidAPI key directly into its source. Do not copy that pattern — a committed key is billable by anyone who finds it, and secret scanners find them within minutes. Keep your key in an environment variable or secrets manager, never in tracked source.
Punkty końcowe, których używa
GET /number/91{localNumber} — profile picture URL, normalized phone, about text.
To samo połączenie
import os, requests
# Read the key from the environment — never commit it.
number = "91" + local_number
url = f"https://wp-data.p.rapidapi.com/number/{number}"
headers = {
"x-rapidapi-host": "wp-data.p.rapidapi.com",
"x-rapidapi-key": os.environ["RAPIDAPI_KEY"],
}
profile = requests.get(url, headers=headers).json()Zbuduj przy użyciu tego samego API
Ten projekt działa w oparciu o publiczny interfejs API danych WhatsApp. Zdobądź klucz i złóż pierwsze żądanie w kilka minut.
Co mówią nasi użytkownicy
Prawdziwe opinie od naszych zadowolonych klientów
4.5/5 (176 recenzje)