forked from p15670423/monkey
UI: Fix missaligned items in propagation
This commit is contained in:
parent
df7e43d796
commit
51609e9491
|
@ -19,12 +19,41 @@ export default function UiSchema(props) {
|
||||||
vulnerability_classes: {
|
vulnerability_classes: {
|
||||||
classNames: 'config-template-no-header'
|
classNames: 'config-template-no-header'
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
options: {
|
||||||
|
http_ports: {
|
||||||
|
items: {
|
||||||
|
classNames: 'config-template-no-header'
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
network_scan: {
|
network_scan: {
|
||||||
targets: {
|
targets: {
|
||||||
info_box: {
|
info_box: {
|
||||||
'ui:field': InfoBox
|
'ui:field': InfoBox
|
||||||
|
},
|
||||||
|
blocked_ips: {
|
||||||
|
items: {
|
||||||
|
classNames: 'config-template-no-header'
|
||||||
|
}
|
||||||
|
},
|
||||||
|
inaccessible_subnets: {
|
||||||
|
items: {
|
||||||
|
classNames: 'config-template-no-header'
|
||||||
|
}
|
||||||
|
},
|
||||||
|
subnets: {
|
||||||
|
items: {
|
||||||
|
classNames: 'config-template-no-header'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
tcp: {
|
||||||
|
ports: {
|
||||||
|
items: {
|
||||||
|
classNames: 'config-template-no-header'
|
||||||
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
fingerprinters:{
|
fingerprinters:{
|
||||||
|
|
|
@ -17,7 +17,7 @@ export const scanTargetConfigurationSchema = {
|
||||||
'default': [],
|
'default': [],
|
||||||
'description': 'List of IPs that the monkey will not scan.'
|
'description': 'List of IPs that the monkey will not scan.'
|
||||||
},
|
},
|
||||||
'inaccessible_sbunets': {
|
'inaccessible_subnets': {
|
||||||
'title': 'Network segmentation testing',
|
'title': 'Network segmentation testing',
|
||||||
'type': 'array',
|
'type': 'array',
|
||||||
'uniqueItems': true,
|
'uniqueItems': true,
|
||||||
|
|
Loading…
Reference in New Issue