home.social

#net — Public Fediverse posts

Live and recent posts from across the Fediverse tagged #net, aggregated by home.social.

fetched live
  1. EXCLUSIVE: Terminaux 8.7 contains breaking changes

    Terminaux 8.7, which is set to release August 20th, will contain breaking changes that will affect how your Terminaux-powered applications function. The refactors that we’ve done to Nitrocid earlier, which is part of an effort to modernize the Nitrocid codebase, have necessitated those breaking changes that were made to Terminaux.

    Those breaking changes were made to different components, including the shell command handling mechanism. The necessary classes have been migrated to make sure that easier command definition is possible. Instead of trying to maintain a large array of commands, which can be troublesome in large shells, such as Nitrocid’s UESH shell, we let you define the command settings and parameters in the class itself.

    We will let you know of those details as we finish working on the documentation in coming days.

    Meanwhile, Terminaux 8.7 will be used in the release candidate of the upcoming Nitrocid version, which will be released this September 24th, as we continue to modernize the codebase and to fix possible design flaws so that Nitrocid becomes faster and more reliable than before.

    #NET #Aptivi #dotnet #Library #news #Tech #Technology #Terminaux #Terminaux87 #update
  2. EXCLUSIVE: Terminaux 8.7 contains breaking changes

    Terminaux 8.7, which is set to release August 20th, will contain breaking changes that will affect how your Terminaux-powered applications function. The refactors that we’ve done to Nitrocid earlier, which is part of an effort to modernize the Nitrocid codebase, have necessitated those breaking changes that were made to Terminaux.

    Those breaking changes were made to different components, including the shell command handling mechanism. The necessary classes have been migrated to make sure that easier command definition is possible. Instead of trying to maintain a large array of commands, which can be troublesome in large shells, such as Nitrocid’s UESH shell, we let you define the command settings and parameters in the class itself.

    We will let you know of those details as we finish working on the documentation in coming days.

    Meanwhile, Terminaux 8.7 will be used in the release candidate of the upcoming Nitrocid version, which will be released this September 24th, as we continue to modernize the codebase and to fix possible design flaws so that Nitrocid becomes faster and more reliable than before.

    #NET #Aptivi #dotnet #Library #news #Tech #Technology #Terminaux #Terminaux87 #update
  3. Nochmals viele Neuerungen und zahlreiche Breaking Changes in .NET 11.0 Preview 7

    Die siebte Preview bringt abermals eine Spracherweiterung für C#, verbesserte Komprimierungs-APIs und neue Features für Blazor.

    heise.de/news/Nochmals-viele-N

    #NET #ASPNET #C #IT #Microsoft #Passkey #news

  4. Nochmals viele Neuerungen und zahlreiche Breaking Changes in .NET 11.0 Preview 7

    Die siebte Preview bringt abermals eine Spracherweiterung für C#, verbesserte Komprimierungs-APIs und neue Features für Blazor.

    heise.de/news/Nochmals-viele-N

    #NET #ASPNET #C #IT #Microsoft #Passkey #news

  5. Code, Force, Repeat. Олдскульный GUI для олдскульных скриптов. Часть 1. Экспозиция

    В этот раз я пришёл с двухчастным текстом про F#, тайппровайдеры, скрипты, спортивное программирование, MVU, консольные интерфейсы в стиле FarManager, низкоуровневый интероп с виндой, некоторое количество хаков ХМ и, внезапно, живопись. Причём только консольные интерфейсы с некоторой натяжкой можно назвать центральным элементом повествования, поэтому я понятия не имею, как должен выглядеть потенциальный читатель этой статьи. Будем исходить из предположения, что он либо достаточно опытен, либо у него достаточно времени и усердия, чтобы расковырять всё, что я не счёл должным разобрать детально ( я могу, но только за 16 глав ). Сегодня мы изучим небольшой .fsx -скрипт, который я ежедневно запускаю, чтобы получить очередную порцию задачек из архива codeforces.com. Необычно то, что скрипт функционирует как полноценное GUI-приложение, пусть и очень страшное старое. Кажется, что до меня так никто не делал, так что с осторожностью назову это авторской инновацией.

    habr.com/ru/companies/first/ar

    #f# #net #консольные_скрипты #консольные_приложения #mvu #fsx #codeforces #спортивное_программирование

  6. AS2 в .NET без отдельного Java-гейтвея: EDI-обмен с партнёрами прямо в маршруте

    Если вы поставляете товар в крупную розницу, возите грузы для 3PL-оператора, шлёте платёжные извещения банку или обмениваетесь медицинскими транзакциями X12 — вы почти наверняка обмениваетесь этими документами по AS2 . Заказ (EDI 850), счёт (810), уведомление об отгрузке (856), платёжное авизо (820) уходят партнёру не почтой и не через REST, а как подписанный и зашифрованный S/MIME-конверт поверх HTTP, с подписанной квиткой-распиской в ответ. Так работает регламентированный B2B-документооборот в рознице, логистике, финансах, производстве и здравоохранении уже двадцать лет: Walmart, Amazon и их сети поставщиков, банки с host-to-host каналом, автопром, дистрибьюторы — все требуют AS2. В .NET до сих пор было два пути. Либо коммерческий AS2-шлюз — Cleo, Seeburger, BizTalk — отдельная коробка, отдельная лицензия, отдельная команда сопровождения. Либо Java-сервер с открытым кодом — OpenAS2, Mendelson Community — отдельный JVM-процесс рядом с вашим .NET-бэкендом, со своим inbox-каталогом, откуда документы надо ещё забирать джобой. В обоих случаях AS2 живёт сбоку от вашей интеграции, а не внутри неё. redb.Route.AS2 закрывает этот разрыв: AS2 становится обычным шагом маршрута в вашем .NET-процессе. Приняли конверт от партнёра, расшифровали, проверили подпись, отдали документ в pipeline — провалидировали, трансформировали, положили в Kafka или SQL — и вернули партнёру подписанную расписку. Один процесс, один деплой, одна панель наблюдаемости. Разберём, как это выглядит в коде, где применяется и почему нативный коннектор в ESB выигрывает у отдельного шлюза.

    habr.com/ru/articles/1069840/

    #AS2 #EDI #X12 #EDIFACT #SMIME #MDN #B2B #ESB #NET #redbRoute

  7. 2026-08-09: Traffic Analysis Exercise - First to Last

    Indicators extracted from public reporting. Source: malware-traffic-analysis.net/2

    Pulse ID: 6a79ac614194d10a1284ffcc
    Pulse Link: otx.alienvault.com/pulse/6a79a
    Pulse Author: CyberHunter_NL
    Created: 2026-08-10 10:48:01

    Be advised, this data is unverified and should be considered preliminary. Always do further verification.

    #CyberSecurity #HTML #HTTP #HTTPS #InfoSec #Malware #NET #OTX #OpenThreatExchange #RCE #bot #CyberHunter_NL

  8. 2026-08-09: Traffic Analysis Exercise - First to Last

    Indicators extracted from public reporting. Source: malware-traffic-analysis.net/2

    Pulse ID: 6a79ac614194d10a1284ffcc
    Pulse Link: otx.alienvault.com/pulse/6a79a
    Pulse Author: CyberHunter_NL
    Created: 2026-08-10 10:48:01

    Be advised, this data is unverified and should be considered preliminary. Always do further verification.

    #CyberSecurity #HTML #HTTP #HTTPS #InfoSec #Malware #NET #OTX #OpenThreatExchange #RCE #bot #CyberHunter_NL

  9. 2026-07-31: SmartApeSG ClickFix campaign pushes unidentified RAT

    Indicators extracted from public reporting. Source: malware-traffic-analysis.net/2

    Pulse ID: 6a79ac6adcf7b6da0537a5df
    Pulse Link: otx.alienvault.com/pulse/6a79a
    Pulse Author: CyberHunter_NL
    Created: 2026-08-10 10:48:10

    Be advised, this data is unverified and should be considered preliminary. Always do further verification.

    #CyberSecurity #HTML #HTTP #HTTPS #InfoSec #Malware #NET #OTX #OpenThreatExchange #RAT #RCE #SmartApeSg #bot #CyberHunter_NL

  10. 2026-07-31: SmartApeSG ClickFix campaign pushes unidentified RAT

    Indicators extracted from public reporting. Source: malware-traffic-analysis.net/2

    Pulse ID: 6a79ac6adcf7b6da0537a5df
    Pulse Link: otx.alienvault.com/pulse/6a79a
    Pulse Author: CyberHunter_NL
    Created: 2026-08-10 10:48:10

    Be advised, this data is unverified and should be considered preliminary. Always do further verification.

    #CyberSecurity #HTML #HTTP #HTTPS #InfoSec #Malware #NET #OTX #OpenThreatExchange #RAT #RCE #SmartApeSg #bot #CyberHunter_NL

  11. 1500 строк красного: как обновление одного плагина на Rust-сервере съедает вечер — и почему виноват diff

    Выходит обновление плагина, он дописывает свои ключи в ваш конфиг и заодно меняет порядок остальных. Через сутки в дискорде жалобы, вы открываете бэкап и текущий конфиг в diff — а он красный целиком. Разбираемся, почему текстовый diff врёт на JSON, и что с этим можно сделать: сравнение с игнором порядка ключей, структурный дифф по путям, до шести файлов сразу и экспорт в JSON Patch.

    habr.com/ru/articles/1068522/

    #rust #c# #net #avalonia #json

  12. The bill comes due: China turns from Africa's builder into its collector

    Like and share if you enjoyed this.

    1ban.news/china-africa-net-deb

    #1ban #china #africa #net #debt #geopolitics

  13. The bill comes due: China turns from Africa's builder into its collector

    Like and share if you enjoyed this.

    1ban.news/china-africa-net-deb

    #1ban #china #africa #net #debt #geopolitics

  14. New CSS Attacks Can Break Webmail Defenses to Steal Passwords and Tokens

    Indicators extracted from public reporting. Source: portswigger.net/research/css-t

    Pulse ID: 6a76fd4556e4db3d5456afc9
    Pulse Link: otx.alienvault.com/pulse/6a76f
    Pulse Author: CyberHunter_NL
    Created: 2026-08-08 09:56:21

    Be advised, this data is unverified and should be considered preliminary. Always do further verification.

    #CyberSecurity #HTTP #HTTPS #InfoSec #NET #OTX #OpenThreatExchange #Password #Passwords #RCE #Webmail #Word #bot #CyberHunter_NL

  15. New CSS Attacks Can Break Webmail Defenses to Steal Passwords and Tokens

    Indicators extracted from public reporting. Source: portswigger.net/research/css-t

    Pulse ID: 6a76fd4556e4db3d5456afc9
    Pulse Link: otx.alienvault.com/pulse/6a76f
    Pulse Author: CyberHunter_NL
    Created: 2026-08-08 09:56:21

    Be advised, this data is unverified and should be considered preliminary. Always do further verification.

    #CyberSecurity #HTTP #HTTPS #InfoSec #NET #OTX #OpenThreatExchange #Password #Passwords #RCE #Webmail #Word #bot #CyberHunter_NL

  16. Fake Zoom Installer Delivers Overlord RAT on macOS

    A sophisticated macOS campaign has been discovered using a fake Zoom installer to deploy Overlord RAT, an open-source remote access framework. The attack employs a .NET-based downloader disguised as ZoomMeetings, representing an uncommon approach for macOS threats. The multi-stage attack fingerprints the victim's system to deliver platform-specific payloads for macOS ARM64, macOS Intel, or Windows from attacker-controlled infrastructure. The second stage deploys Overlord RAT with extensive capabilities including keylogging, screen capture, audio and webcam access, filesystem manipulation, and remote desktop streaming. The malware communicates with command-and-control servers over encrypted WebSockets and maintains persistence through LaunchAgents. The campaign shares characteristics with previous North Korean operations, including similarities to FlexibleFerret malware and the Contagious Interview campaign.

    Pulse ID: 6a758613edf8a990accc88ee
    Pulse Link: otx.alienvault.com/pulse/6a758
    Pulse Author: AlienVault
    Created: 2026-08-07 07:15:31

    Be advised, this data is unverified and should be considered preliminary. Always do further verification.

    #CyberSecurity #ICS #InfoSec #Korea #Mac #MacOS #Malware #NET #NorthKorea #OTX #OpenThreatExchange #RAT #RCE #Troll #Windows #Zoom #bot #AlienVault

  17. Fake Zoom Installer Delivers Overlord RAT on macOS

    A sophisticated macOS campaign has been discovered using a fake Zoom installer to deploy Overlord RAT, an open-source remote access framework. The attack employs a .NET-based downloader disguised as ZoomMeetings, representing an uncommon approach for macOS threats. The multi-stage attack fingerprints the victim's system to deliver platform-specific payloads for macOS ARM64, macOS Intel, or Windows from attacker-controlled infrastructure. The second stage deploys Overlord RAT with extensive capabilities including keylogging, screen capture, audio and webcam access, filesystem manipulation, and remote desktop streaming. The malware communicates with command-and-control servers over encrypted WebSockets and maintains persistence through LaunchAgents. The campaign shares characteristics with previous North Korean operations, including similarities to FlexibleFerret malware and the Contagious Interview campaign.

    Pulse ID: 6a758613edf8a990accc88ee
    Pulse Link: otx.alienvault.com/pulse/6a758
    Pulse Author: AlienVault
    Created: 2026-08-07 07:15:31

    Be advised, this data is unverified and should be considered preliminary. Always do further verification.

    #CyberSecurity #ICS #InfoSec #Korea #Mac #MacOS #Malware #NET #NorthKorea #OTX #OpenThreatExchange #RAT #RCE #Troll #Windows #Zoom #bot #AlienVault

  18. Neu in .NET 10.0 [34]: Keine doppelten Attributwerte bei JSON-Deserialisierung

    Die neue Einstellung "AllowDuplicateProperties = false" löst bei doppelten Werten in der JSON-Deserialisierung einen Laufzeitfehler aus.

    heise.de/blog/Neu-in-NET-10-0-

    #NET #DerDotnetDoktor #Developer #IT #news

  19. Neu in .NET 10.0 [34]: Keine doppelten Attributwerte bei JSON-Deserialisierung

    Die neue Einstellung "AllowDuplicateProperties = false" löst bei doppelten Werten in der JSON-Deserialisierung einen Laufzeitfehler aus.

    heise.de/blog/Neu-in-NET-10-0-

    #NET #DerDotnetDoktor #Developer #IT #news

  20. Как пишут базы данных на C#: RavenDb

    Эта база данных покоряет своей продуманностью: индексы рождаются автоматически, система обновляется без вашего участия, а защита данных стоит на страже, словно крепость. И это лишь начало её возможностей. Ознакомиться

    habr.com/ru/articles/1067642/

    #RavenDb #База_Данных #Документноориентированная #многомодельная #С# #NET #ASPNET #Oren_Eini #Создание_Базы_Данных #СУБД

  21. ENDLESSDOORS Is Phoning Home. Pick Up.

    Zbtlink routers, manufactured by Shenzhen Zhibotong Electronics and sold globally under multiple brand names including Wiflyer, contain a pre-installed backdoor implant named ENDLESSDOORS. This implant, based on the open-source rctl tool, runs as disguised userland processes named 'kworker' and continuously attempts to contact command and control servers. The backdoor provides unauthenticated remote root access through plaintext communication on ports 7000 and 7001, allowing attackers to execute arbitrary commands or spawn interactive shells without any verification. Twenty different router models are confirmed affected, all phoning home to four primary endpoints including zbtctl.epplink.net and hardcoded IP addresses hosted on Alibaba Cloud. The vulnerability is assigned CVE-2026-66747. No fixed firmware exists as the backdoor appears intentionally embedded by the manufacturer across multiple firmware versions spanning several years.

    Pulse ID: 6a734a554923448bd690f87e
    Pulse Link: otx.alienvault.com/pulse/6a734
    Pulse Author: AlienVault
    Created: 2026-08-05 14:36:05

    Be advised, this data is unverified and should be considered preliminary. Always do further verification.

    #BackDoor #Cloud #CyberSecurity #Endpoint #ICS #InfoSec #NET #OTX #OpenThreatExchange #RCE #Vulnerability #bot #AlienVault

  22. ENDLESSDOORS Is Phoning Home. Pick Up.

    Zbtlink routers, manufactured by Shenzhen Zhibotong Electronics and sold globally under multiple brand names including Wiflyer, contain a pre-installed backdoor implant named ENDLESSDOORS. This implant, based on the open-source rctl tool, runs as disguised userland processes named 'kworker' and continuously attempts to contact command and control servers. The backdoor provides unauthenticated remote root access through plaintext communication on ports 7000 and 7001, allowing attackers to execute arbitrary commands or spawn interactive shells without any verification. Twenty different router models are confirmed affected, all phoning home to four primary endpoints including zbtctl.epplink.net and hardcoded IP addresses hosted on Alibaba Cloud. The vulnerability is assigned CVE-2026-66747. No fixed firmware exists as the backdoor appears intentionally embedded by the manufacturer across multiple firmware versions spanning several years.

    Pulse ID: 6a734a554923448bd690f87e
    Pulse Link: otx.alienvault.com/pulse/6a734
    Pulse Author: AlienVault
    Created: 2026-08-05 14:36:05

    Be advised, this data is unverified and should be considered preliminary. Always do further verification.

    #BackDoor #Cloud #CyberSecurity #Endpoint #ICS #InfoSec #NET #OTX #OpenThreatExchange #RCE #Vulnerability #bot #AlienVault

  23. [Перевод] Чему десять лет в разработке научили меня о технологиях

    Размышления фулстек-инженера, который начинал с небольших сайтов, а закончил системами для банков, государства и маркетплейсов.

    habr.com/ru/articles/1067304/

    #карьера #разработка #опыт #net #софтскиллы

  24. 「MCP C#SDK」がv2.0に ~MCP登場以来“最大の改訂”に対応、既定でステートレスへ/セッションなしで対話的なツールを実現する「MRTR」も
    forest.watch.impress.co.jp/doc

    #forest_watch_impress #Microsoft #C #NET #MCP #MCP_C_SDK #genai #AIエージェント #プログラミング #Windows

  25. ScreenConnect RMM Abuse, Cloudflare Tunnels, and Trusted Software Lures Threat Intelligence, Threat Research, Threat Security

    Threat actors are conducting a multi-wave campaign using social engineering lures themed around Zoom updates, business documents, and system utilities to deploy ScreenConnect Remote Monitoring and Management agents. The operation employs VBScript droppers, batch loaders, compiled .NET executables, and HTML phishing pages, all retrieving payloads from a WsgiDAV staging server at 207.174.0.143:8080. Victims receive silently installed ScreenConnect agents that beacon to three attacker-controlled relay servers, providing persistent remote access. The campaign demonstrates technical evolution from obfuscated VBScript with XOR encryption to aggressive .NET loaders executing nine-step Windows Defender destruction sequences. Cross-platform variants target both Windows and macOS systems. All payloads are legitimately signed ConnectWise ScreenConnect MSIs, designed to evade security controls that trust code signing. The threat actor actively rotates payload hashes and recently pivoted to stealth tactics specifically...

    Pulse ID: 6a722d8bdafe1dfae681f87b
    Pulse Link: otx.alienvault.com/pulse/6a722
    Pulse Author: AlienVault
    Created: 2026-08-04 18:20:59

    Be advised, this data is unverified and should be considered preliminary. Always do further verification.

    #Cloud #ConnectWise #CyberSecurity #Encryption #HTML #ICS #InfoSec #Mac #MacOS #NET #OTX #OpenThreatExchange #Phishing #RAT #Rust #ScreenConnect #SocialEngineering #Troll #VBS #Windows #Zoom #bot #AlienVault

  26. Terminaux 6.1.x and 7.0.x are no longer supported

    Terminaux 6.1.x and 7.0.x version series were released to provide new features and enhanced performance and reliability, while 7.0.x acted like a bridge between 6.1.x and 8.x.x. This bridge was important so that the necessary infrastructure could be built for the current version of Terminaux, which is supported. This helped us implement new features smoothly while improving existing features.

    To emphasize the importance of such improvements, we’ve decided to end support for the below versions of Terminaux:

    • Terminaux 6.1.x
    • Terminaux 7.0.x

    Both versions were scheduled to end support as of today, and Terminaux 6.1.x was originally supposed to have its support ended earlier, but we extended it due to bugs that came with the official Terminaux 6.0.x release, which 6.1.x improved.

    We have marked the appropriate NuGet package versions as deprecated. If you are using Terminaux 6.1.x or 7.0.x on your console application projects, we recommend that you upgrade Terminaux to 8.x.x directly and follow the upgrade steps, depending on the direction:

    • From Terminaux 6.1.x to 8.x.x: Consider the migration guide for both 7.0.x and 8.x.x
    • From Terminaux 7.0.x to 8.x.x: Consider the migration guide for 8.x.x

    We will no longer provide any official support for users who continue to use both Terminaux 6.1.x and 7.0.x after the end of support date.

    Terminaux 8.7 will be released on August 20th, which will provide some more new features and enhancements, and the version after it will contain breaking changes you’ll have to follow during the upgrade.

    To learn more, open the Aptivi Newsroom.

    Learn more #NET #Aptivi #csharp #news #Tech #Technology #Terminaux #Terminaux6 #Terminaux61 #Terminaux7 #Terminaux70 #update