home.social

Search

628 results for “neoscaler”

  1. erfüllt, demokratisch gewählt.

  2. « NetScaler ADC et Gateway – failles critiques
    Publié le
    26.08.2025
    NetScaler ADC et NetScaler Gateway (anciennement Citrix ADC et Citrix Gateway) sont des solutions largement utilisées pour gérer le trafic réseau, fournir un accès distant sécurisé et améliorer la performance des applications.
    Des failles critiques ont été découvertes et l’une d’entre elles est déjà activement exploitée par des cybercriminels, ce qui rend la mise à jour urgente. »
    👇
    vd.ch/actualites/actualite/new

    #CyberVeille #Citrix #Netscaler #alerte

  3. 🚨 Over 3,300 Citrix NetScaler devices remain unpatched against the critical #CitrixBleed2 vulnerability (CVE-2025-5777), risking session hijacks & MFA bypass! Attackers can steal session tokens remotely. Patch now to avoid data breaches and network risks! 🔐🛡️ #newz

    Details: bleepingcomputer.com/news/secu #Cybersecurity #InfoSec #NetScaler

  4. 🚨 Over 3,300 Citrix NetScaler devices remain unpatched against the critical #CitrixBleed2 vulnerability (CVE-2025-5777), risking session hijacks & MFA bypass! Attackers can steal session tokens remotely. Patch now to avoid data breaches and network risks! 🔐🛡️ #newz

    Details: bleepingcomputer.com/news/secu #Cybersecurity #InfoSec #NetScaler

  5. 🚨 Over 3,300 Citrix NetScaler devices remain unpatched against the critical #CitrixBleed2 vulnerability (CVE-2025-5777), risking session hijacks & MFA bypass! Attackers can steal session tokens remotely. Patch now to avoid data breaches and network risks! 🔐🛡️ #newz

    Details: bleepingcomputer.com/news/secu #Cybersecurity #InfoSec #NetScaler

  6. 🚨 Over 3,300 Citrix NetScaler devices remain unpatched against the critical vulnerability (CVE-2025-5777), risking session hijacks & MFA bypass! Attackers can steal session tokens remotely. Patch now to avoid data breaches and network risks! 🔐🛡️

    Details: bleepingcomputer.com/news/secu

  7. 🚨 Over 3,300 Citrix NetScaler devices remain unpatched against the critical #CitrixBleed2 vulnerability (CVE-2025-5777), risking session hijacks & MFA bypass! Attackers can steal session tokens remotely. Patch now to avoid data breaches and network risks! 🔐🛡️ #newz

    Details: bleepingcomputer.com/news/secu #Cybersecurity #InfoSec #NetScaler

  8. Found a guide for NetScaler (Citrix ADC) CVE-2023-3519 that explains how to validate and check for (currently) known Indicators of Compromise (IoCs) on a local CITRIX device.

    The full guide including the commands, can be found here: [Checklist for Citrix ADC CVE-2023-3519](deyda.net/index.php/en/2023/07)

    Please bear in mind that this is a guide "found on the internet". Although it appears to be reliable and it was mentioned by SANS stormcast, these devices are not my specific area of expertise. Use your brain and use at your own risk...

    Here are some key points from the article:

    1. **Log in with nsroot or another administrative account.**

    2. **Find out the time of the last update.** - This command lists the details of the files in the /var/nsinstall directory, which can help determine when the last update occurred.
    ```
    shell ls -ll /var/nsinstall
    ```

    3. **Check whether certain files have been adjusted since the last update.** - These commands find and list files in specified directories that have been modified since the last update.
    ```
    shell
    find /netscaler/ns_gui/ -type f -name *.php -newermt {Timestamp of Installer Files +1} -exec ls -l {} \;
    find /var/vpn/ -type f -newermt {Timestamp of Installer Files +1} -exec ls -l {} \;
    find /var/netscaler/logon/ -type f -newermt {Timestamp of Installer Files +1} -exec ls -l {} \;
    find /var/python/ -type f -newermt {Timestamp of Installer Files +1} -exec ls -l {} \;
    ```

    4. **Check for HTTP error log files.** - These commands search for .sh and .php entries in the HTTP error log files.
    ```
    zgrep '\.sh' /var/log/httperror.log*
    zgrep '\.php' /var/log/httperror.log*
    ```

    5. **Check for Shell log files.** - This command searches for entries related to '/flash/nsconfig/keys' in the shell log files.
    ```
    grep '/flash/nsconfig/keys' /var/log/sh.log*
    ```

    6. **Check log files for known IOCs.** - This command finds and lists files with root permissions that have been modified since the last update.
    ```
    find /var -perm -4000 -user root -not -path "/var/nslog/*" -newermt {Timestamp of Installer Files +1} -exec ls -l {} \;
    ```

    7. **Check for Nobody processes.** - This command lists processes running under the 'nobody' user that are not associated with '/bin/httpd'.
    ```
    shell ps aux | grep nobody | grep -v '/bin/httpd'
    ```


    #NetScaler #CitrixADC #CVE20233519 #SecurityGuide #IndicatorsOfCompromise #IoCs #InfoSec #CyberSecurity #VulnerabilityManagement #SecurityInvestigation #SysAdminTips #NetworkSecurity #CyberThreats #ITSecurity #OnlineSecurity #CyberAware #TechSafety #SecureNetworking #VulnerabilityScanning #InfoSecAwareness

  9. Found a guide for NetScaler (Citrix ADC) CVE-2023-3519 that explains how to validate and check for (currently) known Indicators of Compromise (IoCs) on a local CITRIX device.

    The full guide including the commands, can be found here: [Checklist for Citrix ADC CVE-2023-3519](deyda.net/index.php/en/2023/07)

    Please bear in mind that this is a guide "found on the internet". Although it appears to be reliable and it was mentioned by SANS stormcast, these devices are not my specific area of expertise. Use your brain and use at your own risk...

    Here are some key points from the article:

    1. **Log in with nsroot or another administrative account.**

    2. **Find out the time of the last update.** - This command lists the details of the files in the /var/nsinstall directory, which can help determine when the last update occurred.
    ```
    shell ls -ll /var/nsinstall
    ```

    3. **Check whether certain files have been adjusted since the last update.** - These commands find and list files in specified directories that have been modified since the last update.
    ```
    shell
    find /netscaler/ns_gui/ -type f -name *.php -newermt {Timestamp of Installer Files +1} -exec ls -l {} \;
    find /var/vpn/ -type f -newermt {Timestamp of Installer Files +1} -exec ls -l {} \;
    find /var/netscaler/logon/ -type f -newermt {Timestamp of Installer Files +1} -exec ls -l {} \;
    find /var/python/ -type f -newermt {Timestamp of Installer Files +1} -exec ls -l {} \;
    ```

    4. **Check for HTTP error log files.** - These commands search for .sh and .php entries in the HTTP error log files.
    ```
    zgrep '\.sh' /var/log/httperror.log*
    zgrep '\.php' /var/log/httperror.log*
    ```

    5. **Check for Shell log files.** - This command searches for entries related to '/flash/nsconfig/keys' in the shell log files.
    ```
    grep '/flash/nsconfig/keys' /var/log/sh.log*
    ```

    6. **Check log files for known IOCs.** - This command finds and lists files with root permissions that have been modified since the last update.
    ```
    find /var -perm -4000 -user root -not -path "/var/nslog/*" -newermt {Timestamp of Installer Files +1} -exec ls -l {} \;
    ```

    7. **Check for Nobody processes.** - This command lists processes running under the 'nobody' user that are not associated with '/bin/httpd'.
    ```
    shell ps aux | grep nobody | grep -v '/bin/httpd'
    ```


    #NetScaler #CitrixADC #CVE20233519 #SecurityGuide #IndicatorsOfCompromise #IoCs #InfoSec #CyberSecurity #VulnerabilityManagement #SecurityInvestigation #SysAdminTips #NetworkSecurity #CyberThreats #ITSecurity #OnlineSecurity #CyberAware #TechSafety #SecureNetworking #VulnerabilityScanning #InfoSecAwareness

  10. Found a guide for NetScaler (Citrix ADC) CVE-2023-3519 that explains how to validate and check for (currently) known Indicators of Compromise (IoCs) on a local CITRIX device.

    The full guide including the commands, can be found here: [Checklist for Citrix ADC CVE-2023-3519](deyda.net/index.php/en/2023/07)

    Please bear in mind that this is a guide "found on the internet". Although it appears to be reliable and it was mentioned by SANS stormcast, these devices are not my specific area of expertise. Use your brain and use at your own risk...

    Here are some key points from the article:

    1. **Log in with nsroot or another administrative account.**

    2. **Find out the time of the last update.** - This command lists the details of the files in the /var/nsinstall directory, which can help determine when the last update occurred.
    ```
    shell ls -ll /var/nsinstall
    ```

    3. **Check whether certain files have been adjusted since the last update.** - These commands find and list files in specified directories that have been modified since the last update.
    ```
    shell
    find /netscaler/ns_gui/ -type f -name *.php -newermt {Timestamp of Installer Files +1} -exec ls -l {} \;
    find /var/vpn/ -type f -newermt {Timestamp of Installer Files +1} -exec ls -l {} \;
    find /var/netscaler/logon/ -type f -newermt {Timestamp of Installer Files +1} -exec ls -l {} \;
    find /var/python/ -type f -newermt {Timestamp of Installer Files +1} -exec ls -l {} \;
    ```

    4. **Check for HTTP error log files.** - These commands search for .sh and .php entries in the HTTP error log files.
    ```
    zgrep '\.sh' /var/log/httperror.log*
    zgrep '\.php' /var/log/httperror.log*
    ```

    5. **Check for Shell log files.** - This command searches for entries related to '/flash/nsconfig/keys' in the shell log files.
    ```
    grep '/flash/nsconfig/keys' /var/log/sh.log*
    ```

    6. **Check log files for known IOCs.** - This command finds and lists files with root permissions that have been modified since the last update.
    ```
    find /var -perm -4000 -user root -not -path "/var/nslog/*" -newermt {Timestamp of Installer Files +1} -exec ls -l {} \;
    ```

    7. **Check for Nobody processes.** - This command lists processes running under the 'nobody' user that are not associated with '/bin/httpd'.
    ```
    shell ps aux | grep nobody | grep -v '/bin/httpd'
    ```


    #NetScaler #CitrixADC #CVE20233519 #SecurityGuide #IndicatorsOfCompromise #IoCs #InfoSec #CyberSecurity #VulnerabilityManagement #SecurityInvestigation #SysAdminTips #NetworkSecurity #CyberThreats #ITSecurity #OnlineSecurity #CyberAware #TechSafety #SecureNetworking #VulnerabilityScanning #InfoSecAwareness

  11. Found a guide for NetScaler (Citrix ADC) CVE-2023-3519 that explains how to validate and check for (currently) known Indicators of Compromise (IoCs) on a local CITRIX device.

    The full guide including the commands, can be found here: [Checklist for Citrix ADC CVE-2023-3519](deyda.net/index.php/en/2023/07)

    Please bear in mind that this is a guide "found on the internet". Although it appears to be reliable and it was mentioned by SANS stormcast, these devices are not my specific area of expertise. Use your brain and use at your own risk...

    Here are some key points from the article:

    1. **Log in with nsroot or another administrative account.**

    2. **Find out the time of the last update.** - This command lists the details of the files in the /var/nsinstall directory, which can help determine when the last update occurred.
    ```
    shell ls -ll /var/nsinstall
    ```

    3. **Check whether certain files have been adjusted since the last update.** - These commands find and list files in specified directories that have been modified since the last update.
    ```
    shell
    find /netscaler/ns_gui/ -type f -name *.php -newermt {Timestamp of Installer Files +1} -exec ls -l {} \;
    find /var/vpn/ -type f -newermt {Timestamp of Installer Files +1} -exec ls -l {} \;
    find /var/netscaler/logon/ -type f -newermt {Timestamp of Installer Files +1} -exec ls -l {} \;
    find /var/python/ -type f -newermt {Timestamp of Installer Files +1} -exec ls -l {} \;
    ```

    4. **Check for HTTP error log files.** - These commands search for .sh and .php entries in the HTTP error log files.
    ```
    zgrep '\.sh' /var/log/httperror.log*
    zgrep '\.php' /var/log/httperror.log*
    ```

    5. **Check for Shell log files.** - This command searches for entries related to '/flash/nsconfig/keys' in the shell log files.
    ```
    grep '/flash/nsconfig/keys' /var/log/sh.log*
    ```

    6. **Check log files for known IOCs.** - This command finds and lists files with root permissions that have been modified since the last update.
    ```
    find /var -perm -4000 -user root -not -path "/var/nslog/*" -newermt {Timestamp of Installer Files +1} -exec ls -l {} \;
    ```

    7. **Check for Nobody processes.** - This command lists processes running under the 'nobody' user that are not associated with '/bin/httpd'.
    ```
    shell ps aux | grep nobody | grep -v '/bin/httpd'
    ```


    #NetScaler #CitrixADC #CVE20233519 #SecurityGuide #IndicatorsOfCompromise #IoCs #InfoSec #CyberSecurity #VulnerabilityManagement #SecurityInvestigation #SysAdminTips #NetworkSecurity #CyberThreats #ITSecurity #OnlineSecurity #CyberAware #TechSafety #SecureNetworking #VulnerabilityScanning #InfoSecAwareness

  12. В фокусе RVD: трендовые уязвимости августа

    Хабр, привет! На связи команда инженер-аналитиков отдела по инструментальному анализу защищенности компании R-Vision. Мы подготовили свежий дайджест трендовых уязвимостей, обнаруженных в августе 2025 года. В нём собраны наиболее опасные уязвимости, которые уже сейчас активно эксплуатируются в атаках и их устранение должно быть в приоритете.

    habr.com/ru/companies/rvision/

    #уязвимости #информационная_безопасность #кибербезопасность #управление_уязвимостями #vulnerability_management #эксплуатация_уязвимостей #обновление_безопасности #winrar #citrix_netscaler

  13. Citrix Netscaler schon wieder sehr hohes Risiko

    Die Produktlinie NetScaler begann als Marke der US-Firma Citrix. Inzwischen sind beides getrennte Marken unter dem Dach einer Firma mit Namen Cloud Software Group (CSG). - Aktuell gibt es Warnungen vor drei Sicherheitslücken in mehreren NetScaler Produkten. Die schlimmste der Sicherheitslücken, CVE 2025-5777, wird mit einem Risiko von 9,3 (von 10) eingestuft. Oder sollte man sagen Hintertür? Die Sicherheitslücke beruht nämlich darauf, dass Eingaben nicht ausreichend geprüft werden ("insufficient input validation"). Ah, ja.

    pc-fluesterer.info/wordpress/2

    #Empfehlung #Warnung #exploits #foss #hersteller #hintertür #opensource #router #sicherheit #spionage #UnplugTrump #usa #vorbeugen #vpn #wissen #closedsource #proprietär #citrix

  14. "🚨Citrix NetScaler ADC and Gateway Devices Under Attack: CISA Urges Immediate Action🚨"

    CISA warns of a critical security flaw in Citrix NetScaler ADC and Gateway devices being exploited to drop web shells on vulnerable systems. Immediate action is advised!🔒💻

    Source: [The Hacker News](thehackernews.com/2023/07/citr)

    Tags: #CISA #Citrix #NetScaler #ADC #Gateway #Cybersecurity #Vulnerability #WebShells #InfoSec 🌐🔐🔍

  15. "🚨Citrix NetScaler ADC and Gateway Devices Under Attack: CISA Urges Immediate Action🚨"

    CISA warns of a critical security flaw in Citrix NetScaler ADC and Gateway devices being exploited to drop web shells on vulnerable systems. Immediate action is advised!🔒💻

    Source: [The Hacker News](thehackernews.com/2023/07/citr)

    Tags: #CISA #Citrix #NetScaler #ADC #Gateway #Cybersecurity #Vulnerability #WebShells #InfoSec 🌐🔐🔍

  16. "🚨Citrix NetScaler ADC and Gateway Devices Under Attack: CISA Urges Immediate Action🚨"

    CISA warns of a critical security flaw in Citrix NetScaler ADC and Gateway devices being exploited to drop web shells on vulnerable systems. Immediate action is advised!🔒💻

    Source: [The Hacker News](thehackernews.com/2023/07/citr)

    Tags: #CISA #Citrix #NetScaler #ADC #Gateway #Cybersecurity #Vulnerability #WebShells #InfoSec 🌐🔐🔍

  17. "🚨Citrix NetScaler ADC and Gateway Devices Under Attack: CISA Urges Immediate Action🚨"

    CISA warns of a critical security flaw in Citrix NetScaler ADC and Gateway devices being exploited to drop web shells on vulnerable systems. Immediate action is advised!🔒💻

    Source: [The Hacker News](thehackernews.com/2023/07/citr)

    Tags: #CISA #Citrix #NetScaler #ADC #Gateway #Cybersecurity #Vulnerability #WebShells #InfoSec 🌐🔐🔍

  18. "🚨Citrix NetScaler ADC and Gateway Devices Under Attack: CISA Urges Immediate Action🚨"

    CISA warns of a critical security flaw in Citrix NetScaler ADC and Gateway devices being exploited to drop web shells on vulnerable systems. Immediate action is advised!🔒💻

    Source: [The Hacker News](thehackernews.com/2023/07/citr)

    Tags: #CISA #Citrix #NetScaler #ADC #Gateway #Cybersecurity #Vulnerability #WebShells #InfoSec 🌐🔐🔍