Compare commits

...

16 commits
v1.0.0 ... main

Author SHA1 Message Date
jayateertha043
4285b83496 fixed page loading 2022-05-30 12:42:40 +05:30
Jayateertha Guruprasad
5a025b610a
Delete goreleaser.yml 2022-05-17 23:20:05 +05:30
Jayateertha Guruprasad
504a6b83ed
Update release.yml 2022-05-17 23:16:24 +05:30
Jayateertha Guruprasad
a40eca7bc7
Update release.yml 2022-05-17 23:07:00 +05:30
Jayateertha Guruprasad
c783084fa4
Rename .goreleaser.yml to goreleaser.yml 2022-05-17 23:04:56 +05:30
Jayateertha Guruprasad
bfa0ab68c4
Update release.yml 2022-05-17 23:03:33 +05:30
Jayateertha Guruprasad
dac8e5bf25
Update .goreleaser.yml 2022-05-17 23:03:02 +05:30
Jayateertha Guruprasad
5eff4dc453
Update release.yml 2022-05-17 23:01:46 +05:30
jayateertha043
07f5c7dfa8 test release 2022-05-17 22:55:41 +05:30
Jayateertha Guruprasad
2ce821c8b9
Create .goreleaser.yml 2022-05-17 22:54:44 +05:30
Jayateertha Guruprasad
1644d39957
Update release.yml 2022-05-17 22:53:03 +05:30
jayateertha043
1770855360 added 2022-05-17 22:36:17 +05:30
Jayateertha Guruprasad
160cc6eac0
Update release.yml 2022-05-17 22:31:48 +05:30
Jayateertha Guruprasad
291e3ae81f
Update release.yml 2022-05-17 22:26:20 +05:30
Jayateertha Guruprasad
8e5d2adcdc
release yaml initial 2022-05-17 22:25:23 +05:30
Jayateertha Guruprasad
bc7eba9da0
added license 2022-05-17 22:14:16 +05:30
5 changed files with 57 additions and 1 deletions

30
.github/workflows/release.yml vendored Normal file
View 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 }}

View file

@ -159,3 +159,4 @@ func printbanner() {
`
fmt.Println(banner)
}

21
LICENSE Normal file
View 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.

View file

@ -28,7 +28,7 @@ Run GoShoD:
## USAGE:
<img src="./GoShod.gif"/>
<img src="./GoShod.gif"/>
Configure Shodan API:

View file

@ -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);