How to enable Cortex analyzers - Virtual Lab Building Series: Ep12

แชร์
ฝัง
  • เผยแพร่เมื่อ 6 พ.ย. 2024

ความคิดเห็น • 32

  • @zyx3950
    @zyx3950 ปีที่แล้ว +8

    This series of videos is really good. When will the next episode be updated? EP13 EP13!!!

  • @aviwemusa6109
    @aviwemusa6109 ปีที่แล้ว +2

    Keep them coming, at least once a week please.

  • @calderonemusic
    @calderonemusic ปีที่แล้ว +2

    Are you still planning to make that Wazuh integration mentioned in earlier videos? :)

  • @aviwemusa6109
    @aviwemusa6109 ปีที่แล้ว +1

    Hi, when are you planning to finish up this home lab?

  • @henryanda425
    @henryanda425 29 วันที่ผ่านมา

    Hi! thank you for this video it was really helpful, but I got stocked at some point after everything the container refused to load setting the thehive to latest version meanwhile changing the version to 5.2 it load up but both cortex and misp refused to authenticate see attached

  • @leonardolvm
    @leonardolvm หลายเดือนก่อน

    How do you enable Analyzers and Responders to appear in Cortex? This step-by-step guide is not shown in the videos, they are already enabled on your screen. In my configuration they do not appear

  • @azizihack6593
    @azizihack6593 ปีที่แล้ว

    Waiting for EP 13, please..

  • @targetbroadcast7708
    @targetbroadcast7708 ปีที่แล้ว +2

    the mapped volume for application.conf is actually creating a folder instead of a file, would you be able to share the application.conf for cortex you have used on your github ?

    • @ls111cyberEd
      @ls111cyberEd  ปีที่แล้ว

      Thanks for watching, in this video I did not supply my own application.conf file, however, the issue you describe is a known docker issue, if the file on the host does not exist it will create a directory, so you will need to make sure you manually create the application.conf file in that location before you run docker-compose, hopefully this helps.

    • @ican6401
      @ican6401 ปีที่แล้ว +1

      @@ls111cyberEd yes I also realised this, nevertheless, creating the application.conf file manually fix this.

    • @ican6401
      @ican6401 ปีที่แล้ว

      I am having issues with the MISSP endpoint after updating the compose file. For example VPS-IP:80 or 443. Not working.
      Is it because of the missp.local variable?
      Or do you have any similar issues,?
      All other services work perfectly anyway.

    • @ls111cyberEd
      @ls111cyberEd  ปีที่แล้ว

      Using the Docker CLI on the server running your docker containers, type: sudo docker ps this will list all running containers, confirm that the MISP container is running correctly and that the ports are listening and maps to 443/80. If all seems in order here, another thing that comes to mind is the hostname environment variable in the docker-compose.yml config, check that its using your IP address and not the 10.200.200.253 like I use in my setup.
      - "HOSTNAME=10.200.200.253"
      The misp.local name we give to the MISP service wont make a difference here, it is only used within the underlaying docker container network for communication between the containers themselves, they have their own DNS type service running in the background which resolves those hostnames.

    • @ican6401
      @ican6401 ปีที่แล้ว

      @@ls111cyberEd Thank you for your prompt reply I really appreciate
      I did this to troubleshoot the issues and I saw this.
      #docker logs 0ea9cf341f51
      ... chown -R www-data.www-data /var/www/MISP ...
      chown: cannot dereference '/var/www/MISP/INSTALL/old/INSTALL.ubuntu1604.txt': No such file or directory

  • @PartieSecure
    @PartieSecure ปีที่แล้ว +1

    i have been troubleshooting an issue with the analyzers failing,workers cant be run error. Have you come across this issue, is this an issue with the docker networking?

    • @ls111cyberEd
      @ls111cyberEd  ปีที่แล้ว +2

      Hi, thanks for watching! Yes I had similar issues when creating the lab and found that it was due to the way I had my volumes setup. In my case, the docker container that runs the analyzer was unable to access the job data created by Cortex, so I had to map everything to /tmp/cortex-jobs on the host and setup the environment variables to point both job_directory and docker_job_directory to the same /tmp/cortex-jobs to make this work. I used this documentation to point me in the correct direction:
      github.com/TheHive-Project/CortexDocs/blob/master/installation/install-guide.md
      Hopefully it helps.

    • @PartieSecure
      @PartieSecure ปีที่แล้ว +1

      @@ls111cyberEd oh great thank you for the info, I will give it a try.

    • @PartieSecure
      @PartieSecure ปีที่แล้ว +1

      @@ls111cyberEd Got it working thank you!

  • @offdigestertm1937
    @offdigestertm1937 9 หลายเดือนก่อน

    I don't understand what should i add so i have the analyzer enabled ?

  • @pennyWise_01
    @pennyWise_01 ปีที่แล้ว

    After i integrate virus total can the hive/cortex block any malicious ip if a user trying to access the malicious ip?

    • @ls111cyberEd
      @ls111cyberEd  ปีที่แล้ว

      Initially no, the hive/cortex won't block anything it's being used to analyze the detected IOC's and compare it against known intelligence found on VirusTotal etc. If you need a blocking response you will need to set up a responder, for e.g. if you use Wazuh you can use their free responder to block IP observables, there are also other options available.

  • @aviwemusa6109
    @aviwemusa6109 ปีที่แล้ว

    Can you deploy Kali Purple for defense in this lab?

    • @ls111cyberEd
      @ls111cyberEd  ปีที่แล้ว +1

      Thanks for watching! Yes, you can, this will work with any OS running Docker.

  • @TatikSemlohay
    @TatikSemlohay ปีที่แล้ว

    hello i have problem with cortex analyzer. it says "errorMessage": "Worker cannot be run", how to fix it?
    thank you

    • @ls111cyberEd
      @ls111cyberEd  ปีที่แล้ว

      Hi, thanks for watching. Please check out this documentation:
      github.com/TheHive-Project/CortexDocs/blob/master/installation/install-guide.md
      I had similar issues when creating the lab and found that it was due to how I set my volumes up. In my case, the docker container that runs the analyzer was unable to access the job data created by Cortex, so I had to map everything to /tmp/cortex-jobs on the host and setup the environment variables to point both job_directory and docker_job_directory to the same /tmp/cortex-jobs to make this work.
      Perhaps it's the same issue in your case, hopefully this helps.

  • @adnaneafifi1450
    @adnaneafifi1450 9 หลายเดือนก่อน

    Why i have 0 avaible analyzers

  • @st-lv9zg
    @st-lv9zg ปีที่แล้ว

    What is the username / password for thehive,cortx,misp ?

    • @ls111cyberEd
      @ls111cyberEd  ปีที่แล้ว

      This information has been documented in GitHub:
      github.com/ls111-cybersec/thehive-cortex-misp-docker-compose-lab11update

    • @st-lv9zg
      @st-lv9zg ปีที่แล้ว

      @@ls111cyberEd I was not able to login with those username/password that given on the github. I am using docker compose file

    • @st-lv9zg
      @st-lv9zg ปีที่แล้ว +1

      it is working now... I must did something wrong

  • @bmr9779
    @bmr9779 2 หลายเดือนก่อน

    Man, cortex analyzer giving me a rough time.