Skip to content

Commit

Permalink
version 3.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
zan8in committed Feb 18, 2024
1 parent 672d752 commit ae5f64c
Show file tree
Hide file tree
Showing 1,462 changed files with 100 additions and 100 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,6 @@ jobs:
with:
args: "release --rm-dist"
version: latest
workdir: v3/
workdir: /
env:
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
File renamed without changes.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<h4 align="center">A Security Tool for Bug Bounty, Pentest and Red Teaming</h4>

<p align="center">
<img src="https://img.shields.io/github/go-mod/go-version/zan8in/afrog/v3?filename=go.mod">
<img src="https://img.shields.io/github/go-mod/go-version/zan8in/afrog?filename=go.mod">
<a href="https://github.com/zan8in/afrog/releases"><img src="https://img.shields.io/github/downloads/zan8in/afrog/total">
<a href="https://github.com/zan8in/afrog/graphs/contributors"><img src="https://img.shields.io/github/contributors-anon/zan8in/afrog">
<a href="https://github.com/zan8in/afrog/releases/"><img src="https://img.shields.io/github/release/zan8in/afrog">
Expand Down Expand Up @@ -460,7 +460,7 @@ $ ./afrog -h

**Go**
```sh
$ go install -v github.com/zan8in/afrog/v3/cmd/afrog@latest
$ go install -v github.com/zan8in/afrog/cmd/afrog@latest
```

