-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' of https://github.com/ninoseki/shimon
- Loading branch information
Showing
6 changed files
with
118 additions
and
5 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,75 @@ | ||
<template> | ||
<div class="box content is-normal"> | ||
<h4 class="is-size-4"> | ||
<span class="icon"> | ||
<img src="https://www.google.com/s2/favicons?domain=fofa.info" alt="fofa" /> | ||
</span> | ||
Fofa | ||
</h4> | ||
<QueryTags :queries="queries"></QueryTags> | ||
</div> | ||
</template> | ||
|
||
<script lang="ts"> | ||
import { Base64 } from "js-base64" | ||
import * as qs from "qs" | ||
import { computed, defineComponent, type PropType } from "vue" | ||
import QueryTags from "@/components/services/QueryTags.vue" | ||
import type { Fingerprint, Query } from "@/types" | ||
export default defineComponent({ | ||
name: "FofaComponent", | ||
props: { | ||
fingerprint: { | ||
type: Object as PropType<Fingerprint>, | ||
required: true | ||
} | ||
}, | ||
components: { QueryTags }, | ||
setup(props) { | ||
const base64fy = (s: string) => { | ||
return Base64.encode(s).trim() | ||
} | ||
const createLink = (q: string): string => { | ||
const baseUrl = "https://en.fofa.info/result?" | ||
const qbase64 = base64fy(q) | ||
const params = { qbase64 } | ||
return baseUrl + qs.stringify(params) | ||
} | ||
const queries = computed<Query[]>(() => { | ||
const q: Query[] = [ | ||
{ | ||
key: "Title", | ||
query: `title="${props.fingerprint.html.title}"`, | ||
link: createLink(`title="${props.fingerprint.html.title}"`) | ||
} | ||
] | ||
if (props.fingerprint.favicon) { | ||
const query = `icon_hash="${props.fingerprint.favicon?.mmh3}"` | ||
q.push({ | ||
key: "Favicon", | ||
query: query, | ||
link: createLink(query) | ||
}) | ||
} | ||
if (props.fingerprint.tls) { | ||
const query = `jarm="${props.fingerprint.tls.jarm}"` | ||
q.push({ | ||
key: "JARM", | ||
query: query, | ||
link: createLink(query) | ||
}) | ||
} | ||
return q | ||
}) | ||
return { queries } | ||
} | ||
}) | ||
</script> |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters