mirror of
https://github.com/jayateertha043/goshod.git
synced 2026-07-22 20:41:03 +00:00
Compare commits
16 commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
4285b83496 | ||
|
|
5a025b610a | ||
|
|
504a6b83ed | ||
|
|
a40eca7bc7 | ||
|
|
c783084fa4 | ||
|
|
bfa0ab68c4 | ||
|
|
dac8e5bf25 | ||
|
|
5eff4dc453 | ||
|
|
07f5c7dfa8 | ||
|
|
2ce821c8b9 | ||
|
|
1644d39957 | ||
|
|
1770855360 | ||
|
|
160cc6eac0 | ||
|
|
291e3ae81f | ||
|
|
8e5d2adcdc | ||
|
|
bc7eba9da0 |
5 changed files with 57 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)
|
fmt.Println(banner)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
21
LICENSE
Normal file
21
LICENSE
Normal file
|
|
@ -0,0 +1,21 @@
|
||||||
|
MIT License
|
||||||
|
|
||||||
|
Copyright (c) 2022 Jayateertha Guruprasad
|
||||||
|
|
||||||
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||||
|
of this software and associated documentation files (the "Software"), to deal
|
||||||
|
in the Software without restriction, including without limitation the rights
|
||||||
|
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||||
|
copies of the Software, and to permit persons to whom the Software is
|
||||||
|
furnished to do so, subject to the following conditions:
|
||||||
|
|
||||||
|
The above copyright notice and this permission notice shall be included in all
|
||||||
|
copies or substantial portions of the Software.
|
||||||
|
|
||||||
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||||
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||||
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||||
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||||
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||||
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||||
|
SOFTWARE.
|
||||||
|
|
@ -28,7 +28,7 @@ Run GoShoD:
|
||||||
|
|
||||||
## USAGE:
|
## USAGE:
|
||||||
|
|
||||||
<img src="./GoShod.gif"/>
|
<img src="./GoShod.gif"/>
|
||||||
|
|
||||||
Configure Shodan API:
|
Configure Shodan API:
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -123,6 +123,8 @@ const app = new Vue({
|
||||||
},
|
},
|
||||||
nextPage(){
|
nextPage(){
|
||||||
if(this.curPage<this.maxPage){
|
if(this.curPage<this.maxPage){
|
||||||
|
this.showLoading = true;
|
||||||
|
this.host_result={matches:[]}
|
||||||
this.curPage++;
|
this.curPage++;
|
||||||
var params = new URLSearchParams();
|
var params = new URLSearchParams();
|
||||||
params.append("search",this.search);
|
params.append("search",this.search);
|
||||||
|
|
@ -153,6 +155,8 @@ const app = new Vue({
|
||||||
},
|
},
|
||||||
prevPage(){
|
prevPage(){
|
||||||
if(this.curPage>this.minPage){
|
if(this.curPage>this.minPage){
|
||||||
|
this.showLoading = true;
|
||||||
|
this.host_result={matches:[]}
|
||||||
this.curPage--;
|
this.curPage--;
|
||||||
var params = new URLSearchParams();
|
var params = new URLSearchParams();
|
||||||
params.append("search",this.search);
|
params.append("search",this.search);
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue