@nanggo/social-preview
Version:
Generate beautiful social media preview images from any URL
10 lines (9 loc) • 347 B
TypeScript
/**
* IP Address Validation Utilities
* Centralized SSRF protection for private and reserved IP address ranges
*/
/**
* Check if an IP address (IPv4 or IPv6) is in a private or reserved range
* This prevents SSRF attacks by blocking access to internal network resources
*/
export declare function isPrivateOrReservedIP(ip: string): boolean;