Aktor Group A.I CyberSecurity Scoring
03/01/2026
Access Monitoring Plan
Access Monitoring Plan
No incidents recorded for Aktor Group in 2026.
No incidents recorded for Aktor Group in 2026.
No incidents recorded for Aktor Group in 2026.
Holding Companies
We maintain our activities in 8 industries (retail, soft drinks, beer, agriculture, automotive, stationery, energy and health) and in 20 countries with more than 80 companies, approximately 100 production facilities, 6 R&D centers and 100,000 employees. Our Group, which was founded by Yazıcı and Özilhan families in 1950, is a driving force of Turkish economy with its financial assets, its strong production capacity and the projects it is involved with. We act in accordance with our mission of being a multinational and entrepreneurial group through our partnerships with leading brands and companies of the world such as AB InBev, The Coca-Cola Company, Faber-Castell, Isuzu, Kia, Honda, Honda Marine, Johns Hopkins Medicine. ---- Bugün 20 ülkede, 80’den fazla şirketi, 100’e yakın üretim tesisi, 6 Ar-Ge merkezi ve 100.000 çalışanı ile faaliyetlerini perakende, meşrubat, bira, tarım, otomotiv, kırtasiye, enerji ve sağlık olmak üzere 8 sektörde sürdürüyor. 1950 yılında Yazıcı ve Özilhan aileleri tarafından kurulan Grup, hem rakamsal verileri ve üretim gücü hem de geliştirdiği ve içinde yer aldığı projelerle Türkiye ekonomisinin en büyük itici güçlerinden biri konumundadır. AB InBev, The Coca-Cola Company, Faber-Castell, Isuzu, Itochu, Kia, Honda, Honda Marine, Johns Hopkins Medicine gibi alanlarında dünyanın önde gelen isimleri olan markalarla ve şirketlerle kurduğu ortaklıklarla çok uluslu ve girişimci bir grup olma misyonu doğrultusunda hareket ediyor.
Koç Holding is Turkey’s leading investment holding company and Koç Group is Turkey's largest industrial and services group in terms of revenues, exports, number of employees, taxes paid and market capitalization on Borsa Istanbul. Being the only Turkish company to be ranked in Fortune Global 500 List and in Forbes World’s Best Employers List, Koç Holding has leading positions with strong competitive advantages in energy, automotive, consumer durables and finance sectors.
Godrej was founded in 1897 by Ardeshir Godrej to help build India’s economic independence. A significant portion of our profits from our innovations was donated to India’s freedom movement. During the Spanish Flu pandemic of 1918, we made the first soap from vegetable oil with no animal fat. In 1951, we crafted the ballot boxes for India's first general election, giving both women and men the equal right to vote. At the Godrej Industries Group (GIG), we are committed to growing this legacy. The revenue of the Group is USD 6.1Bn with a market capitalization of USD 27.5 Bn (as of 31 March 2024). By serving over 1.1 Bn consumers globally through are businesses with market leadership positions in consumer products, real estate, agriculture, financial services, and chemicals. Godrej Consumer Products is an FMCG leader in Home and Personal Care in Asia, Africa, and Latin America. Godrej Properties is India’s leading real estate developer by sales. Godrej Agrovet, including its production of compound feed and crude palm oil, addresses key challenges in Indian agriculture, improving productivity for farmers. Godrej Chemicals, our oldest business, services diverse industrial applications through one of India’s largest oleo-chemicals, derivatives, and specialty chemical portfolios. Godrej Fund Management is the real estate private equity arm, and Godrej Capital, the newest company, has a fast-growing financial services business. We believe we are only as good as what we do next. We strive to continuously improve our business and impact on the world, shaping a more sustainable and responsible future by placing our planet and people alongside profit. Through Godrej Good & Green, we aim to create a more inclusive and greener planet, aligned with the United Nations Sustainable Development Goals and the needs of local communities. At the Godrej DEI Lab, we empower inclusion within the group, build DEI ecosystems and bring DEI-related ideas and innovation to the mainstream.
Latest updates, reports, and threat intel affecting the global network.
London, United Kingdom--(Newsfile Corp. - May 24, 2023) - Intrakat Group, an industry leader in Greece's construction, infrastructure,...
vLLM is an inference and serving engine for large language models (LLMs). Prior to 0.23.1rc0, the fix for CVE-2026-22778, which introduced a sanitize_message helper that strips object-repr memory addresses from error messages before they reach the client, is incomplete: several response paths echo str(exc) directly to clients without calling sanitize_message. The unsanitized sites include the Anthropic API router in vllm/entrypoints/anthropic/api_router.py (the POST /v1/messages and POST /v1/messages/count_tokens handlers), the Server-Sent Events streaming converter in vllm/entrypoints/anthropic/serving.py, and the realtime speech-to-text WebSocket in vllm/entrypoints/speech_to_text/realtime/connection.py. These paths catch the exception inside the route coroutine and construct the JSONResponse themselves, bypassing the sanitizing global FastAPI exception handler, and WebSocket frames do not traverse that handler chain at all. Using the same primitive as the parent issue, an unauthenticated attacker can send malformed image bytes through the Anthropic Messages API image content parts so that PIL.Image.open raises an UnidentifiedImageError whose message contains the BytesIO object repr, leaking the heap memory address verbatim in the error.message field of the response body. This vulnerability is fixed in 0.23.1rc0.
vLLM is an inference and serving engine for large language models (LLMs). Prior to 0.23.1rc0, ll temperature validation gates use comparison operators (<, >), which silently evaluate to False for NaN and for positive Infinity in Python's IEEE 754 float semantics. Both values pass every guard and propagate to GPU sampling kernels, where they produce undefined behavior or CUDA errors that can crash the inference worker. This vulnerability is fixed in 0.23.1rc0.
vLLM is an inference and serving engine for large language models (LLMs). Prior to 0.23.1rc0, vLLM's /v1/audio/transcriptions endpoint limits compressed upload size but not decoded PCM output. A 25MB OPUS file expands to ~14.9GB of float32 PCM at decode time. This vulnerability is fixed in 0.23.1rc0.
vLLM is an inference and serving engine for large language models (LLMs). Prior to 0.22.1, the vLLM Dockerfile is vulnerable to a dependency confusion attack through the flashinfer-jit-cache package. The package is installed from a custom index (flashinfer.ai/whl/) using --extra-index-url, but the package name was not registered on PyPI, and UV_INDEX_STRATEGY="unsafe-best-match" is set globally. An attacker who registers flashinfer-jit-cache on PyPI with version 0.6.11.post2 can execute arbitrary code as root during the Docker build and backdoor every resulting container image, enabling exfiltration of all user prompts, API credentials, and model data from production vLLM deployments This vulnerability is fixed in 0.22.1.
vLLM is an inference and serving engine for large language models (LLMs). From 0.5.5 until 0.23.1rc0, integer truncation of tensor dimensions in vLLM's GGUF dequantize kernels (csrc/quantization/gguf/gguf_kernel.cu) causes partial tensor processing. The output tensor is allocated at full size via torch::empty (uninitialized memory), but the dequantize CUDA kernel processes only a truncated number of elements. The unfilled portion of the output tensor retains whatever was previously in GPU memory. In multi-tenant inference deployments, this residual GPU memory may contain tensor data from other users' inference requests, constituting information disclosure. This vulnerability is fixed in 0.23.1rc0.
curl -i -X GET 'https://api.rankiteo.com/underwriter-getcompany-history?
linkedin_id=axa' -H 'apikey: YOUR_API_KEY_HERE'
Every week, Rankiteo analyzes billions of signals to give organizations a sharper, faster view of emerging risks. With deeper, more actionable intelligence at their fingertips, security teams can outpace threat actors, respond instantly to Zero-Day attacks, and dramatically shrink their risk exposure window.
Rankiteo is a unified scoring and risk platform that analyzes billions of signals weekly to help organizations gain faster, more actionable insights into emerging threats. Empowering teams to outpace adversaries and reduce exposure.