mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-05-05 05:47:10 -04:00
fix: ignoring sonar alert
Html Output of Option43 Generator is safe And default ip(s) value is not a sensitive exposure
This commit is contained in:
parent
5442a88318
commit
5c9333bcf9
1 changed files with 2 additions and 2 deletions
|
@ -27,7 +27,7 @@ const wifiVendorOptions = [
|
|||
|
||||
const dhcpVendor = useStorage('option43-generator:dhcp', 'genuine');
|
||||
const wifiVendor = useStorage('option43-generator:wifi', 'cisco_01');
|
||||
const ipAdresses = ref('192.168.0.15');
|
||||
const ipAdresses = ref('192.168.0.15'); // NOSONAR
|
||||
|
||||
const option43Infos = computed(() => getOption43Infos(ipAdresses.value, wifiVendor.value, dhcpVendor.value));
|
||||
</script>
|
||||
|
@ -71,7 +71,7 @@ const option43Infos = computed(() => getOption43Infos(ipAdresses.value, wifiVend
|
|||
</c-card>
|
||||
|
||||
<c-card title="Option 43 Result">
|
||||
<div v-html="option43Infos" />
|
||||
<!-- //NOSONAR --><div v-html="option43Infos" />
|
||||
</c-card>
|
||||
</div>
|
||||
</template>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue