TL;DR: Amendment 13 to Israel's Privacy Protection Law has been in force since 14 August 2025. The Privacy Protection Authority can now impose fines that scale with the number of people in a database. Most engineering duties sit in the 2017 Data Security Regulations, and breaking them now costs money. For a software project that means four jobs: know what personal data the system holds, set its security level, design permissions, access logs and deletion into the spec, and treat your software vendor as a data "holder" in the contract.
Last checked: September 2026. This is general information, not legal advice.
One fault, one late report, NIS 256,000
Law firms have covered Amendment 13 in detail. Your organization meets it somewhere else: in a screen that shows data to the wrong user, an access log nobody kept, a report that waited for the investigation to end.
In July 2026 the Privacy Protection Authority (PPA) announced its first fine under Amendment 13: NIS 256,000 against the Meuhedet health fund. A fault in a digital system let members view medical information about relatives. According to the published details, the fault surfaced in November 2025 and reached the PPA in January 2026. The PPA said the duty to report "immediately" starts when you learn of the incident, and waiting for every check to finish empties the word of meaning.
Every development team has seen an authorization bug like that one. What changed is the price.
What Amendment 13 changed, in brief
According to the PPA's guide to Amendment 13 (in Hebrew):
- Personal information covers any data about a person who is identified or identifiable with reasonable effort, including online identifiers and location data.
- Information of special sensitivity includes medical and genetic data, biometric identifiers, criminal records, political and religious views, origin, personality assessments, salary and financial activity, and location data that reveals any of these.
- Controller and holder. The controller decides why data is processed. A holder is any outside party that processes data for the controller. A software house with access to your production database fits that definition.
- Registration is almost gone for private companies. A database with specially sensitive data on more than 100,000 people must instead be reported to the PPA within 30 days, with its database definitions document.
- A privacy protection officer (DPO) is mandatory for public bodies, data traders with more than 10,000 people, and any controller or holder whose core business involves systematic monitoring of people or processing specially sensitive data at significant scale. Banks, insurers, hospitals and health funds are named explicitly.
- Fines. Processing data without authorization, or beyond it, costs NIS 4 per person in the database, NIS 8 if it holds specially sensitive data, with a floor of NIS 200,000. The PPA's own example: 200,000 people with such data reach NIS 1.6 million. At the violator's request, a fine above 5% of annual turnover is cut to 5%.
- Damages without proof of harm. For specific breaches, a court can award up to NIS 10,000 per violation: collecting data without the required notice, refusing a request to see the data, or failing to make a correction or deletion you agreed to. Processing data without the controller's authorization is also a criminal offense, with up to 3 years in prison.
Which security level applies to your system?
The Privacy Protection (Data Security) Regulations, 2017 set three levels. The level drives almost every engineering decision that follows, so settle it before you draw the architecture.
- Basic: any database outside the other two levels.
- Medium: a public body's database, a database built to pass data to others, or one with data on private life, health, genetics, biometrics, criminal records, political or religious views, communications, financial status, or consumption habits that reveal these. With ten or fewer authorized users, a database with these data types stays basic.
- High: a data-trading database, or one with these data types, that also covers 100,000 people or more or has more than 100 authorized users.
| Requirement | Basic | Medium | High |
|---|---|---|---|
| Database definitions document, yearly check for excess data | Yes | Yes | Yes |
| Role-based permissions, revoked when a role ends | Yes | Yes | Yes |
| Encryption for data sent over the internet | Yes | Yes | Yes |
| Detailed agreement with every outside party that accesses the database | Yes | Yes | Yes |
| Physical identification means for remote access | No | Yes | Yes |
| Automatic access log kept for at least 24 months | No | Yes | Yes |
| Immediate report to the PPA of a severe security incident | No | Yes | Yes |
| Security audit at least every 24 months | No | Yes | Yes |
| Risk assessment and penetration tests at least every 18 months | No | No | Yes |