## Running afrog
Expand Down Expand Up @@ -585,7 +585,7 @@ package main
import (
"fmt"
"github.com/zan8in/afrog/v3"
"github.com/zan8in/afrog"
)
func main() {
Expand Down
8 changes: 4 additions & 4 deletions v3/afrog.go → afrog.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@ import (
"sync/atomic"
"time"

"github.com/zan8in/afrog/v3/pkg/config"
"github.com/zan8in/afrog/v3/pkg/result"
"github.com/zan8in/afrog/v3/pkg/runner"
"github.com/zan8in/afrog/v3/pkg/utils"
"github.com/zan8in/afrog/pkg/config"
"github.com/zan8in/afrog/pkg/result"
"github.com/zan8in/afrog/pkg/runner"
"github.com/zan8in/afrog/pkg/utils"
"github.com/zan8in/goflags"
"github.com/zan8in/gologger"
)
Expand Down
12 changes: 6 additions & 6 deletions v3/cmd/afrog/main.go → cmd/afrog/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,12 @@ import (

_ "net/http/pprof"

"github.com/zan8in/afrog/v3/pkg/config"
"github.com/zan8in/afrog/v3/pkg/db/sqlite"
"github.com/zan8in/afrog/v3/pkg/progress"
"github.com/zan8in/afrog/v3/pkg/result"
"github.com/zan8in/afrog/v3/pkg/runner"
"github.com/zan8in/afrog/v3/pkg/utils"
"github.com/zan8in/afrog/pkg/config"
"github.com/zan8in/afrog/pkg/db/sqlite"
"github.com/zan8in/afrog/pkg/progress"
"github.com/zan8in/afrog/pkg/result"
"github.com/zan8in/afrog/pkg/runner"
"github.com/zan8in/afrog/pkg/utils"
"github.com/zan8in/gologger"
)

Expand Down
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package main
import (
"fmt"

"github.com/zan8in/afrog/v3"
"github.com/zan8in/afrog"
)

func main() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package main
import (
"fmt"

"github.com/zan8in/afrog/v3"
"github.com/zan8in/afrog"
)

func main() {
Expand Down
2 changes: 1 addition & 1 deletion v3/go.mod → go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module github.com/zan8in/afrog/v3
module github.com/zan8in/afrog

go 1.20

Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
4 changes: 2 additions & 2 deletions v3/pkg/config/afrogupdate.go → pkg/config/afrogupdate.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ import (
"strings"

"github.com/cavaliergopher/grab/v3"
"github.com/zan8in/afrog/v3/pkg/poc"
"github.com/zan8in/afrog/v3/pkg/utils"
"github.com/zan8in/afrog/pkg/poc"
"github.com/zan8in/afrog/pkg/utils"
"github.com/zan8in/gologger"
)

Expand Down
4 changes: 2 additions & 2 deletions v3/pkg/config/banner.go → pkg/config/banner.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ import (
"fmt"
"time"

"github.com/zan8in/afrog/v3/pkg/log"
"github.com/zan8in/afrog/v3/pkg/utils"
"github.com/zan8in/afrog/pkg/log"
"github.com/zan8in/afrog/pkg/utils"
"github.com/zan8in/gologger"
)

Expand Down
2 changes: 1 addition & 1 deletion v3/pkg/config/config.go → pkg/config/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"path/filepath"

"github.com/pkg/errors"
"github.com/zan8in/afrog/v3/pkg/utils"
"github.com/zan8in/afrog/pkg/utils"
"gopkg.in/yaml.v2"
)

Expand Down
14 changes: 7 additions & 7 deletions v3/pkg/config/options.go → pkg/config/options.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@ import (
"strings"
"sync"

"github.com/zan8in/afrog/v3/pkg/log"
"github.com/zan8in/afrog/v3/pkg/output"
"github.com/zan8in/afrog/v3/pkg/poc"
"github.com/zan8in/afrog/v3/pkg/utils"
"github.com/zan8in/afrog/v3/pkg/webhook/dingtalk"
"github.com/zan8in/afrog/v3/pocs"
"github.com/zan8in/afrog/v3/web"
"github.com/zan8in/afrog/pkg/log"
"github.com/zan8in/afrog/pkg/output"
"github.com/zan8in/afrog/pkg/poc"
"github.com/zan8in/afrog/pkg/utils"
"github.com/zan8in/afrog/pkg/webhook/dingtalk"
"github.com/zan8in/afrog/pocs"
"github.com/zan8in/afrog/web"
"github.com/zan8in/goflags"
"github.com/zan8in/gologger"
fileutil "github.com/zan8in/pins/file"
Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"fmt"
"strings"

"github.com/zan8in/afrog/v3/pkg/config"
"github.com/zan8in/afrog/pkg/config"
"github.com/zan8in/gologger"
zoom_eyes "github.com/zan8in/zoomeye/pkg/runner"
)
Expand Down
4 changes: 2 additions & 2 deletions v3/pkg/db/db.go → pkg/db/db.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ import (
"path/filepath"
"time"

"github.com/zan8in/afrog/v3/pkg/poc"
"github.com/zan8in/afrog/v3/pkg/utils"
"github.com/zan8in/afrog/pkg/poc"
"github.com/zan8in/afrog/pkg/utils"
"gopkg.in/yaml.v2"
)

Expand Down
2 changes: 1 addition & 1 deletion v3/pkg/db/sqlite/cmd/main.go → pkg/db/sqlite/cmd/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"html/template"
"net/http"

"github.com/zan8in/afrog/v3/pkg/db/sqlite"
"github.com/zan8in/afrog/pkg/db/sqlite"
)

func main() {
Expand Down
6 changes: 3 additions & 3 deletions v3/pkg/db/sqlite/sqlitex.go → pkg/db/sqlite/sqlitex.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ import (

"github.com/jmoiron/sqlx"
_ "github.com/logoove/sqlite"
db2 "github.com/zan8in/afrog/v3/pkg/db"
"github.com/zan8in/afrog/v3/pkg/poc"
"github.com/zan8in/afrog/v3/pkg/result"
db2 "github.com/zan8in/afrog/pkg/db"
"github.com/zan8in/afrog/pkg/poc"
"github.com/zan8in/afrog/pkg/result"
"github.com/zan8in/gologger"
randutil "github.com/zan8in/pins/rand"
)
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion v3/pkg/log/color.go → pkg/log/color.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"strings"

"github.com/gookit/color"
"github.com/zan8in/afrog/v3/pkg/utils"
"github.com/zan8in/afrog/pkg/utils"
)

