Fix description
This commit is contained in:
parent
fb8509a2f3
commit
227ca3c9bb
@ -1,10 +1,10 @@
|
|||||||
TCP banner grabber implemented in Go (experimental)
|
TCP banner grabber implemented in Go (experimental)
|
||||||
======
|
======
|
||||||
|
|
||||||
This program will make TCP connections to IP addresses provide on
|
This program will make TCP connections to IP addresses provided on
|
||||||
stdin, optionally send them a short message, and wait for their
|
stdin, optionally send a short message, and wait for responses. Each
|
||||||
responses. Each response is printed to stdout, along with the
|
response is printed to stdout, along with the responding host's IP
|
||||||
responding host's IP address. Status messages appear on stderr.
|
address. Status messages appear on stderr.
|
||||||
|
|
||||||
USING:
|
USING:
|
||||||
-----
|
-----
|
||||||
|
@ -1,22 +1,14 @@
|
|||||||
/*
|
/*
|
||||||
TCP banner grabber, implemented in go
|
TCP banner grabber, implemented in go
|
||||||
|
|
||||||
This program will make TCP connections to IP addresses provide on
|
This program will make TCP connections to IP addresses provided on
|
||||||
stdin, optionally send them a short message, and wait for their
|
stdin, optionally send a short message, and wait for responses. Each
|
||||||
responses. Each response is printed to stdout, along with the
|
response is printed to stdout, along with the responding host's IP
|
||||||
responding host's IP address. Status messages appear on stderr.
|
address. Status messages appear on stderr.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package main
|
package main
|
||||||
|
|
||||||
/*
|
|
||||||
* banner.go Copyright 2013 Regents of the University of Michigan
|
|
||||||
*
|
|
||||||
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
|
|
||||||
* use this file except in compliance with the License. You may obtain a copy
|
|
||||||
* of the License at http://www.apache.org/licenses/LICENSE-2.0
|
|
||||||
*/
|
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"bufio"
|
"bufio"
|
||||||
"encoding/base64"
|
"encoding/base64"
|
||||||
|
Loading…
Reference in New Issue
Block a user