Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
sp_nuclei_test
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Trust and Identity Incubator
sp_nuclei_test
Commits
d3ce889c
Commit
d3ce889c
authored
1 year ago
by
Pavel Břoušek
Browse files
Options
Downloads
Patches
Plain Diff
docs: docker instructions
parent
427572e5
Branches
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
README.md
+34
-4
34 additions, 4 deletions
README.md
with
34 additions
and
4 deletions
README.md
+
34
−
4
View file @
d3ce889c
...
@@ -5,10 +5,33 @@ for testing SAML service providers.
...
@@ -5,10 +5,33 @@ for testing SAML service providers.
## Requirements
## Requirements
1.
install newest version of
[
Go
](
https://go.dev/doc/install
)
### nuclei
2.
install
[
nuclei
](
https://docs.projectdiscovery.io/tools/nuclei/install
)
3.
set up the conformance IdP
You can run nuclei in multiple ways. The most common ones are directly on your machine (using go) or inside a docker container.
4.
connect SPs to the conformance IdP (exchange metadata)
#### go
Install newest version of
[
Go
](
https://go.dev/doc/install
)
. The version included in your Linux distribution might not be current enough.
Then install
[
nuclei
](
https://docs.projectdiscovery.io/tools/nuclei/install
)
.
You will run nuclei simply by calling
`nuclei`
(see below).
#### docker
Install
[
docker
](
https://docs.docker.com/engine/install/
)
and make sure that you can call
`docker`
in your terminal.
You will run nuclei by executing:
```
sh
docker run
--rm
-v
./:/app/ projectdiscovery/nuclei
# ...
```
### conformance IdP
You need to setup a conformance IdP, with a module developed for SAML signature validation testing.
Then you need to connect SPs to the conformance IdP (exchange metadata), so that regular SAML authentication works.
## Usage
## Usage
...
@@ -19,6 +42,13 @@ nuclei -u ACS_URL_HERE -V "ENTITY_ID=ENTITY_ID_HERE" \
...
@@ -19,6 +42,13 @@ nuclei -u ACS_URL_HERE -V "ENTITY_ID=ENTITY_ID_HERE" \
-duc
-ms
-t
nuclei-templates/
-nmhe
-lna
-dka
30
-dt
30
-duc
-ms
-t
nuclei-templates/
-nmhe
-lna
-dka
30
-dt
30
```
```
or using docker:
```
sh
docker run
--rm
-v
./:/app/ projectdiscovery/nuclei
-u
ACS_URL_HERE
-V
"ENTITY_ID=ENTITY_ID_HERE"
\
-duc
-ms
-t
/app/nuclei-templates/
-nmhe
-lna
-dka
30
-dt
30
```
where
where
*
`ACS_URL_HERE`
is the assertion consumer service endpoint URL
*
`ACS_URL_HERE`
is the assertion consumer service endpoint URL
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment