Skip to content

Commit

Permalink
Add simple authenticated scan config (#1792)
Browse files Browse the repository at this point in the history
  • Loading branch information
jjnicola authored Dec 18, 2024
1 parent 1fd64a2 commit a9e3aad
Showing 1 changed file with 78 additions and 0 deletions.
78 changes: 78 additions & 0 deletions rust/examples/openvasd/simple_auth_ssh_scan.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,78 @@
{
"target": {
"hosts": [
"localhost"
],
"ports": [
{
"protocol": "tcp",
"range": [
{
"start": 22,
"end": 22
}
]
},
{
"protocol": "tcp",
"range": [
{
"start": 80,
"end": 80
}
]
},
{
"protocol": "tcp",
"range": [
{
"start": 443,
"end": 443
}
]
}
],
"alive_test_methods": [
"icmp"
],
"credentials": [
{
"service": "ssh",
"port": 22,
"up": {
"username": "username",
"password": "password"
}
}
]
},
"vts": [
{
"oid": "1.3.6.1.4.1.25623.1.0.90022"
},
{
"oid": "1.3.6.1.4.1.25623.1.0.900498"
},
{
"oid": "1.3.6.1.4.1.25623.1.0.103739"
},
{
"oid": "1.3.6.1.4.1.25623.1.0.12288"
},
{
"oid": "1.3.6.1.4.1.25623.1.0.50282"
},
{
"oid": "1.3.6.1.4.1.25623.1.0.103997"
},
{
"oid": "1.3.6.1.4.1.25623.1.0.103739"
},
{
"oid": "1.3.6.1.4.1.25623.1.0.108449"
},
{
"oid": "1.3.6.1.4.1.25623.1.0.105782"
}
]
}

0 comments on commit a9e3aad

Please sign in to comment.