Java Gotchas - Bitwise vs Boolean Operators
Java Gotchas - Bitwise vs Boolean Operators
> "Java Gotcha" - a common mistake pattern that is easy to accidentally implement.
A fairly simple Java Gotcha to accidentally fall into is: using a Bitwise operator instead of a Boolean Comparison operator.
e.g. a simple mistype can result in writing "&" when you really meant to write "&&".
A common heuristic we learn when reviewing code is:
> "&" or "|" when used in a conditional statement is probably not intended.
In this blog post, we will explore the heuristic and identify ways we can identify and fix this coding issue.
What's the Problem? Bitwise operations work fine with Booleans
Using Bitwise operators with Booleans is perfectly valid, so Java will not report a syntax error.
If I construct a JUnit Test to explore a truth table for both Bitwise OR (|) and Bitwise AND (&) then we will see that the outputs from the Bitwise operator match the truth table. Given this, we might think that the use of Bitwise operators is not an issue.
AND Truth Table
@Test
void bitwiseOperatorsAndTruthTable(){
Assertions.assertEquals(true, true & true);
Assertions.assertEquals(false, true & false);
Assertions.assertEquals(false, false & true);
Assertions.assertEquals(false, false & false);
}
The test passes, this is perfectly valid Java.
OR Truth Table
@Test
void bitwiseOperatorsOrTruthTable(){
Assertions.assertEquals(true, true | true);
Assertions.assertEquals(true, true | false);
Assertions.assertEquals(true, false | true);
Assertions.assertEquals(false, false | false);
}
This test also passes, why do we prefer "&&'and "||'?
Truth table images were created using the truth table tool from web.standfor.edu.
Issue: Short Circuit Operation
The real issue is the difference in behaviour between Bitwise (&, |) and Boolean (&&, ||) operators.
A Boolean operator is a short circuit operator and only evaluates as much as it needs to.
e.g.
if (args != null & args.length() > 23) {
System.out.println(args);
}
In the above code, both boolean conditions will evaluate, because the Bitwise operator has been used:
- args != null
- args.length() > 23
This leaves my code open to a NullPointerException if args is null because we will always perform the check for args.length, even when args is null because both boolean conditions have to be evaluated.
Boolean Operators Short Circuit Evaluation
When an && is used e.g.
if (args != null && args.length() > 23) {
System.out.println(args);
}
As soon as we know that args != null evaluates to false the condition expression evaluation stops.
We don't need to evaluate the right-hand side.
Whatever the outcome of the right-hand side condition, the final value of the Boolean expression will be false.
But this would never happen in production code
This is a pretty easy mistake to make and is not always picked up by Static Analysis tools.
I used the following Google Dork to see if I could find any public examples of this pattern:
filetype:java if "!=null & "
This search brought back some code from Android in the RootWindowContainer
isDocument = intent != null & intent.isDocument()
This is the type of code that might pass a code review because we often do use Bitwise operators in assignment statements to mask values. But in this instance, the outcome is the same as the if statement example above. If intent is ever null, then a NullPointerException will be thrown.
Very often we get away with this construct because we often code defensively and write redundant code. The check for != null may well be redundant in most use cases.
This is an error made by programmers in production code.
I don't know how current the results for the search are, but when I ran the search there were results back with code from: Google, Amazon, Apache... and me.
A recent pull request on one of my open source projects was to address exactly this error.
if(type!=null & type.trim().length()>0){
acceptMediaTypeDefinitionsList.add(type.trim());
}
How to Find This
When I checked my sample code in a few static analysers, none of them picked up this hidden self-destruct code.
As a team at Secure Code Warrior, we created and reviewed a fairly simple Sensei recipe that could pick this up.
Because Bitwise operators are perfectly valid, and often used in assignments we focussed on the use-case of if statements, and the use of Bitwise &, to find the problematic code.
search:
expression:
anyOf:
- in:
condition: {}
value:
caseSensitive: false
matches: ".* & .*"
This uses a regular expression to match " & " when it is used as a condition expression. e.g. in an if statement.
To fix it, we again relied on regular expressions. This time using the sed function in the QuickFix to globally replace the & in the expression with &&.
availableFixes:
- name: "Replace bitwise AND operator to logical AND operator"
actions:
- rewrite:
to: "{{#sed}}s/&/&&/g,{{{ . }}}{{/sed}}"
End Notes
This covers the most common misuse of a Bitwise operator, i.e. when a Boolean operator was actually intended.
There are other situations where this could crop up e.g. the assignment example, but when writing recipes we have to attempt to avoid false-positive identification, otherwise recipes will be ignored or turned off. We build recipes to match the most common occurrences. As Sensei evolves, we may well add additional specificity into the search functionality to cover more matching conditions.
In its current form, this recipe would identify many of the live use-cases, and most importantly, the one that was reported in my project.
NOTE: A fair few code warriors contributed to this example and recipe review - Charlie Eriksen, Matthieu Calie, Robin Claerhaut, Brysen Ackx, Nathan Desmet, Downey Robersscheuten. Thanks for your help.
---
You can install Sensei from within IntelliJ using "Preferences \ Plugins" (Mac) or "Settings \ Plugins" (Windows) then just search for "sensei secure code"
We have a lot of source code and recipes for these blog posts (including this one) in the `sensei-blog-examples` repository in the Secure Code Warrior GitHub account.
https://github.com/securecodewarrior/sensei-blog-examples
In this blog post we take a look at a common Java coding mistake (using a bitwise operator instead of a conditional operator), the error it makes our code vulnerable to, and how we can use Sensei to fix and detect the issue.
Alan Richardson has more than twenty years of professional IT experience, working as a developer and at every level of the testing hierarchy from Tester through to Head of Testing. Head of Developer Relations at Secure Code Warrior, he works directly with teams, to improve the development of quality secure code. Alan is the author of four books including “Dear Evil Tester”, and “Java For Testers”. Alan has also created online training courses to help people learn Technical Web Testing and Selenium WebDriver with Java. Alan posts his writing and training videos on SeleniumSimplified.com, EvilTester.com, JavaForTesters.com, and CompendiumDev.co.uk.
Secure Code Warrior is here for your organization to help you secure code across the entire software development lifecycle and create a culture in which cybersecurity is top of mind. Whether you’re an AppSec Manager, Developer, CISO, or anyone involved in security, we can help your organization reduce risks associated with insecure code.
Book a demoAlan Richardson has more than twenty years of professional IT experience, working as a developer and at every level of the testing hierarchy from Tester through to Head of Testing. Head of Developer Relations at Secure Code Warrior, he works directly with teams, to improve the development of quality secure code. Alan is the author of four books including “Dear Evil Tester”, and “Java For Testers”. Alan has also created online training courses to help people learn Technical Web Testing and Selenium WebDriver with Java. Alan posts his writing and training videos on SeleniumSimplified.com, EvilTester.com, JavaForTesters.com, and CompendiumDev.co.uk.
Java Gotchas - Bitwise vs Boolean Operators
> "Java Gotcha" - a common mistake pattern that is easy to accidentally implement.
A fairly simple Java Gotcha to accidentally fall into is: using a Bitwise operator instead of a Boolean Comparison operator.
e.g. a simple mistype can result in writing "&" when you really meant to write "&&".
A common heuristic we learn when reviewing code is:
> "&" or "|" when used in a conditional statement is probably not intended.
In this blog post, we will explore the heuristic and identify ways we can identify and fix this coding issue.
What's the Problem? Bitwise operations work fine with Booleans
Using Bitwise operators with Booleans is perfectly valid, so Java will not report a syntax error.
If I construct a JUnit Test to explore a truth table for both Bitwise OR (|) and Bitwise AND (&) then we will see that the outputs from the Bitwise operator match the truth table. Given this, we might think that the use of Bitwise operators is not an issue.
AND Truth Table
@Test
void bitwiseOperatorsAndTruthTable(){
Assertions.assertEquals(true, true & true);
Assertions.assertEquals(false, true & false);
Assertions.assertEquals(false, false & true);
Assertions.assertEquals(false, false & false);
}
The test passes, this is perfectly valid Java.
OR Truth Table
@Test
void bitwiseOperatorsOrTruthTable(){
Assertions.assertEquals(true, true | true);
Assertions.assertEquals(true, true | false);
Assertions.assertEquals(true, false | true);
Assertions.assertEquals(false, false | false);
}
This test also passes, why do we prefer "&&'and "||'?
Truth table images were created using the truth table tool from web.standfor.edu.
Issue: Short Circuit Operation
The real issue is the difference in behaviour between Bitwise (&, |) and Boolean (&&, ||) operators.
A Boolean operator is a short circuit operator and only evaluates as much as it needs to.
e.g.
if (args != null & args.length() > 23) {
System.out.println(args);
}
In the above code, both boolean conditions will evaluate, because the Bitwise operator has been used:
- args != null
- args.length() > 23
This leaves my code open to a NullPointerException if args is null because we will always perform the check for args.length, even when args is null because both boolean conditions have to be evaluated.
Boolean Operators Short Circuit Evaluation
When an && is used e.g.
if (args != null && args.length() > 23) {
System.out.println(args);
}
As soon as we know that args != null evaluates to false the condition expression evaluation stops.
We don't need to evaluate the right-hand side.
Whatever the outcome of the right-hand side condition, the final value of the Boolean expression will be false.
But this would never happen in production code
This is a pretty easy mistake to make and is not always picked up by Static Analysis tools.
I used the following Google Dork to see if I could find any public examples of this pattern:
filetype:java if "!=null & "
This search brought back some code from Android in the RootWindowContainer
isDocument = intent != null & intent.isDocument()
This is the type of code that might pass a code review because we often do use Bitwise operators in assignment statements to mask values. But in this instance, the outcome is the same as the if statement example above. If intent is ever null, then a NullPointerException will be thrown.
Very often we get away with this construct because we often code defensively and write redundant code. The check for != null may well be redundant in most use cases.
This is an error made by programmers in production code.
I don't know how current the results for the search are, but when I ran the search there were results back with code from: Google, Amazon, Apache... and me.
A recent pull request on one of my open source projects was to address exactly this error.
if(type!=null & type.trim().length()>0){
acceptMediaTypeDefinitionsList.add(type.trim());
}
How to Find This
When I checked my sample code in a few static analysers, none of them picked up this hidden self-destruct code.
As a team at Secure Code Warrior, we created and reviewed a fairly simple Sensei recipe that could pick this up.
Because Bitwise operators are perfectly valid, and often used in assignments we focussed on the use-case of if statements, and the use of Bitwise &, to find the problematic code.
search:
expression:
anyOf:
- in:
condition: {}
value:
caseSensitive: false
matches: ".* & .*"
This uses a regular expression to match " & " when it is used as a condition expression. e.g. in an if statement.
To fix it, we again relied on regular expressions. This time using the sed function in the QuickFix to globally replace the & in the expression with &&.
availableFixes:
- name: "Replace bitwise AND operator to logical AND operator"
actions:
- rewrite:
to: "{{#sed}}s/&/&&/g,{{{ . }}}{{/sed}}"
End Notes
This covers the most common misuse of a Bitwise operator, i.e. when a Boolean operator was actually intended.
There are other situations where this could crop up e.g. the assignment example, but when writing recipes we have to attempt to avoid false-positive identification, otherwise recipes will be ignored or turned off. We build recipes to match the most common occurrences. As Sensei evolves, we may well add additional specificity into the search functionality to cover more matching conditions.
In its current form, this recipe would identify many of the live use-cases, and most importantly, the one that was reported in my project.
NOTE: A fair few code warriors contributed to this example and recipe review - Charlie Eriksen, Matthieu Calie, Robin Claerhaut, Brysen Ackx, Nathan Desmet, Downey Robersscheuten. Thanks for your help.
---
You can install Sensei from within IntelliJ using "Preferences \ Plugins" (Mac) or "Settings \ Plugins" (Windows) then just search for "sensei secure code"
We have a lot of source code and recipes for these blog posts (including this one) in the `sensei-blog-examples` repository in the Secure Code Warrior GitHub account.
https://github.com/securecodewarrior/sensei-blog-examples
Java Gotchas - Bitwise vs Boolean Operators
> "Java Gotcha" - a common mistake pattern that is easy to accidentally implement.
A fairly simple Java Gotcha to accidentally fall into is: using a Bitwise operator instead of a Boolean Comparison operator.
e.g. a simple mistype can result in writing "&" when you really meant to write "&&".
A common heuristic we learn when reviewing code is:
> "&" or "|" when used in a conditional statement is probably not intended.
In this blog post, we will explore the heuristic and identify ways we can identify and fix this coding issue.
What's the Problem? Bitwise operations work fine with Booleans
Using Bitwise operators with Booleans is perfectly valid, so Java will not report a syntax error.
If I construct a JUnit Test to explore a truth table for both Bitwise OR (|) and Bitwise AND (&) then we will see that the outputs from the Bitwise operator match the truth table. Given this, we might think that the use of Bitwise operators is not an issue.
AND Truth Table
@Test
void bitwiseOperatorsAndTruthTable(){
Assertions.assertEquals(true, true & true);
Assertions.assertEquals(false, true & false);
Assertions.assertEquals(false, false & true);
Assertions.assertEquals(false, false & false);
}
The test passes, this is perfectly valid Java.
OR Truth Table
@Test
void bitwiseOperatorsOrTruthTable(){
Assertions.assertEquals(true, true | true);
Assertions.assertEquals(true, true | false);
Assertions.assertEquals(true, false | true);
Assertions.assertEquals(false, false | false);
}
This test also passes, why do we prefer "&&'and "||'?
Truth table images were created using the truth table tool from web.standfor.edu.
Issue: Short Circuit Operation
The real issue is the difference in behaviour between Bitwise (&, |) and Boolean (&&, ||) operators.
A Boolean operator is a short circuit operator and only evaluates as much as it needs to.
e.g.
if (args != null & args.length() > 23) {
System.out.println(args);
}
In the above code, both boolean conditions will evaluate, because the Bitwise operator has been used:
- args != null
- args.length() > 23
This leaves my code open to a NullPointerException if args is null because we will always perform the check for args.length, even when args is null because both boolean conditions have to be evaluated.
Boolean Operators Short Circuit Evaluation
When an && is used e.g.
if (args != null && args.length() > 23) {
System.out.println(args);
}
As soon as we know that args != null evaluates to false the condition expression evaluation stops.
We don't need to evaluate the right-hand side.
Whatever the outcome of the right-hand side condition, the final value of the Boolean expression will be false.
But this would never happen in production code
This is a pretty easy mistake to make and is not always picked up by Static Analysis tools.
I used the following Google Dork to see if I could find any public examples of this pattern:
filetype:java if "!=null & "
This search brought back some code from Android in the RootWindowContainer
isDocument = intent != null & intent.isDocument()
This is the type of code that might pass a code review because we often do use Bitwise operators in assignment statements to mask values. But in this instance, the outcome is the same as the if statement example above. If intent is ever null, then a NullPointerException will be thrown.
Very often we get away with this construct because we often code defensively and write redundant code. The check for != null may well be redundant in most use cases.
This is an error made by programmers in production code.
I don't know how current the results for the search are, but when I ran the search there were results back with code from: Google, Amazon, Apache... and me.
A recent pull request on one of my open source projects was to address exactly this error.
if(type!=null & type.trim().length()>0){
acceptMediaTypeDefinitionsList.add(type.trim());
}
How to Find This
When I checked my sample code in a few static analysers, none of them picked up this hidden self-destruct code.
As a team at Secure Code Warrior, we created and reviewed a fairly simple Sensei recipe that could pick this up.
Because Bitwise operators are perfectly valid, and often used in assignments we focussed on the use-case of if statements, and the use of Bitwise &, to find the problematic code.
search:
expression:
anyOf:
- in:
condition: {}
value:
caseSensitive: false
matches: ".* & .*"
This uses a regular expression to match " & " when it is used as a condition expression. e.g. in an if statement.
To fix it, we again relied on regular expressions. This time using the sed function in the QuickFix to globally replace the & in the expression with &&.
availableFixes:
- name: "Replace bitwise AND operator to logical AND operator"
actions:
- rewrite:
to: "{{#sed}}s/&/&&/g,{{{ . }}}{{/sed}}"
End Notes
This covers the most common misuse of a Bitwise operator, i.e. when a Boolean operator was actually intended.
There are other situations where this could crop up e.g. the assignment example, but when writing recipes we have to attempt to avoid false-positive identification, otherwise recipes will be ignored or turned off. We build recipes to match the most common occurrences. As Sensei evolves, we may well add additional specificity into the search functionality to cover more matching conditions.
In its current form, this recipe would identify many of the live use-cases, and most importantly, the one that was reported in my project.
NOTE: A fair few code warriors contributed to this example and recipe review - Charlie Eriksen, Matthieu Calie, Robin Claerhaut, Brysen Ackx, Nathan Desmet, Downey Robersscheuten. Thanks for your help.
---
You can install Sensei from within IntelliJ using "Preferences \ Plugins" (Mac) or "Settings \ Plugins" (Windows) then just search for "sensei secure code"
We have a lot of source code and recipes for these blog posts (including this one) in the `sensei-blog-examples` repository in the Secure Code Warrior GitHub account.
https://github.com/securecodewarrior/sensei-blog-examples
Click on the link below and download the PDF of this resource.
Secure Code Warrior is here for your organization to help you secure code across the entire software development lifecycle and create a culture in which cybersecurity is top of mind. Whether you’re an AppSec Manager, Developer, CISO, or anyone involved in security, we can help your organization reduce risks associated with insecure code.
View reportBook a demoAlan Richardson has more than twenty years of professional IT experience, working as a developer and at every level of the testing hierarchy from Tester through to Head of Testing. Head of Developer Relations at Secure Code Warrior, he works directly with teams, to improve the development of quality secure code. Alan is the author of four books including “Dear Evil Tester”, and “Java For Testers”. Alan has also created online training courses to help people learn Technical Web Testing and Selenium WebDriver with Java. Alan posts his writing and training videos on SeleniumSimplified.com, EvilTester.com, JavaForTesters.com, and CompendiumDev.co.uk.
Java Gotchas - Bitwise vs Boolean Operators
> "Java Gotcha" - a common mistake pattern that is easy to accidentally implement.
A fairly simple Java Gotcha to accidentally fall into is: using a Bitwise operator instead of a Boolean Comparison operator.
e.g. a simple mistype can result in writing "&" when you really meant to write "&&".
A common heuristic we learn when reviewing code is:
> "&" or "|" when used in a conditional statement is probably not intended.
In this blog post, we will explore the heuristic and identify ways we can identify and fix this coding issue.
What's the Problem? Bitwise operations work fine with Booleans
Using Bitwise operators with Booleans is perfectly valid, so Java will not report a syntax error.
If I construct a JUnit Test to explore a truth table for both Bitwise OR (|) and Bitwise AND (&) then we will see that the outputs from the Bitwise operator match the truth table. Given this, we might think that the use of Bitwise operators is not an issue.
AND Truth Table
@Test
void bitwiseOperatorsAndTruthTable(){
Assertions.assertEquals(true, true & true);
Assertions.assertEquals(false, true & false);
Assertions.assertEquals(false, false & true);
Assertions.assertEquals(false, false & false);
}
The test passes, this is perfectly valid Java.
OR Truth Table
@Test
void bitwiseOperatorsOrTruthTable(){
Assertions.assertEquals(true, true | true);
Assertions.assertEquals(true, true | false);
Assertions.assertEquals(true, false | true);
Assertions.assertEquals(false, false | false);
}
This test also passes, why do we prefer "&&'and "||'?
Truth table images were created using the truth table tool from web.standfor.edu.
Issue: Short Circuit Operation
The real issue is the difference in behaviour between Bitwise (&, |) and Boolean (&&, ||) operators.
A Boolean operator is a short circuit operator and only evaluates as much as it needs to.
e.g.
if (args != null & args.length() > 23) {
System.out.println(args);
}
In the above code, both boolean conditions will evaluate, because the Bitwise operator has been used:
- args != null
- args.length() > 23
This leaves my code open to a NullPointerException if args is null because we will always perform the check for args.length, even when args is null because both boolean conditions have to be evaluated.
Boolean Operators Short Circuit Evaluation
When an && is used e.g.
if (args != null && args.length() > 23) {
System.out.println(args);
}
As soon as we know that args != null evaluates to false the condition expression evaluation stops.
We don't need to evaluate the right-hand side.
Whatever the outcome of the right-hand side condition, the final value of the Boolean expression will be false.
But this would never happen in production code
This is a pretty easy mistake to make and is not always picked up by Static Analysis tools.
I used the following Google Dork to see if I could find any public examples of this pattern:
filetype:java if "!=null & "
This search brought back some code from Android in the RootWindowContainer
isDocument = intent != null & intent.isDocument()
This is the type of code that might pass a code review because we often do use Bitwise operators in assignment statements to mask values. But in this instance, the outcome is the same as the if statement example above. If intent is ever null, then a NullPointerException will be thrown.
Very often we get away with this construct because we often code defensively and write redundant code. The check for != null may well be redundant in most use cases.
This is an error made by programmers in production code.
I don't know how current the results for the search are, but when I ran the search there were results back with code from: Google, Amazon, Apache... and me.
A recent pull request on one of my open source projects was to address exactly this error.
if(type!=null & type.trim().length()>0){
acceptMediaTypeDefinitionsList.add(type.trim());
}
How to Find This
When I checked my sample code in a few static analysers, none of them picked up this hidden self-destruct code.
As a team at Secure Code Warrior, we created and reviewed a fairly simple Sensei recipe that could pick this up.
Because Bitwise operators are perfectly valid, and often used in assignments we focussed on the use-case of if statements, and the use of Bitwise &, to find the problematic code.
search:
expression:
anyOf:
- in:
condition: {}
value:
caseSensitive: false
matches: ".* & .*"
This uses a regular expression to match " & " when it is used as a condition expression. e.g. in an if statement.
To fix it, we again relied on regular expressions. This time using the sed function in the QuickFix to globally replace the & in the expression with &&.
availableFixes:
- name: "Replace bitwise AND operator to logical AND operator"
actions:
- rewrite:
to: "{{#sed}}s/&/&&/g,{{{ . }}}{{/sed}}"
End Notes
This covers the most common misuse of a Bitwise operator, i.e. when a Boolean operator was actually intended.
There are other situations where this could crop up e.g. the assignment example, but when writing recipes we have to attempt to avoid false-positive identification, otherwise recipes will be ignored or turned off. We build recipes to match the most common occurrences. As Sensei evolves, we may well add additional specificity into the search functionality to cover more matching conditions.
In its current form, this recipe would identify many of the live use-cases, and most importantly, the one that was reported in my project.
NOTE: A fair few code warriors contributed to this example and recipe review - Charlie Eriksen, Matthieu Calie, Robin Claerhaut, Brysen Ackx, Nathan Desmet, Downey Robersscheuten. Thanks for your help.
---
You can install Sensei from within IntelliJ using "Preferences \ Plugins" (Mac) or "Settings \ Plugins" (Windows) then just search for "sensei secure code"
We have a lot of source code and recipes for these blog posts (including this one) in the `sensei-blog-examples` repository in the Secure Code Warrior GitHub account.
https://github.com/securecodewarrior/sensei-blog-examples
Table of contents
Alan Richardson has more than twenty years of professional IT experience, working as a developer and at every level of the testing hierarchy from Tester through to Head of Testing. Head of Developer Relations at Secure Code Warrior, he works directly with teams, to improve the development of quality secure code. Alan is the author of four books including “Dear Evil Tester”, and “Java For Testers”. Alan has also created online training courses to help people learn Technical Web Testing and Selenium WebDriver with Java. Alan posts his writing and training videos on SeleniumSimplified.com, EvilTester.com, JavaForTesters.com, and CompendiumDev.co.uk.
Secure Code Warrior is here for your organization to help you secure code across the entire software development lifecycle and create a culture in which cybersecurity is top of mind. Whether you’re an AppSec Manager, Developer, CISO, or anyone involved in security, we can help your organization reduce risks associated with insecure code.
Book a demoDownloadResources to get you started
Benchmarking Security Skills: Streamlining Secure-by-Design in the Enterprise
The Secure-by-Design movement is the future of secure software development. Learn about the key elements companies need to keep in mind when they think about a Secure-by-Design initiative.
DigitalOcean Decreases Security Debt with Secure Code Warrior
DigitalOcean's use of Secure Code Warrior training has significantly reduced security debt, allowing teams to focus more on innovation and productivity. The improved security has strengthened their product quality and competitive edge. Looking ahead, the SCW Trust Score will help them further enhance security practices and continue driving innovation.
Resources to get you started
Trust Score Reveals the Value of Secure-by-Design Upskilling Initiatives
Our research has shown that secure code training works. Trust Score, using an algorithm drawing on more than 20 million learning data points from work by more than 250,000 learners at over 600 organizations, reveals its effectiveness in driving down vulnerabilities and how to make the initiative even more effective.
Reactive Versus Preventive Security: Prevention Is a Better Cure
The idea of bringing preventive security to legacy code and systems at the same time as newer applications can seem daunting, but a Secure-by-Design approach, enforced by upskilling developers, can apply security best practices to those systems. It’s the best chance many organizations have of improving their security postures.
The Benefits of Benchmarking Security Skills for Developers
The growing focus on secure code and Secure-by-Design principles requires developers to be trained in cybersecurity from the start of the SDLC, with tools like Secure Code Warrior’s Trust Score helping measure and improve their progress.
Driving Meaningful Success for Enterprise Secure-by-Design Initiatives
Our latest research paper, Benchmarking Security Skills: Streamlining Secure-by-Design in the Enterprise is the result of deep analysis of real Secure-by-Design initiatives at the enterprise level, and deriving best practice approaches based on data-driven findings.