Installation procedure for the Deepfence agent depends on the environment that is being used. Instructions for installing Deepfence agent on some of the common platforms are given in detail below:
Deepfence Agent on Standalone VM or Host
Installing the Deepfence Agent is now as easy as: Get Deepfence api key from UI: Goto Settings -> User Management, copy api key In the following docker run command, replace x.x.x.x with the IP address of the Management Console and replace C8TtyEtNB0gBo1wGhpeAZICNSAaGWw71BSdS2kLELY0 with api Key docker run -dit --cpus=".2" --name=deepfence-agent --restart on-failure --pid=host --net=host --privileged=true -v /sys/kernel/debug:/sys/kernel/debug:rw -v /var/log/fenced -v /var/run/docker.sock:/var/run/docker.sock -v /:/fenced/mnt/host/:ro -e USER_DEFINED_TAGS="" -e DF_BACKEND_IP="x.x.x.x" -e DEEPFENCE_KEY="C8TtyEtNB0gBo1wGhpeAZICNSAaGWw71BSdS2kLELY0" deepfenceio/deepfence_agent_ce:latest Optionally the agent node can be tagged using USER_DEFINED_TAGS="" in the above command. Tags should be comma separated. Example: "dev,front-end"
Deepfence Agent on Amazon ECS
For detailed instructions to deploy agents on Amazon ECS, please refer to our Amazon ECS (https://github.com/deepfence/ThreatMapper/wiki/Amazon-ECS-Deployment) wiki page.
Deepfence Agent Helm chart for Kubernetes
Start deepfence agent (replace x.x.x.x with the IP address of the Management Console and C8TtyEtNB0gBo1wGhpeAZICNSAaGWw71BSdS2kLELY0 with api key) # helm v2
helm install --repo https://deepfence.github.io/ThreatMapper/files/helm-chart deepfence-agent \
--name=deepfence-agent \
--set managementConsoleIp=x.x.x.x \
--set deepfenceKey=C8TtyEtNB0gBo1wGhpeAZICNSAaGWw71BSdS2kLELY0
# helm v3
helm install deepfence-agent --repo https://deepfence.github.io/ThreatMapper/files/helm-chart deepfence-agent \
--set managementConsoleIp=x.x.x.x \
--set deepfenceKey=C8TtyEtNB0gBo1wGhpeAZICNSAaGWw71BSdS2kLELY0 Delete deepfence agent # helm v2
helm delete --purge deepfence-agent
# helm v3
helm delete deepfence-agent
Deepfence Agent on Google GKE
For detailed instructions to deploy agents on Google GKE, please refer to our Google GKE (https://github.com/deepfence/ThreatMapper/wiki/Google-Kubernetes-Engine-Deployment) wiki page.
Deepfence Agent on Azure AKS
For detailed instructions to deploy agents on Azure Kubernetes Service, please refer to our Azure AKS (https://github.com/deepfence/ThreatMapper/wiki/Azure-Kubernetes-Service-Deployment) wiki page.
Deepfence Agent on self-managed / on-premise Kubernetes
For detailed instructions to deploy agents on a Kubernetes cluster, please refer to our Self-managed/On-premise Kubernetes (https://github.com/deepfence/ThreatMapper/wiki/Kubernetes-(Self-managed-or-on-premise)) wiki page.
Download ThreatMapper (https://github.com/deepfence/ThreatMapper)
Deepfence Agent on Standalone VM or Host
Installing the Deepfence Agent is now as easy as: Get Deepfence api key from UI: Goto Settings -> User Management, copy api key In the following docker run command, replace x.x.x.x with the IP address of the Management Console and replace C8TtyEtNB0gBo1wGhpeAZICNSAaGWw71BSdS2kLELY0 with api Key docker run -dit --cpus=".2" --name=deepfence-agent --restart on-failure --pid=host --net=host --privileged=true -v /sys/kernel/debug:/sys/kernel/debug:rw -v /var/log/fenced -v /var/run/docker.sock:/var/run/docker.sock -v /:/fenced/mnt/host/:ro -e USER_DEFINED_TAGS="" -e DF_BACKEND_IP="x.x.x.x" -e DEEPFENCE_KEY="C8TtyEtNB0gBo1wGhpeAZICNSAaGWw71BSdS2kLELY0" deepfenceio/deepfence_agent_ce:latest Optionally the agent node can be tagged using USER_DEFINED_TAGS="" in the above command. Tags should be comma separated. Example: "dev,front-end"
Deepfence Agent on Amazon ECS
For detailed instructions to deploy agents on Amazon ECS, please refer to our Amazon ECS (https://github.com/deepfence/ThreatMapper/wiki/Amazon-ECS-Deployment) wiki page.
Deepfence Agent Helm chart for Kubernetes
Start deepfence agent (replace x.x.x.x with the IP address of the Management Console and C8TtyEtNB0gBo1wGhpeAZICNSAaGWw71BSdS2kLELY0 with api key) # helm v2
helm install --repo https://deepfence.github.io/ThreatMapper/files/helm-chart deepfence-agent \
--name=deepfence-agent \
--set managementConsoleIp=x.x.x.x \
--set deepfenceKey=C8TtyEtNB0gBo1wGhpeAZICNSAaGWw71BSdS2kLELY0
# helm v3
helm install deepfence-agent --repo https://deepfence.github.io/ThreatMapper/files/helm-chart deepfence-agent \
--set managementConsoleIp=x.x.x.x \
--set deepfenceKey=C8TtyEtNB0gBo1wGhpeAZICNSAaGWw71BSdS2kLELY0 Delete deepfence agent # helm v2
helm delete --purge deepfence-agent
# helm v3
helm delete deepfence-agent
Deepfence Agent on Google GKE
For detailed instructions to deploy agents on Google GKE, please refer to our Google GKE (https://github.com/deepfence/ThreatMapper/wiki/Google-Kubernetes-Engine-Deployment) wiki page.
Deepfence Agent on Azure AKS
For detailed instructions to deploy agents on Azure Kubernetes Service, please refer to our Azure AKS (https://github.com/deepfence/ThreatMapper/wiki/Azure-Kubernetes-Service-Deployment) wiki page.
Deepfence Agent on self-managed / on-premise Kubernetes
For detailed instructions to deploy agents on a Kubernetes cluster, please refer to our Self-managed/On-premise Kubernetes (https://github.com/deepfence/ThreatMapper/wiki/Kubernetes-(Self-managed-or-on-premise)) wiki page.
Download ThreatMapper (https://github.com/deepfence/ThreatMapper)
Hacking Articles Tips Tricks Videos Tutorials
Photo
Kali Linux Tutorials
Gitrecon : OSINT Tool To Get Information From A Github Profile
Gitrecon is a OSINT tool to get information from a Github or Gitlab profile and find user’s email addresses leaked on commits. How does this work? GitHub uses the email address associated with a GitHub account to link commits and other activity to a GitHub profile. When a user makes commits to public repos their […]
The post Gitrecon : OSINT Tool To Get Information From A Github Profile appeared first on Kali Linux Tutorials.
Gitrecon : OSINT Tool To Get Information From A Github Profile
Gitrecon is a OSINT tool to get information from a Github or Gitlab profile and find user’s email addresses leaked on commits. How does this work? GitHub uses the email address associated with a GitHub account to link commits and other activity to a GitHub profile. When a user makes commits to public repos their […]
The post Gitrecon : OSINT Tool To Get Information From A Github Profile appeared first on Kali Linux Tutorials.
Hacking Articles Tips Tricks Videos Tutorials
Photo
Hacking on Medium
REST Security Design Principles
https://cdn-images-1.medium.com/max/1440/1*uAcjpf0Ywaw_FgaRWlGOEQ.jpeg
Join us to learn 8 high level security design principles that, if followed, should help mitigate most if not all of your apps vulns.
Continue reading on strike.sh »
REST Security Design Principles
https://cdn-images-1.medium.com/max/1440/1*uAcjpf0Ywaw_FgaRWlGOEQ.jpeg
Join us to learn 8 high level security design principles that, if followed, should help mitigate most if not all of your apps vulns.
Continue reading on strike.sh »
Hacking Articles Tips Tricks Videos Tutorials
Photo
Hacking on Medium
Detained in Dubai reports UAE’s Israel-US hacking agent to FBI
https://cdn-images-1.medium.com/max/1920/0*KtP0ynTP3kiCmmfW.jpg
A newly published report by The Daily Beast’s Adam Rawnsley details how Ras Al Khaimah used an Israeli private intelligence company to…
Continue reading on Medium »
Detained in Dubai reports UAE’s Israel-US hacking agent to FBI
https://cdn-images-1.medium.com/max/1920/0*KtP0ynTP3kiCmmfW.jpg
A newly published report by The Daily Beast’s Adam Rawnsley details how Ras Al Khaimah used an Israeli private intelligence company to…
Continue reading on Medium »
Hacking Articles Tips Tricks Videos Tutorials
Photo
Hacking on Medium
How To Know If Your Facebook Account Is Among The 533 Million Exposed Accounts
https://cdn-images-1.medium.com/max/1600/1*UYKl1g32Ma-gb0uKGrU1HQ.jpeg
I was going through a news website in the evening when I saw this headline — “Stolen Data Of 533 Million Facebook Users Leaked Online.” As…
Continue reading on Medium »
How To Know If Your Facebook Account Is Among The 533 Million Exposed Accounts
https://cdn-images-1.medium.com/max/1600/1*UYKl1g32Ma-gb0uKGrU1HQ.jpeg
I was going through a news website in the evening when I saw this headline — “Stolen Data Of 533 Million Facebook Users Leaked Online.” As…
Continue reading on Medium »
Hacking Articles Tips Tricks Videos Tutorials
Photo
Hacking on Medium
His Secret Obsession Phrases 12 Word Text Message Hero Instinct
Having trouble convincing a man to sign up? Would you like the man you dreamed of to feel the same for you?
Continue reading on Medium »
His Secret Obsession Phrases 12 Word Text Message Hero Instinct
Having trouble convincing a man to sign up? Would you like the man you dreamed of to feel the same for you?
Continue reading on Medium »
Hacking Articles Tips Tricks Videos Tutorials
Photo
Hacking on Medium
Israeli spies-for-hire reportedly infiltrated Fox News to get info for UAE client
https://cdn-images-1.medium.com/max/1200/0*d0uqd-di1RoFzidF
Operatives linked to an Israeli business intelligence firm masqueraded as journalists in an effort to gather information on a lawsuit…
Continue reading on Medium »
Israeli spies-for-hire reportedly infiltrated Fox News to get info for UAE client
https://cdn-images-1.medium.com/max/1200/0*d0uqd-di1RoFzidF
Operatives linked to an Israeli business intelligence firm masqueraded as journalists in an effort to gather information on a lawsuit…
Continue reading on Medium »
Hacking Articles Tips Tricks Videos Tutorials
GIF
Hacking on Medium
Understanding the Microsoft Exchange Hack: How You Can Prevent a “Bad Day”
https://cdn-images-1.medium.com/max/1200/1*Zl_SS_svKKjJVoSTz1Kb8w.gif
By Michael Zawisza and the Prosperoware Marketing Team
Continue reading on Medium »
Understanding the Microsoft Exchange Hack: How You Can Prevent a “Bad Day”
https://cdn-images-1.medium.com/max/1200/1*Zl_SS_svKKjJVoSTz1Kb8w.gif
By Michael Zawisza and the Prosperoware Marketing Team
Continue reading on Medium »
Hacking Articles Tips Tricks Videos Tutorials
Photo
Hacking on Medium
Top 5 Theme Changing Tool For Termux For 2021
https://cdn-images-1.medium.com/max/600/0*nCsF0cCde3zpxgK9.png
Hey guys 🙋♂️, In termux we use a lot of tools to change the look of our termux terminal. and to find the best tool you need to try them…
Continue reading on Medium »
Top 5 Theme Changing Tool For Termux For 2021
https://cdn-images-1.medium.com/max/600/0*nCsF0cCde3zpxgK9.png
Hey guys 🙋♂️, In termux we use a lot of tools to change the look of our termux terminal. and to find the best tool you need to try them…
Continue reading on Medium »
Hacking Articles Tips Tricks Videos Tutorials
Photo
Hacking on Medium
NAT Slipstreaming
https://cdn-images-1.medium.com/max/600/0*4M07Hc4m5GfcYCh0
I used to think if a device is not exposed to the public internet it is safe because bad actors cannot access them as it has NAT (Network…
Continue reading on Developer Student Clubs SASTRA »
NAT Slipstreaming
https://cdn-images-1.medium.com/max/600/0*4M07Hc4m5GfcYCh0
I used to think if a device is not exposed to the public internet it is safe because bad actors cannot access them as it has NAT (Network…
Continue reading on Developer Student Clubs SASTRA »