Skip to content

Commit

Permalink
changing repo name
Browse files Browse the repository at this point in the history
  • Loading branch information
careyjames committed Oct 30, 2023
1 parent df710c7 commit 64dfaae
Show file tree
Hide file tree
Showing 25 changed files with 50 additions and 48 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/codeclimate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,6 @@ jobs:
run: |
go test ./... -coverprofile c.out
mkdir -p ./github.com/careyjames
ln -s $PWD ./github.com/careyjames/DNS-Scout
ln -s $PWD ./github.com/careyjames/dns-scout
./cc-test-reporter format-coverage -t gocov -o codeclimate.json c.out
./cc-test-reporter upload-coverage -i ./codeclimate.json
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
[![Test Coverage](https://api.codeclimate.com/v1/badges/970a194c160c45855199/test_coverage)](https://codeclimate.com/github/careyjames/DNS-Scout/test_coverage)
![Build Status](https://github.com/careyjames/DNS-Scout/actions/workflows/go.yml/badge.svg?branch=main)
[![Code Climate](https://codeclimate.com/github/careyjames/DNS-Scout/badges/gpa.svg)](https://codeclimate.com/github/careyjames/DNS-Scout)
[![Go Report Card](https://goreportcard.com/badge/github.com/careyjames/DNS-Scout)](https://goreportcard.com/report/github.com/careyjames/DNS-Scout)
[![Test Coverage](https://api.codeclimate.com/v1/badges/970a194c160c45855199/test_coverage)](https://codeclimate.com/github/careyjames/dns-scout/test_coverage)
![Build Status](https://github.com/careyjames/dns-scout/actions/workflows/go.yml/badge.svg?branch=main)
[![Code Climate](https://codeclimate.com/github/careyjames/dns-scout/badges/gpa.svg)](https://codeclimate.com/github/careyjames/dns-scout)
[![Go Report Card](https://goreportcard.com/badge/github.com/careyjames/dns-scout)](https://goreportcard.com/report/github.com/careyjames/dns-scout)
[![OS - Debian Linux](https://img.shields.io/badge/OS-Debian_Linux-blue?logo=linux&logoColor=white)](https://www.debian.org/ "Go to Debian homepage")
[![OS - Ubuntu Linux](https://img.shields.io/badge/OS-Ubuntu_Linux-blue?logo=linux&logoColor=white)](https://ubuntu.com/ "Go to Ubuntu homepage")
[![OS - Kali Linux](https://img.shields.io/badge/OS-Kali_Linux-blue?logo=linux&logoColor=white)](https://www.kali.org/ "Go to Kali homepage")
[![OS - Raspberry Pi](https://img.shields.io/badge/OS-Raspberry_Pi-blue?logo=raspberry-pi&logoColor=white)](https://www.raspberrypi.org/ "Go to Raspberry Pi homepage")
[![macOS](https://img.shields.io/badge/macOS-Silicon_and_Intel-blue?logo=apple&logoColor=white)](https://www.apple.com/macos/ "Go to Apple homepage")

[español](https://github.com/careyjames/DNS-Scout/blob/main/README(espa%C3%B1ol).md)
[español](https://github.com/careyjames/dns-scout/blob/main/README(espa%C3%B1ol).md)

DNS Scout is a DNS troubleshooting tool that gets your email to the inbox. Checks SPF, DMARC, DKIM and MX records, for InfoSec Pros and Normies. Compatible with macOS, Ubuntu, Raspberry Pi and Kali Linux.

Expand Down
Binary file modified bin/dns-scout
Binary file not shown.
2 changes: 1 addition & 1 deletion debian/control
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Priority: optional
Maintainer: Carey James Balboa <[email protected]>
Build-Depends: debhelper-compat (= 13), dh-golang, golang-go
Standards-Version: 4.6.0.1
XS-Go-Import-Path: github.com/careyjames/DNS-Scout
XS-Go-Import-Path: github.com/careyjames/dns-scout

Package: dns-scout
Architecture: any
Expand Down
2 changes: 1 addition & 1 deletion debian/copyright
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
Upstream-Name: DNS Scout
Upstream-Contact: Carey James Balboa - Mac Help Nashville, Inc.
Source: https://github.com/careyjames/DNS-Scout/
Source: https://github.com/careyjames/dns-scout/

Files: *
Copyright: 2023 Carey James Balboa - Mac Help Nashville, Inc.
Expand Down
2 changes: 1 addition & 1 deletion dns-scout.metainfo.xml.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<project_license>MIT</project_license>
<name>DNS Scout</name>
<summary>DNS troubleshooting tool for email deliverability, checking SPF, DMARC, DKIM, and MX records. Compatible with multiple platforms.</summary>
<url type="homepage">https://github.com/careyjames/DNS-Scout/</url>
<url type="homepage">https://github.com/careyjames/dns-scout/</url>
<developer_name>Carey James Balboa - Mac Help Nashville, Inc.</developer_name>
<launchable type="desktop-id">dns-scout.desktop</launchable>
<keywords>
Expand Down
6 changes: 3 additions & 3 deletions dns_information/asn_info.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ import (
"net/http"
"strings"

"github.com/careyjames/DNS-Scout/color"
constants "github.com/careyjames/DNS-Scout/constant"
"github.com/careyjames/DNS-Scout/dto"
"github.com/careyjames/dns-scout/color"
constants "github.com/careyjames/dns-scout/constant"
"github.com/careyjames/dns-scout/dto"
)

func getURL() string {
Expand Down
4 changes: 2 additions & 2 deletions dns_information/dkim_info.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ package dnsinformation
import (
"fmt"

"github.com/careyjames/DNS-Scout/color"
constants "github.com/careyjames/DNS-Scout/constant"
"github.com/careyjames/dns-scout/color"
constants "github.com/careyjames/dns-scout/constant"
)

const (
Expand Down
4 changes: 2 additions & 2 deletions dns_information/dkim_info_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ import (
"strings"
"testing"

"github.com/careyjames/DNS-Scout/color"
constants "github.com/careyjames/DNS-Scout/constant"
"github.com/careyjames/dns-scout/color"
constants "github.com/careyjames/dns-scout/constant"
)

func TestHasDKIMRecord(t *testing.T) {
Expand Down
4 changes: 2 additions & 2 deletions dns_information/dmarc.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ import (
"fmt"
"strings"

"github.com/careyjames/DNS-Scout/color"
constants "github.com/careyjames/DNS-Scout/constant"
"github.com/careyjames/dns-scout/color"
constants "github.com/careyjames/dns-scout/constant"
)

const (
Expand Down
4 changes: 2 additions & 2 deletions dns_information/dmarc_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ import (
"strings"
"testing"

"github.com/careyjames/DNS-Scout/color"
constants "github.com/careyjames/DNS-Scout/constant"
"github.com/careyjames/dns-scout/color"
constants "github.com/careyjames/dns-scout/constant"
)

func TestHasDMARCRecord(t *testing.T) {
Expand Down
4 changes: 2 additions & 2 deletions dns_information/dns_txt.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ package dnsinformation
import (
"fmt"

"github.com/careyjames/DNS-Scout/color"
constants "github.com/careyjames/DNS-Scout/constant"
"github.com/careyjames/dns-scout/color"
constants "github.com/careyjames/dns-scout/constant"
"github.com/miekg/dns"
)

Expand Down
4 changes: 2 additions & 2 deletions dns_information/dns_txt_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ import (
"strings"
"testing"

"github.com/careyjames/DNS-Scout/color"
constants "github.com/careyjames/DNS-Scout/constant"
"github.com/careyjames/dns-scout/color"
constants "github.com/careyjames/dns-scout/constant"
)

func TestGetTXT(t *testing.T) {
Expand Down
4 changes: 2 additions & 2 deletions dns_information/ips.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ import (
"net"
"strings"

"github.com/careyjames/DNS-Scout/color"
constants "github.com/careyjames/DNS-Scout/constant"
"github.com/careyjames/dns-scout/color"
constants "github.com/careyjames/dns-scout/constant"
)

// IpsToStrings converts a slice of net.IP to a slice of string.
Expand Down
4 changes: 2 additions & 2 deletions dns_information/mx_info.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ import (
"fmt"
"strings"

"github.com/careyjames/DNS-Scout/color"
constants "github.com/careyjames/DNS-Scout/constant"
"github.com/careyjames/dns-scout/color"
constants "github.com/careyjames/dns-scout/constant"
"github.com/miekg/dns"
)

Expand Down
4 changes: 2 additions & 2 deletions dns_information/ns_info.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ import (
"fmt"
"strings"

"github.com/careyjames/DNS-Scout/color"
constants "github.com/careyjames/DNS-Scout/constant"
"github.com/careyjames/dns-scout/color"
constants "github.com/careyjames/dns-scout/constant"
"github.com/miekg/dns"
)

Expand Down
4 changes: 2 additions & 2 deletions dns_information/ns_info_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ import (
"strings"
"testing"

"github.com/careyjames/DNS-Scout/color"
constants "github.com/careyjames/DNS-Scout/constant"
"github.com/careyjames/dns-scout/color"
constants "github.com/careyjames/dns-scout/constant"
)

func TestGetNS(t *testing.T) {
Expand Down
4 changes: 2 additions & 2 deletions dns_information/ptr_info.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ import (
"net"
"strings"

"github.com/careyjames/DNS-Scout/color"
constants "github.com/careyjames/DNS-Scout/constant"
"github.com/careyjames/dns-scout/color"
constants "github.com/careyjames/dns-scout/constant"
)

// getPTR fetches the PTR records for a given domain.
Expand Down
4 changes: 2 additions & 2 deletions dns_information/registrar.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ package dnsinformation
import (
"fmt"

"github.com/careyjames/DNS-Scout/color"
constants "github.com/careyjames/DNS-Scout/constant"
"github.com/careyjames/dns-scout/color"
constants "github.com/careyjames/dns-scout/constant"
"github.com/likexian/whois"
whoisparser "github.com/likexian/whois-parser"
)
Expand Down
4 changes: 2 additions & 2 deletions dns_information/registrar_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ import (
"strings"
"testing"

"github.com/careyjames/DNS-Scout/color"
constants "github.com/careyjames/DNS-Scout/constant"
"github.com/careyjames/dns-scout/color"
constants "github.com/careyjames/dns-scout/constant"
)

func TestGetRegistrar(t *testing.T) {
Expand Down
4 changes: 2 additions & 2 deletions dns_information/spf_info.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ import (
"fmt"
"strings"

"github.com/careyjames/DNS-Scout/color"
constants "github.com/careyjames/DNS-Scout/constant"
"github.com/careyjames/dns-scout/color"
constants "github.com/careyjames/dns-scout/constant"
)

// getSPF fetches and analyzes the SPF record for a given domain.
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module github.com/careyjames/DNS-Scout
module github.com/careyjames/dns-scout

go 1.21

Expand Down
6 changes: 3 additions & 3 deletions main.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ import (
"os"
"time"

clients "github.com/careyjames/DNS-Scout/clients"
constants "github.com/careyjames/DNS-Scout/constant"
dnsinformation "github.com/careyjames/DNS-Scout/dns_information"
clients "github.com/careyjames/dns-scout/clients"
constants "github.com/careyjames/dns-scout/constant"
dnsinformation "github.com/careyjames/dns-scout/dns_information"
color "github.com/fatih/color"

"github.com/briandowns/spinner"
Expand Down
4 changes: 2 additions & 2 deletions package.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash

# Package the DNS-Scout directory into a tarball
tar --exclude='.git' --exclude='.gitignore' --exclude='.vscode' --exclude='.tmp-history' -czvf "DNS-Scout-v6.0.tar.gz" ./bin/
# Package the dns-scout directory into a tarball
tar --exclude='.git' --exclude='.gitignore' --exclude='.vscode' --exclude='.tmp-history' -czvf "dns-scout-v6.0.tar.gz" ./bin/
6 changes: 4 additions & 2 deletions snap/snapcraft.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ description: |
grade: stable
confinement: strict
type: app

base: core22
architectures:
Expand All @@ -17,8 +18,9 @@ build-snaps:
parts:
dns-scout:
plugin: go
source-type: git
source: https://github.com/careyjames/DNS-Scout.git
source: .
# source-type: git
# source: https://github.com/careyjames/dns-scout
apps:
dns-scout:
command: bin/dns-scout
Expand Down

0 comments on commit 64dfaae

Please sign in to comment.