mirror of
https://github.com/jayateertha043/goshod.git
synced 2026-07-22 04:21:02 +00:00
Compare commits
No commits in common. "main" and "v1.0.0" have entirely different histories.
5 changed files with 1 additions and 57 deletions
30
.github/workflows/release.yml
vendored
30
.github/workflows/release.yml
vendored
|
|
@ -1,30 +0,0 @@
|
|||
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,4 +159,3 @@ func printbanner() {
|
|||
`
|
||||
fmt.Println(banner)
|
||||
}
|
||||
|
||||
|
|
|
|||
21
LICENSE
21
LICENSE
|
|
@ -1,21 +0,0 @@
|
|||
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:
|
||||
|
||||
<img src="./GoShod.gif"/>
|
||||
<img src="./GoShod.gif"/>
|
||||
|
||||
Configure Shodan API:
|
||||
|
||||
|
|
|
|||
|
|
@ -123,8 +123,6 @@ 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);
|
||||
|
|
@ -155,8 +153,6 @@ 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