mirror of
https://github.com/jayateertha043/goshod.git
synced 2026-07-22 04:21:02 +00:00
Compare commits
15 commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
4285b83496 | ||
|
|
5a025b610a | ||
|
|
504a6b83ed | ||
|
|
a40eca7bc7 | ||
|
|
c783084fa4 | ||
|
|
bfa0ab68c4 | ||
|
|
dac8e5bf25 | ||
|
|
5eff4dc453 | ||
|
|
07f5c7dfa8 | ||
|
|
2ce821c8b9 | ||
|
|
1644d39957 | ||
|
|
1770855360 | ||
|
|
160cc6eac0 | ||
|
|
291e3ae81f | ||
|
|
8e5d2adcdc |
4 changed files with 36 additions and 1 deletions
30
.github/workflows/release.yml
vendored
Normal file
30
.github/workflows/release.yml
vendored
Normal file
|
|
@ -0,0 +1,30 @@
|
|||
name: goreleaser
|
||||
|
||||
on:
|
||||
pull_request:
|
||||
push:
|
||||
|
||||
jobs:
|
||||
goreleaser:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
-
|
||||
name: Checkout
|
||||
uses: actions/checkout@v2
|
||||
with:
|
||||
fetch-depth: 0
|
||||
-
|
||||
name: Set up Go
|
||||
uses: actions/setup-go@v2
|
||||
-
|
||||
name: Run GoReleaser
|
||||
uses: goreleaser/goreleaser-action@v2
|
||||
with:
|
||||
# either 'goreleaser' (default) or 'goreleaser-pro'
|
||||
distribution: goreleaser
|
||||
version: latest
|
||||
args: release --rm-dist
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
# Your GoReleaser Pro key, if you are using the 'goreleaser-pro' distribution
|
||||
# GORELEASER_KEY: ${{ secrets.GORELEASER_KEY }}
|
||||
|
|
@ -159,3 +159,4 @@ func printbanner() {
|
|||
`
|
||||
fmt.Println(banner)
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -28,7 +28,7 @@ Run GoShoD:
|
|||
|
||||
## USAGE:
|
||||
|
||||
<img src="./GoShod.gif"/>
|
||||
<img src="./GoShod.gif"/>
|
||||
|
||||
Configure Shodan API:
|
||||
|
||||
|
|
|
|||
|
|
@ -123,6 +123,8 @@ const app = new Vue({
|
|||
},
|
||||
nextPage(){
|
||||
if(this.curPage<this.maxPage){
|
||||
this.showLoading = true;
|
||||
this.host_result={matches:[]}
|
||||
this.curPage++;
|
||||
var params = new URLSearchParams();
|
||||
params.append("search",this.search);
|
||||
|
|
@ -153,6 +155,8 @@ const app = new Vue({
|
|||
},
|
||||
prevPage(){
|
||||
if(this.curPage>this.minPage){
|
||||
this.showLoading = true;
|
||||
this.host_result={matches:[]}
|
||||
this.curPage--;
|
||||
var params = new URLSearchParams();
|
||||
params.append("search",this.search);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue