We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hey,
i've been building such a system for a week now, your project is already saving me a lot of work, thanks for that :)
is there any way to support?
i got problem with the newly created user in thehive.
somehow he didn't want to accept the password so i split the command in creating and setting the password
S1EM/01_deploy.sh
Line 289 in 99ddb8a
so i split the command in creating the user and setting the password
echo "##########################################" echo "######## DEPLOY THEHIVE USER #############" echo "##########################################" echo echo while [ "$(docker exec thehive sh -c 'curl -s http://127.0.0.1:9000')" == "" ]; do echo "Waiting for TheHive to come online."; sleep 15; done echo echo curl -sk -L -XPOST "https://127.0.0.1/thehive/api/v0/organisation" -H 'Content-Type: application/json' -u admin@thehive.local:secret -d "{\"description\": \"SOC team\",\"name\": \"$organization\"}" echo echo while [ "$(docker logs thehive | grep -i "End of deduplication of Organisation")" == "" ]; do echo "Waiting for TheHive organization."; sleep 15; done echo echo curl -sk -L -XPOST "https://127.0.0.1/thehive/api/v1/user" -H 'Content-Type: application/json' -u admin@thehive.local:secret -d "{\"login\":\"$admin_account\",\"name\":\"admin\",\"profile\":\"org-admin\",\"organisation\":\"$organization\"}" echo while [ "$(docker logs thehive | grep -i " End of deduplication of User")" == "" ]; do echo "Waiting for the creation of user in TheHive ."; sleep 15; done echo echo curl -sk -L -XPOST "https://127.0.0.1/thehive/api/v1/user/$admin_account/password/set" -H 'Content-Type: application/json' -u admin@thehive.local:secret -d "{\"password\":\"$admin_password\"}" thehive_apikey=$(curl -sk -L -XPOST "https://$HOSTNAME/thehive/api/v1/user/$admin_account/key/renew" -u admin@thehive.local:secret) while [ "$(docker logs thehive | grep -i " End of deduplication of User")" == "" ]; do echo "Waiting for the password change of user in TheHive ."; sleep 15; done
The text was updated successfully, but these errors were encountered:
Hi mcdave2k1
Thanks for your message. I have test your code and all works. I will integrate your code :)
Sorry, something went wrong.
No branches or pull requests
Hey,
i've been building such a system for a week now, your project is already saving me a lot of work, thanks for that :)
is there any way to support?
i got problem with the newly created user in thehive.
somehow he didn't want to accept the password
so i split the command in creating and setting the password
S1EM/01_deploy.sh
Line 289 in 99ddb8a
so i split the command in creating the user and setting the password
The text was updated successfully, but these errors were encountered: