This commit is contained in:
Sarah Jamie Lewis 2016-04-26 17:47:00 -07:00
parent d83d10bd93
commit 44cc375066
11 changed files with 21 additions and 27 deletions

View File

@ -7,7 +7,6 @@ import (
)
type BitcoinProtocolScanner struct {
}
func (rps *BitcoinProtocolScanner) ScanProtocol(hiddenService string, proxyAddress string, report *report.OnionScanReport) {

View File

@ -7,7 +7,6 @@ import (
)
type FTPProtocolScanner struct {
}
func (sps *FTPProtocolScanner) ScanProtocol(hiddenService string, proxyAddress string, report *report.OnionScanReport) {

View File

@ -7,7 +7,6 @@ import (
)
type IRCProtocolScanner struct {
}
func (rps *IRCProtocolScanner) ScanProtocol(hiddenService string, proxyAddress string, report *report.OnionScanReport) {

View File

@ -7,7 +7,6 @@ import (
)
type RicochetProtocolScanner struct {
}
func (rps *RicochetProtocolScanner) ScanProtocol(hiddenService string, proxyAddress string, report *report.OnionScanReport) {

View File

@ -7,7 +7,6 @@ import (
)
type SMTPProtocolScanner struct {
}
func (sps *SMTPProtocolScanner) ScanProtocol(hiddenService string, proxyAddress string, report *report.OnionScanReport) {

View File

@ -1,18 +1,17 @@
package protocol
import (
"crypto/md5"
"errors"
"fmt"
"github.com/s-rah/onionscan/report"
"golang.org/x/crypto/ssh"
"h12.me/socks"
"log"
"golang.org/x/crypto/ssh"
"net"
"errors"
"crypto/md5"
"fmt"
)
type SSHProtocolScanner struct {
}
func (sps *SSHProtocolScanner) ScanProtocol(hiddenService string, proxyAddress string, report *report.OnionScanReport) {

View File

@ -2,9 +2,9 @@ package report
import (
"encoding/json"
"fmt"
"github.com/s-rah/onionscan/utils"
"io/ioutil"
"fmt"
)
type ExifTag struct {