type Color struct {
Expand Down
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion v3/pkg/poc/poc.go → pkg/poc/poc.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"path/filepath"
"strings"

"github.com/zan8in/afrog/v3/pkg/utils"
"github.com/zan8in/afrog/pkg/utils"
"gopkg.in/yaml.v2"
)

Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package gox
import (
"fmt"

"github.com/zan8in/afrog/v3/pkg/protocols/netxclient"
"github.com/zan8in/afrog/pkg/protocols/netxclient"
"github.com/zan8in/pins/netx"
urlutil "github.com/zan8in/pins/url"
)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import (
"strings"
"time"

"github.com/zan8in/afrog/v3/pkg/protocols/http/retryhttpclient"
"github.com/zan8in/afrog/pkg/protocols/http/retryhttpclient"
)

type WFS_Capabilities struct {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import (
"fmt"
"strings"

"github.com/zan8in/afrog/v3/pkg/protocols/netxclient"
"github.com/zan8in/afrog/pkg/protocols/netxclient"
"github.com/zan8in/pins/netx"
urlutil "github.com/zan8in/pins/url"
)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package gox
import (
"fmt"

"github.com/zan8in/afrog/v3/pkg/protocols/netxclient"
"github.com/zan8in/afrog/pkg/protocols/netxclient"
"github.com/zan8in/pins/netx"

urlutil "github.com/zan8in/pins/url"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ import (
"time"

"github.com/remeh/sizedwaitgroup"
"github.com/zan8in/afrog/v3/pkg/protocols/http/retryhttpclient"
"github.com/zan8in/afrog/v3/pkg/utils"
"github.com/zan8in/afrog/pkg/protocols/http/retryhttpclient"
"github.com/zan8in/afrog/pkg/utils"
"github.com/zan8in/gologger"
iputil "github.com/zan8in/pins/ip"
urlutil "github.com/zan8in/pins/url"
Expand Down
4 changes: 2 additions & 2 deletions v3/pkg/protocols/gox/demo.go → pkg/protocols/gox/demo.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ import (
"net/http"
"strings"

"github.com/zan8in/afrog/v3/pkg/protocols/http/retryhttpclient"
"github.com/zan8in/afrog/v3/pkg/utils"
"github.com/zan8in/afrog/pkg/protocols/http/retryhttpclient"
"github.com/zan8in/afrog/pkg/utils"
"github.com/zan8in/retryablehttp"
)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ import (
"strings"
"time"

"github.com/zan8in/afrog/v3/pkg/protocols/http/retryhttpclient"
"github.com/zan8in/afrog/v3/pkg/utils"
"github.com/zan8in/afrog/pkg/protocols/http/retryhttpclient"
"github.com/zan8in/afrog/pkg/utils"
randutil "github.com/zan8in/pins/rand"
"github.com/zan8in/retryablehttp"
)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"bytes"
"fmt"

"github.com/zan8in/afrog/v3/pkg/protocols/netxclient"
"github.com/zan8in/afrog/pkg/protocols/netxclient"
"github.com/zan8in/pins/netx"

urlutil "github.com/zan8in/pins/url"
Expand Down
2 changes: 1 addition & 1 deletion v3/pkg/protocols/gox/gox.go → pkg/protocols/gox/gox.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"fmt"
"reflect"

"github.com/zan8in/afrog/v3/pkg/proto"
"github.com/zan8in/afrog/pkg/proto"
"github.com/zan8in/gologger"
)

Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ import (
"strings"
"time"

"github.com/zan8in/afrog/v3/pkg/poc"
"github.com/zan8in/afrog/v3/pkg/proto"
"github.com/zan8in/afrog/v3/pkg/utils"
"github.com/zan8in/afrog/pkg/poc"
"github.com/zan8in/afrog/pkg/proto"
"github.com/zan8in/afrog/pkg/utils"
"github.com/zan8in/retryablehttp"
"golang.org/x/net/context"
)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"strings"
"time"

"github.com/zan8in/afrog/v3/pkg/proto"
"github.com/zan8in/afrog/pkg/proto"
"github.com/zan8in/pins/netx"
)

Expand Down
4 changes: 2 additions & 2 deletions v3/pkg/protocols/raw/http.go → pkg/protocols/raw/http.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ import (
"strings"
"time"

"github.com/zan8in/afrog/v3/pkg/proto"
"github.com/zan8in/afrog/v3/pkg/protocols/http/retryhttpclient"
"github.com/zan8in/afrog/pkg/proto"
"github.com/zan8in/afrog/pkg/protocols/http/retryhttpclient"
"github.com/zan8in/rawhttp"
)

Expand Down
File renamed without changes.
File renamed without changes.
4 changes: 2 additions & 2 deletions v3/pkg/report/cmd/main.go → pkg/report/cmd/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ package main
import (
"log"

"github.com/zan8in/afrog/v3/pkg/report"
"github.com/zan8in/afrog/v3/pkg/result"
"github.com/zan8in/afrog/pkg/report"
"github.com/zan8in/afrog/pkg/result"
)

func main() {
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion v3/pkg/report/json.go → pkg/report/json.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import (
"sync"
"time"

"github.com/zan8in/afrog/v3/pkg/result"
"github.com/zan8in/afrog/pkg/result"
fileutil "github.com/zan8in/pins/file"
timeutil "github.com/zan8in/pins/time"
)
Expand Down
2 changes: 1 addition & 1 deletion v3/pkg/report/report.go → pkg/report/report.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import (
"sync"
"time"

"github.com/zan8in/afrog/v3/pkg/result"
"github.com/zan8in/afrog/pkg/result"
fileutil "github.com/zan8in/pins/file"
timeutil "github.com/zan8in/pins/time"
)
Expand Down
8 changes: 4 additions & 4 deletions v3/pkg/result/result.go → pkg/result/result.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@ import (
"strconv"
"strings"

"github.com/zan8in/afrog/v3/pkg/log"
"github.com/zan8in/afrog/v3/pkg/poc"
"github.com/zan8in/afrog/v3/pkg/proto"
"github.com/zan8in/afrog/v3/pkg/utils"
"github.com/zan8in/afrog/pkg/log"
"github.com/zan8in/afrog/pkg/poc"
"github.com/zan8in/afrog/pkg/proto"
"github.com/zan8in/afrog/pkg/utils"
"github.com/zan8in/gologger"
"gopkg.in/yaml.v2"
)
Expand Down
2 changes: 1 addition & 1 deletion v3/pkg/runner/cel.go → pkg/runner/cel.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import (
"github.com/google/cel-go/common/types"
"github.com/google/cel-go/common/types/ref"
"github.com/google/cel-go/interpreter/functions"
"github.com/zan8in/afrog/v3/pkg/log"
"github.com/zan8in/afrog/pkg/log"
exprpb "google.golang.org/genproto/googleapis/api/expr/v1alpha1"
"gopkg.in/yaml.v2"
)
Expand Down
2 changes: 1 addition & 1 deletion v3/pkg/runner/celcompile.go → pkg/runner/celcompile.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"github.com/google/cel-go/cel"
"github.com/google/cel-go/checker/decls"
"github.com/google/cel-go/common/types/ref"
"github.com/zan8in/afrog/v3/pkg/proto"
"github.com/zan8in/afrog/pkg/proto"
exprpb "google.golang.org/genproto/googleapis/api/expr/v1alpha1"
)

Expand Down
Loading

0 comments on commit ae5f64c

Please sign in to comment.