-
Notifications
You must be signed in to change notification settings - Fork 634
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add: nasl-function: ip_reverse_lookup
To be able to reverse lookup the IP address of either the target or given IP address a new function `ip_reverse_lookup` is introduced. This function does not rely on found vhosts to be easier to use within a krb5 context. It does not fork and just calls `getnameinfo`. The function can used with an IP address: ``` ip_reverse_lookup('1.1.1.1'); ``` and without: ``` ip_reverse_lookup(); ``` When no ip address is given than the target ip address will be used.
- Loading branch information
1 parent
51cf104
commit 5bba8b8
Showing
5 changed files
with
65 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters