-
Notifications
You must be signed in to change notification settings - Fork 3
ipof
travis-ci.org edited this page Apr 16, 2020
·
5 revisions
List the ip addresses of a url
Version : 1.0
File Name : ipof.ps1
Author : Adewale Azeez - azeezadewale98@gmail.com
Date : March-25-2020
List all the host addresses of a particular url. Internet connection is required to fetch the ip addresses.
ipof [[-URL] <String>] [-Head] [<CommonParameters>] the url to fetch it ip addresses
| attr | value |
|---|---|
| Required? | false |
| Position? | 1 |
| Default value | |
| Accept pipeline input? | false |
| Accept wildcard characters? | false |
Use the Invoke-WebRequest with Method HEAD to find Ip
| attr | value |
|---|---|
| Required? | false |
| Position? | named |
| Default value | False |
| Accept pipeline input? | false |
| Accept wildcard characters? | false |
This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters (https:/go.microsoft.com/fwlink/?LinkID=113216).
System.String
[System.String]
ipof google.com
List all the ip addresses of Google url
ipof https://www.github.com
List all the ip addresses of Github
MIT License Copyright (c) 2019-2020 Adewale Azeez