KCSC A.I CyberSecurity Scoring
01/04/2026
Access Monitoring Plan
Access Monitoring Plan
No incidents recorded for King's College School, Cascais in 2026.
No incidents recorded for King's College School, Cascais in 2026.
No incidents recorded for King's College School, Cascais in 2026.
Prince George's County Public Schools (PGCPS), one of the nation's 25 largest school districts, has 200 schools and centers, more than 133,000 students and 22,000 employees. The school system serves a diverse student population from urban, suburban and rural communities located in the Washington, DC suburbs. PGCPS is nationally recognized for innovative programs and initiatives that provide students with unique learning opportunities, including arts integration, environmental and financial literacy, and language immersion.
The Toronto District School Board (TDSB) is the largest and one of the most diverse school boards in Canada, and recognized by Forbes and Statista as one of Canada's Best Employers for Diversity for 2023. We serve more than 239,000 students in 582 schools throughout Toronto, and more than 100,000 lifelong learners in our Adult and Continuing Education programs. The TDSB’s Director is supported by the Senior Team and is responsible for: • serving our students and communities • improving academic performance • managing business services • providing staff support • operating and maintaining our buildings The Board is also supported by 22 publicly elected Trustees. Our Trustees work to ensure that all of our students realize their potential and succeed. They are advocates for education and are the voice of the public, ensuring all concerns are addressed.
The Peel District School Board serves more than 156,000 students in kindergarten to grade 12. Operating more than 257 schools in the municipalities of Brampton, Caledon and Mississauga, the Peel board is the largest employer in Peel. At the Peel board, we inspire success, confidence and hope in each student. Everything we do is designed to help all students reach high levels of achievement—starting with a long list of available programs and support services. If you are interested in working at the Peel board, visit our online job database: www.peelschools.org/jobs/jobpostings For updates and more information, follow us on Twitter and Instagram at @Peelschools or like us on Facebook.
Gwinnett County Public Schools (GCPS), located in the metro Atlanta area, is the largest school system in Georgia and the 11th largest school district in the country, offering education professionals and support staff endless opportunities to SHINE. GCPS is one of the nation’s top urban school districts. What distinguishes this school system from others is a strong curriculum, the most talented teachers in the profession, well-equipped facilities, and an enviable level of parental involvement and community support. Gwinnett County citizens highly value the vital role education plays in building a thriving, global community and strongly support the school system’s pursuit of excellence. Excellent teachers, involved parents, and a supportive community are key elements in the district’s quest to become a system of world-class schools – and, together, we SHINE!
New York City Public Schools (NYCPS) is the largest public school system in the United States, serving approximately 1 million students across more than 1,600 schools in all five boroughs. Our schools are powered by over 75,000 teachers and thousands of paraprofessionals, school counselors, social workers, administrators, and central office professionals—each playing a vital role in delivering bright starts and bold futures for every student. NYCPS reflects the city it serves: vibrant, diverse, and dynamic. We are deeply committed to equity, inclusion, and excellence in education. Our workforce mirrors the cultural richness of New York City, and we actively recruit individuals from all backgrounds to help shape the future of urban education. Whether you're looking to teach, support, lead, or innovate—there’s a place for you at NYC Public Schools. Join us in building a school system where every student is seen, supported, and set up to thrive.
Fairfax County Public Schools (FCPS), located in Northern Virginia, is the nation’s 9th largest public school system, serves a diverse population of more than 180,000 students in grades prekindergarten through 12. Fairfax County high schools are recognized annually by the Washington Post as being among the most challenging high schools in the U.S. FCPS is the third largest employer in Virginia, with 24,600 full-time staff positions. Outstanding benefits including medical insurance, dental insurance, retirement plans, life insurance, flexible spending accounts, sick and personal leave, disability programs, and long-term care insurance are available for eligible employees. Staff development and training is available through academy classes, in-service training, and master’s degree cohort programs. Full-time technology support teachers are in each school; additionally, an on-line resource for FCPS students to extend learning beyond the traditional day is accessible through the 24-7 Learning System. “Great Beginnings” provides mentoring to all teachers new to the county, and “Savings for Staff” incentives help to make your relocation an easy one.
Hillsborough County Public Schools is the seventh largest school district in the nation, with more than 210,000 students. More than 50,000 students attend a school through one of the district’s many school choice programs. HCPS is the largest employer in Hillsborough County, with more than 24,000 employees. Due to our commitment to creating mentally healthy workplaces, we are proud recipients of the 2024 Silver Bell Seal for Workplace Mental Health. Dr. Clayton Nylund, a physics and engineering teacher at Blake High School here at HCPS, has been named a 2025 Florida Teacher of the Year finalist! HCPS has more than 270 school sites including 141 K-5 elementary schools, 43 middle schools, 27 high schools, 5 K-8 schools and 47 charter schools. HCPS features many distinct programs, which provide students with unique learning opportunities. Examples of these programs include Magnet, International Baccalaureate, Career and Technical Education, and Advanced Academics, such as Advanced Placement and Dual Enrollment courses.
Montgomery County Public Schools (MCPS), located in Maryland outside of Washington, D.C., is the largest school district in the state. MCPS has 209 schools and serves a diverse population of more than 160,000 students. MCPS offers competitive salaries and benefits, has a nationally recognized professional growth system and is committed to hiring and retaining a highly effective and diverse workforce. We hire for excellence. Please visit our website to view our current job vacancies and for information on how to apply. http://www.montgomeryschoolsmd.org/departments/personnel/
The COBB COUNTY SCHOOL DISTRICT is a public school system with administrative offices based at 514 Glover St., Marietta, GA 30060. Cobb County School District (CCSD) is the second largest school system in Georgia. CCSD is responsible for educating more than 112,000 students in a diverse, constantly changing suburban environment. CCSD is made up of 113 schools and employs over 18,000 employees, making it the largest employer in Cobb County, GA. Our mission is Creating and Supporting Pathways for Success. Our vision is One Team, One Goal: Student Success.
Latest updates, reports, and threat intel affecting the global network.
In Zephyr's userspace dynamic-objects subsystem, thread_idx_alloc() in kernel/userspace/userspace.c allocated a new thread permission index from the global _thread_idx_map[] bitmap without holding lists_lock. On SMP systems, two user-mode threads invoking the k_object_alloc(K_OBJ_THREAD) syscall concurrently can both observe the same low free bit, perform the same non-atomic RMW to clear it, and return the identical tidx. The two newly created K_OBJ_THREAD objects are then assigned the same thread_id, so the two user threads alias a single bit position in every kernel object's perms[] bitfield: any subsequent grant of access on a kernel object to one thread is implicitly a grant to the other, defeating userspace ACL isolation. A secondary lost-update window between the unlocked &=~BIT() in alloc and the locked |= BIT() in thread_idx_free() can also leak entries from the thread-index pool. The defect is reachable from any user-mode thread via the unrestricted __syscall k_object_alloc and is gated on CONFIG_USERSPACE, CONFIG_DYNAMIC_OBJECTS, and CONFIG_SMP. The flaw was introduced when the per-thread permission index was added in 2018 and is present in every release up to and including v4.4.0. Fixed by holding lists_lock across the bitmap RMW and the permissions clear (and inlining the obj_list traversal that previously took the lock itself).
OpenRemote before 1.26.2 contains an authentication bypass vulnerability in the console registration API that allows unauthenticated attackers to update existing console assets by supplying a known asset identifier. Attackers can overwrite push notification tokens and console metadata without authentication or ownership validation, redirecting notifications or denying delivery to legitimate consoles.
SiYuan before v3.7.2 contains a missing authorization vulnerability in the POST /mcp kernel endpoint, which is gated only by a general auth check (model.CheckAuth) with no admin-role or read-only enforcement. This exposes 31 MCP tools, including a file tool with list/read/write/delete/rename/copy actions across the entire workspace. When the Publish server is enabled in anonymous mode (Conf.Publish.Enable=true and Conf.Publish.Auth.Enable=false), the Publish reverse proxy attaches an anonymous RoleReader JWT to proxied requests, allowing a remote unauthenticated attacker to reach /mcp. The attacker can read conf/conf.json to extract accessAuthCode, api.token, and cookieKey in plaintext, write arbitrary files in the workspace, and plant a plugin into data/plugins/ that executes with nodeIntegration:true and no contextIsolation on the next desktop launch, leading to administrator takeover.
ImageMagick before 7.1.2-27 contains a memory leak vulnerability in the magick command-line interface when invalid options are provided. Attackers can trigger memory exhaustion by repeatedly supplying malformed command-line arguments to consume system resources.
In the Linux kernel, the following vulnerability has been resolved: crypto: qat - remove unused character device and IOCTLs The QAT driver exposes a character device (qat_adf_ctl) with IOCTLs for device configuration, start, stop, status query and enumeration. These IOCTLs are not part of any public uAPI header and have no known in-tree or out-of-tree users. Device lifecycle is already managed via sysfs. The ioctl interface also increases the attack surface and is the subject of a number of bug reports. Remove the character device, the IOCTL definitions, and the related data structures (adf_dev_status_info, adf_user_cfg_key_val, adf_user_cfg_section, adf_user_cfg_ctl_data). Drop the now-unused adf_cfg_user.h header and strip adf_ctl_drv.c down to the minimal module_init/module_exit hooks for workqueue, AER, and crypto/compression algorithm registration. Clean up leftover dead code that was only reachable from the removed IOCTL paths: adf_cfg_del_all(), adf_devmgr_verify_id(), adf_devmgr_get_num_dev(), adf_devmgr_get_dev_by_id(), adf_get_vf_real_id() and the unused ADF_CFG macros. Additionally, drop the entry associated to QAT IOCTLs in ioctl-number.rst.
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.