Projects STRLCPY GOAD Commits 0e2edf99
🤬
  • add data tag to allow tag filter without data missing issues

  • Loading...
  • Mayfly277 committed 2 years ago
    0e2edf99
    1 parent 10838443
  • ■ ■ ■ ■ ■
    .gitignore
    skipped 5 lines
    6 6  ansible/.venv/
    7 7  ansible/collections/
    8 8  ansible/test.yml
     9 +*VBoxHeadless*.log
    9 10   
  • ■ ■ ■ ■ ■ ■
    README.md
    skipped 294 lines
    295 295  - [X] Printerbug
    296 296  - [X] Drop the mic
    297 297  - [X] Shadow credentials
     298 +- [X] Mitm6
     299 +- [ ] Add Webdav
     300 +- [ ] Add Applocker
    298 301  - [ ] Add LAPS
    299  -- [ ] Add Applocker
    300 302  - [ ] Zone transfert
    301 303  - [ ] GPO abuse
    302  -- [ ] Mitm6
    303 304  - [ ] Wsus
    304 305  - [ ] Sccm
    305 306  - [ ] Exchange
    skipped 43 lines
    349 350  #### Play only an ansible part
    350 351  - only play shares of member_server.yml :
    351 352  ```
    352  -ansible-playbook member_server.yml --tags "shares"
     353 +ansible-playbook member_server.yml --tags "data,shares"
    353 354  ```
    354 355   
    355 356  #### Play only on some server
    skipped 108 lines
  • ■ ■ ■ ■ ■ ■
    ansible/ad-acl.yml
    skipped 2 lines
    3 3  - import_playbook: data.yml
    4 4   vars:
    5 5   data_path: "../ad/{{domain_name}}/data/"
     6 + tags: 'data'
     7 + 
    6 8  # set AD datas ==================================================================================================
    7 9   
    8 10  - name: ACL inside AD
    skipped 5 lines
  • ■ ■ ■ ■ ■
    ansible/ad-data.yml
    skipped 2 lines
    3 3  - import_playbook: data.yml
    4 4   vars:
    5 5   data_path: "../ad/{{domain_name}}/data/"
     6 + tags: 'data'
    6 7   
    7 8  # set AD datas ==================================================================================================
    8 9  - name: DCs AD data configuration
    skipped 22 lines
  • ■ ■ ■ ■ ■ ■
    ansible/ad-relations.yml
    skipped 2 lines
    3 3  - import_playbook: data.yml
    4 4   vars:
    5 5   data_path: "../ad/{{domain_name}}/data/"
     6 + tags: 'data'
     7 + 
    6 8  # set AD datas ==================================================================================================
    7 9   
    8 10  - name: "Adjust rights configuration"
    skipped 19 lines
  • ■ ■ ■ ■ ■
    ansible/ad-servers.yml
    skipped 2 lines
    3 3  - import_playbook: data.yml
    4 4   vars:
    5 5   data_path: "../ad/{{domain_name}}/data/"
     6 + tags: 'data'
    6 7   
    7 8  # set AD datas ==================================================================================================
    8 9   
    skipped 41 lines
  • ■ ■ ■ ■ ■
    ansible/ad-trusts.yml
    skipped 2 lines
    3 3  - import_playbook: data.yml
    4 4   vars:
    5 5   data_path: "../ad/{{domain_name}}/data/"
     6 + tags: 'data'
    6 7  # set AD trusts ==================================================================================================
    7 8   
    8 9  - name: Trusts configuration
    skipped 12 lines
  • ■ ■ ■ ■ ■
    ansible/adcs.yml
    skipped 2 lines
    3 3  - import_playbook: data.yml
    4 4   vars:
    5 5   data_path: "../ad/{{domain_name}}/data/"
     6 + tags: 'data'
    6 7  # set AD datas ==================================================================================================
    7 8   
    8 9  - name: ADCS
    skipped 20 lines
  • ■ ■ ■ ■ ■
    ansible/onlyusers.yml
    skipped 2 lines
    3 3  - import_playbook: data.yml
    4 4   vars:
    5 5   data_path: "../ad/{{domain_name}}/data/"
     6 + tags: 'data'
    6 7   
    7 8  # set AD datas ==================================================================================================
    8 9  - name: DCs AD data configuration
    skipped 13 lines
  • ■ ■ ■ ■ ■
    ansible/security.yml
    skipped 2 lines
    3 3  - import_playbook: data.yml
    4 4   vars:
    5 5   data_path: "../ad/{{domain_name}}/data/"
     6 + tags: 'data'
    6 7   
    7 8  - name: "Setup enable defender"
    8 9   hosts: dc01,dc02,dc03,srv01,srv03
    skipped 11 lines
  • ■ ■ ■ ■ ■
    ansible/servers.yml
    skipped 2 lines
    3 3  - import_playbook: data.yml
    4 4   vars:
    5 5   data_path: "../ad/{{domain_name}}/data/"
     6 + tags: 'data'
    6 7   
    7 8  - name: "Install IIS"
    8 9   hosts: srv02
    skipped 4 lines
    13 14   hosts: srv02, srv03
    14 15   roles:
    15 16   - { role: 'mssql', tags: 'mssql'}
    16  - - { role: 'mssql_link', tags: 'mssql'}
     17 + - { role: 'mssql_link', tags: 'mssql, mssql_link'}
    17 18   vars:
    18 19   domain: "{{lab.hosts[dict_key].domain}}"
    19 20   SQLSVCACCOUNT_NAME: "{{lab.hosts[dict_key].mssql.svcaccount}}"
    skipped 12 lines
Please wait...
Page is in error, reload to recover