[{"data":1,"prerenderedAt":3656},["ShallowReactive",2],{"global-navigation":3,"page-\u002Fsei-cert-oracle-coding-standard-for-java\u002Frules\u002Fexceptional-behavior-err\u002Ferr00-j":28,"surround-\u002Fsei-cert-oracle-coding-standard-for-java\u002Frules\u002Fexceptional-behavior-err\u002Ferr00-j":2085,"sidebar-sei-cert-oracle-coding-standard-for-java":2092},[4,8],{"title":5,"path":6,"_path":6,"fromAppConfig":7},"Home","\u002F",true,{"title":9,"path":10,"children":11,"_path":27,"fromAppConfig":7},"Coding Standards","\u002Fcoding-standards\u002F",[12,15,18,21,24],{"title":13,"path":14},"Android Coding Standard","\u002Fandroid-secure-coding-standard\u002F",{"title":16,"path":17},"C Coding Standard","\u002Fsei-cert-c-coding-standard\u002F",{"title":19,"path":20},"C++ Coding Standard","\u002Fsei-cert-cpp-coding-standard\u002F",{"title":22,"path":23},"Java Coding Standard","\u002Fsei-cert-oracle-coding-standard-for-java\u002F",{"title":25,"path":26},"Perl Coding Standard","\u002Fsei-cert-perl-coding-standard\u002F","\u002Fcoding-standards",{"id":29,"title":30,"body":31,"description":2071,"extension":2072,"meta":2073,"navigation":7,"path":2081,"seo":2082,"stem":2083,"__hash__":2084},"content\u002F6.sei-cert-oracle-coding-standard-for-java\u002F3.rules\u002F05.exceptional-behavior-err\u002F02.err00-j.md","ERR00-J. Do not suppress or ignore checked exceptions",{"type":32,"value":33,"toc":2056},"minimark",[34,38,69,75,80,83,156,167,171,178,302,311,315,326,774,789,795,853,860,943,947,963,1218,1241,1244,1266,1352,1367,1371,1381,1472,1477,1481,1500,1509,1553,1556,1634,1637,1660,1664,1667,1734,1738,1741,1907,1912,1926,1930,1959,1963,2029,2032,2052],[35,36,30],"h1",{"id":37},"err00-j-do-not-suppress-or-ignore-checked-exceptions",[39,40,41,42,46,47,49,50,55,56,58,59,61,62,65,66,68],"p",{},"Programmers often suppress checked exceptions by catching exceptions with an empty or trivial ",[43,44,45],"code",{},"catch"," block. Each ",[43,48,45],{}," block must ensure that the program continues only with valid ",[51,52,54],"a",{"href":53},"\u002Fsei-cert-oracle-coding-standard-for-java\u002Fback-matter\u002Frule-bb-glossary#RuleBB.Glossary-invariant","invariants"," . Consequently, the ",[43,57,45],{}," block must either recover from the exceptional condition, rethrow the exception to allow the next nearest enclosing ",[43,60,45],{}," clause of a ",[43,63,64],{},"try"," statement to recover, or throw an exception that is appropriate to the context of the ",[43,67,45],{}," block.",[39,70,71,72,74],{},"Exceptions disrupt the expected control flow of the application. For example, no part of any expression or statement that occurs in the ",[43,73,64],{}," block after the point from which the exception is thrown is evaluated. Consequently, exceptions must be handled appropriately. Many reasons for suppressing exceptions are invalid. For example, when the client cannot be expected to recover from the underlying problem, it is good practice to allow the exception to propagate outwards rather than to catch and suppress the exception.",[76,77,79],"h2",{"id":78},"noncompliant-code-example","Noncompliant Code Example",[39,81,82],{},"This noncompliant code example simply prints the exception's stack trace:",[84,85,87],"code-block",{"quality":86},"bad",[88,89,94],"pre",{"className":90,"code":91,"language":92,"meta":93,"style":93},"language-java shiki shiki-themes github-light github-dark monokai","try {\n  \u002F\u002F...\n} catch (IOException ioe) {\n  ioe.printStackTrace();\n}\n","java","",[43,95,96,108,115,137,150],{"__ignoreMap":93},[97,98,101,104],"span",{"class":99,"line":100},"line",1,[97,102,64],{"class":103},"sC2Qs",[97,105,107],{"class":106},"sMOD_"," {\n",[97,109,111],{"class":99,"line":110},2,[97,112,114],{"class":113},"s8-w5","  \u002F\u002F...\n",[97,116,118,121,123,126,130,134],{"class":99,"line":117},3,[97,119,120],{"class":106},"} ",[97,122,45],{"class":103},[97,124,125],{"class":106}," (",[97,127,129],{"class":128},"sk8M1","IOException",[97,131,133],{"class":132},"sTHNf"," ioe",[97,135,136],{"class":106},") {\n",[97,138,140,143,147],{"class":99,"line":139},4,[97,141,142],{"class":106},"  ioe.",[97,144,146],{"class":145},"srTi1","printStackTrace",[97,148,149],{"class":106},"();\n",[97,151,153],{"class":99,"line":152},5,[97,154,155],{"class":106},"}\n",[39,157,158,159,163,164,166],{},"Printing the exception's stack trace can be useful for debugging purposes, but the resulting program execution is equivalent to suppressing the exception. Printing the stack trace can also leak information about the structure and state of the process to an attacker (see ",[51,160,162],{"href":161},"\u002Fsei-cert-oracle-coding-standard-for-java\u002Frules\u002Fexceptional-behavior-err\u002Ferr01-j","ERR01-J. Do not allow exceptions to expose sensitive information"," for more information). Note that even though this noncompliant code example reacts to the exception by printing out a stack trace, it then proceeds as though the exception were not thrown. That is, the behavior of the application is unaffected by the exception being thrown except that any expressions or statements that occur in the ",[43,165,64],{}," block after the point from which the exception is thrown are not evaluated.",[76,168,170],{"id":169},"compliant-solution-interactive","Compliant Solution (Interactive)",[39,172,173,174,177],{},"This compliant solution handles a ",[43,175,176],{},"FileNotFoundException"," by requesting that the user specify another file name:",[84,179,181],{"quality":180},"good",[88,182,184],{"className":90,"code":183,"language":92,"meta":93,"style":93},"boolean validFlag = false;\ndo {\n  try {\n    \u002F\u002F ...\n    \u002F\u002F If requested file does not exist, throws FileNotFoundException\n    \u002F\u002F If requested file exists, sets validFlag to true\n    validFlag = true;\n  } catch (FileNotFoundException e) {\n    \u002F\u002F Ask the user for a different file name\n  }\n} while (validFlag != true);\n\u002F\u002F Use the file\n",[43,185,186,205,212,219,224,229,235,248,265,271,277,296],{"__ignoreMap":93},[97,187,188,192,195,198,202],{"class":99,"line":100},[97,189,191],{"class":190},"sq6CD","boolean",[97,193,194],{"class":106}," validFlag ",[97,196,197],{"class":103},"=",[97,199,201],{"class":200},"s7F3e"," false",[97,203,204],{"class":106},";\n",[97,206,207,210],{"class":99,"line":110},[97,208,209],{"class":103},"do",[97,211,107],{"class":106},[97,213,214,217],{"class":99,"line":117},[97,215,216],{"class":103},"  try",[97,218,107],{"class":106},[97,220,221],{"class":99,"line":139},[97,222,223],{"class":113},"    \u002F\u002F ...\n",[97,225,226],{"class":99,"line":152},[97,227,228],{"class":113},"    \u002F\u002F If requested file does not exist, throws FileNotFoundException\n",[97,230,232],{"class":99,"line":231},6,[97,233,234],{"class":113},"    \u002F\u002F If requested file exists, sets validFlag to true\n",[97,236,238,241,243,246],{"class":99,"line":237},7,[97,239,240],{"class":106},"    validFlag ",[97,242,197],{"class":103},[97,244,245],{"class":200}," true",[97,247,204],{"class":106},[97,249,251,254,256,258,260,263],{"class":99,"line":250},8,[97,252,253],{"class":106},"  } ",[97,255,45],{"class":103},[97,257,125],{"class":106},[97,259,176],{"class":128},[97,261,262],{"class":132}," e",[97,264,136],{"class":106},[97,266,268],{"class":99,"line":267},9,[97,269,270],{"class":113},"    \u002F\u002F Ask the user for a different file name\n",[97,272,274],{"class":99,"line":273},10,[97,275,276],{"class":106},"  }\n",[97,278,280,282,285,288,291,293],{"class":99,"line":279},11,[97,281,120],{"class":106},[97,283,284],{"class":103},"while",[97,286,287],{"class":106}," (validFlag ",[97,289,290],{"class":103},"!=",[97,292,245],{"class":200},[97,294,295],{"class":106},");\n",[97,297,299],{"class":99,"line":298},12,[97,300,301],{"class":113},"\u002F\u002F Use the file\n",[39,303,304,305,307,308,310],{},"To comply with ",[51,306,162],{"href":161}," , the user should only be allowed to access files in a user-specific directory. This prevents any other ",[43,309,129],{}," that escapes the loop from leaking sensitive file system information.",[76,312,314],{"id":313},"compliant-solution-exception-reporter","Compliant Solution (Exception Reporter)",[39,316,317,318,321,322,325],{},"Proper reporting of exceptional conditions is context-dependent. For example, GUI applications should report the exception in a graphical manner, such as in an error dialog box. Most library classes should be able to objectively determine how an exception should be reported to preserve modularity; they cannot rely on ",[43,319,320],{},"System.err"," , on any particular logger, or on the availability of the windowing environment. As a result, library classes that wish to report exceptions should specify the API they use to report exceptions. This compliant solution specifies both an interface for reporting exceptions, which exports the ",[43,323,324],{},"report()"," method, and a default exception reporter class that the library can use. The exception reporter can be overridden by subclasses.",[84,327,328],{"quality":180},[88,329,331],{"className":90,"code":330,"language":92,"meta":93,"style":93},"public interface Reporter {\n  public void report(Throwable t);\n}\n\nclass ExceptionReporterPermission extends Permission {\n  \u002F\u002F ...\n}\n\npublic class ExceptionReporter {\n\n  \u002F\u002F Exception reporter that prints the exception \n  \u002F\u002F to the console (used as default)\n  private static final Reporter PrintException = new Reporter() {\n    public void report(Throwable t) {\n      System.err.println(t.toString());\n    }\n  };\n\n  \u002F\u002F Stores the default reporter\n  \u002F\u002F The default reporter can be changed by the user\n  private static Reporter Default = PrintException;\n\n  \u002F\u002F Helps change the default reporter back to \n  \u002F\u002F PrintException in the future\n  public static Reporter getPrintException() {\n    return PrintException;\n  }\n\n  public static Reporter getExceptionReporter() {\n    return Default;\n  }\n\n  \u002F\u002F May throw a SecurityException (which is unchecked)\npublic static void setExceptionReporter(Reporter reporter) {\n    \u002F\u002F Custom permission\n    ExceptionReporterPermission perm = new \n        ExceptionReporterPermission(\"exc.reporter\"); \n    SecurityManager sm = System.getSecurityManager();\n    if (sm != null) {\n      \u002F\u002F Check whether the caller has appropriate permissions\n      sm.checkPermission(perm);\n    }\n    \u002F\u002F Change the default exception reporter\n    Default = reporter; \n  }\n}\n",[43,332,333,347,369,373,378,395,400,404,408,420,424,429,434,461,479,497,503,509,514,520,526,543,548,554,560,574,582,587,592,606,614,619,624,630,652,658,674,689,708,724,730,742,747,753,764,769],{"__ignoreMap":93},[97,334,335,338,341,345],{"class":99,"line":100},[97,336,337],{"class":103},"public",[97,339,340],{"class":103}," interface",[97,342,344],{"class":343},"sz2Vg"," Reporter",[97,346,107],{"class":106},[97,348,349,352,355,358,361,364,367],{"class":99,"line":110},[97,350,351],{"class":103},"  public",[97,353,354],{"class":190}," void",[97,356,357],{"class":145}," report",[97,359,360],{"class":106},"(",[97,362,363],{"class":128},"Throwable",[97,365,366],{"class":132}," t",[97,368,295],{"class":106},[97,370,371],{"class":99,"line":117},[97,372,155],{"class":106},[97,374,375],{"class":99,"line":139},[97,376,377],{"emptyLinePlaceholder":7},"\n",[97,379,380,383,386,389,393],{"class":99,"line":152},[97,381,382],{"class":103},"class",[97,384,385],{"class":343}," ExceptionReporterPermission",[97,387,388],{"class":103}," extends",[97,390,392],{"class":391},"s30JN"," Permission",[97,394,107],{"class":106},[97,396,397],{"class":99,"line":231},[97,398,399],{"class":113},"  \u002F\u002F ...\n",[97,401,402],{"class":99,"line":237},[97,403,155],{"class":106},[97,405,406],{"class":99,"line":250},[97,407,377],{"emptyLinePlaceholder":7},[97,409,410,412,415,418],{"class":99,"line":267},[97,411,337],{"class":103},[97,413,414],{"class":103}," class",[97,416,417],{"class":343}," ExceptionReporter",[97,419,107],{"class":106},[97,421,422],{"class":99,"line":273},[97,423,377],{"emptyLinePlaceholder":7},[97,425,426],{"class":99,"line":279},[97,427,428],{"class":113},"  \u002F\u002F Exception reporter that prints the exception \n",[97,430,431],{"class":99,"line":298},[97,432,433],{"class":113},"  \u002F\u002F to the console (used as default)\n",[97,435,437,440,443,446,448,451,453,456,458],{"class":99,"line":436},13,[97,438,439],{"class":103},"  private",[97,441,442],{"class":103}," static",[97,444,445],{"class":103}," final",[97,447,344],{"class":128},[97,449,450],{"class":106}," PrintException ",[97,452,197],{"class":103},[97,454,455],{"class":103}," new",[97,457,344],{"class":145},[97,459,460],{"class":106},"() {\n",[97,462,464,467,469,471,473,475,477],{"class":99,"line":463},14,[97,465,466],{"class":103},"    public",[97,468,354],{"class":190},[97,470,357],{"class":145},[97,472,360],{"class":106},[97,474,363],{"class":128},[97,476,366],{"class":132},[97,478,136],{"class":106},[97,480,482,485,488,491,494],{"class":99,"line":481},15,[97,483,484],{"class":106},"      System.err.",[97,486,487],{"class":145},"println",[97,489,490],{"class":106},"(t.",[97,492,493],{"class":145},"toString",[97,495,496],{"class":106},"());\n",[97,498,500],{"class":99,"line":499},16,[97,501,502],{"class":106},"    }\n",[97,504,506],{"class":99,"line":505},17,[97,507,508],{"class":106},"  };\n",[97,510,512],{"class":99,"line":511},18,[97,513,377],{"emptyLinePlaceholder":7},[97,515,517],{"class":99,"line":516},19,[97,518,519],{"class":113},"  \u002F\u002F Stores the default reporter\n",[97,521,523],{"class":99,"line":522},20,[97,524,525],{"class":113},"  \u002F\u002F The default reporter can be changed by the user\n",[97,527,529,531,533,535,538,540],{"class":99,"line":528},21,[97,530,439],{"class":103},[97,532,442],{"class":103},[97,534,344],{"class":128},[97,536,537],{"class":106}," Default ",[97,539,197],{"class":103},[97,541,542],{"class":106}," PrintException;\n",[97,544,546],{"class":99,"line":545},22,[97,547,377],{"emptyLinePlaceholder":7},[97,549,551],{"class":99,"line":550},23,[97,552,553],{"class":113},"  \u002F\u002F Helps change the default reporter back to \n",[97,555,557],{"class":99,"line":556},24,[97,558,559],{"class":113},"  \u002F\u002F PrintException in the future\n",[97,561,563,565,567,569,572],{"class":99,"line":562},25,[97,564,351],{"class":103},[97,566,442],{"class":103},[97,568,344],{"class":128},[97,570,571],{"class":145}," getPrintException",[97,573,460],{"class":106},[97,575,577,580],{"class":99,"line":576},26,[97,578,579],{"class":103},"    return",[97,581,542],{"class":106},[97,583,585],{"class":99,"line":584},27,[97,586,276],{"class":106},[97,588,590],{"class":99,"line":589},28,[97,591,377],{"emptyLinePlaceholder":7},[97,593,595,597,599,601,604],{"class":99,"line":594},29,[97,596,351],{"class":103},[97,598,442],{"class":103},[97,600,344],{"class":128},[97,602,603],{"class":145}," getExceptionReporter",[97,605,460],{"class":106},[97,607,609,611],{"class":99,"line":608},30,[97,610,579],{"class":103},[97,612,613],{"class":106}," Default;\n",[97,615,617],{"class":99,"line":616},31,[97,618,276],{"class":106},[97,620,622],{"class":99,"line":621},32,[97,623,377],{"emptyLinePlaceholder":7},[97,625,627],{"class":99,"line":626},33,[97,628,629],{"class":113},"  \u002F\u002F May throw a SecurityException (which is unchecked)\n",[97,631,633,635,637,639,642,644,647,650],{"class":99,"line":632},34,[97,634,337],{"class":103},[97,636,442],{"class":103},[97,638,354],{"class":190},[97,640,641],{"class":145}," setExceptionReporter",[97,643,360],{"class":106},[97,645,646],{"class":128},"Reporter",[97,648,649],{"class":132}," reporter",[97,651,136],{"class":106},[97,653,655],{"class":99,"line":654},35,[97,656,657],{"class":113},"    \u002F\u002F Custom permission\n",[97,659,661,664,667,669,671],{"class":99,"line":660},36,[97,662,663],{"class":128},"    ExceptionReporterPermission",[97,665,666],{"class":106}," perm ",[97,668,197],{"class":103},[97,670,455],{"class":103},[97,672,673],{"class":106}," \n",[97,675,677,680,682,686],{"class":99,"line":676},37,[97,678,679],{"class":145},"        ExceptionReporterPermission",[97,681,360],{"class":106},[97,683,685],{"class":684},"sstjo","\"exc.reporter\"",[97,687,688],{"class":106},"); \n",[97,690,692,695,698,700,703,706],{"class":99,"line":691},38,[97,693,694],{"class":128},"    SecurityManager",[97,696,697],{"class":106}," sm ",[97,699,197],{"class":103},[97,701,702],{"class":106}," System.",[97,704,705],{"class":145},"getSecurityManager",[97,707,149],{"class":106},[97,709,711,714,717,719,722],{"class":99,"line":710},39,[97,712,713],{"class":103},"    if",[97,715,716],{"class":106}," (sm ",[97,718,290],{"class":103},[97,720,721],{"class":200}," null",[97,723,136],{"class":106},[97,725,727],{"class":99,"line":726},40,[97,728,729],{"class":113},"      \u002F\u002F Check whether the caller has appropriate permissions\n",[97,731,733,736,739],{"class":99,"line":732},41,[97,734,735],{"class":106},"      sm.",[97,737,738],{"class":145},"checkPermission",[97,740,741],{"class":106},"(perm);\n",[97,743,745],{"class":99,"line":744},42,[97,746,502],{"class":106},[97,748,750],{"class":99,"line":749},43,[97,751,752],{"class":113},"    \u002F\u002F Change the default exception reporter\n",[97,754,756,759,761],{"class":99,"line":755},44,[97,757,758],{"class":106},"    Default ",[97,760,197],{"class":103},[97,762,763],{"class":106}," reporter; \n",[97,765,767],{"class":99,"line":766},45,[97,768,276],{"class":106},[97,770,772],{"class":99,"line":771},46,[97,773,155],{"class":106},[39,775,776,777,780,781,784,785,788],{},"The ",[43,778,779],{},"setExceptionReporter()"," method prevents hostile code from maliciously installing a more verbose reporter that leaks sensitive information or that directs exception reports to an inappropriate location, such as the attacker's computer, by limiting attempts to change the exception reporter to callers that have the custom permission ",[43,782,783],{},"ExceptionReporterPermission"," with target ",[43,786,787],{},"exc.reporter"," .",[39,790,791,792,794],{},"The library may subsequently use the exception reporter in ",[43,793,45],{}," clauses:",[84,796,797],{"quality":180},[88,798,800],{"className":90,"code":799,"language":92,"meta":93,"style":93},"try {\n  \u002F\u002F ...\n} catch (IOException warning) {\n  ExceptionReporter.getExceptionReporter().report(warning);\n  \u002F\u002F Recover from the exception...\n}\n",[43,801,802,808,812,827,844,849],{"__ignoreMap":93},[97,803,804,806],{"class":99,"line":100},[97,805,64],{"class":103},[97,807,107],{"class":106},[97,809,810],{"class":99,"line":110},[97,811,399],{"class":113},[97,813,814,816,818,820,822,825],{"class":99,"line":117},[97,815,120],{"class":106},[97,817,45],{"class":103},[97,819,125],{"class":106},[97,821,129],{"class":128},[97,823,824],{"class":132}," warning",[97,826,136],{"class":106},[97,828,829,832,835,838,841],{"class":99,"line":139},[97,830,831],{"class":106},"  ExceptionReporter.",[97,833,834],{"class":145},"getExceptionReporter",[97,836,837],{"class":106},"().",[97,839,840],{"class":145},"report",[97,842,843],{"class":106},"(warning);\n",[97,845,846],{"class":99,"line":152},[97,847,848],{"class":113},"  \u002F\u002F Recover from the exception...\n",[97,850,851],{"class":99,"line":231},[97,852,155],{"class":106},[39,854,855,856,859],{},"Any client code that possesses the required permissions can override the ",[43,857,858],{},"ExceptionReporter"," with a handler that logs the error or provides a dialog box, or both. For example, a GUI client using Swing may require exceptions to be reported using a dialog box:",[84,861,862],{"quality":180},[88,863,865],{"className":90,"code":864,"language":92,"meta":93,"style":93},"ExceptionReporter.setExceptionReporter(new ExceptionReporter() {\n  public void report(Throwable exception) {\n    JOptionPane.showMessageDialog(frame,\n                                  exception.toString,\n                                  exception.getClass().getName(),\n                                  JOptionPane.ERROR_MESSAGE);\n  }});\n",[43,866,867,884,901,912,917,933,938],{"__ignoreMap":93},[97,868,869,872,875,877,880,882],{"class":99,"line":100},[97,870,871],{"class":106},"ExceptionReporter.",[97,873,874],{"class":145},"setExceptionReporter",[97,876,360],{"class":106},[97,878,879],{"class":103},"new",[97,881,417],{"class":145},[97,883,460],{"class":106},[97,885,886,888,890,892,894,896,899],{"class":99,"line":110},[97,887,351],{"class":103},[97,889,354],{"class":190},[97,891,357],{"class":145},[97,893,360],{"class":106},[97,895,363],{"class":128},[97,897,898],{"class":132}," exception",[97,900,136],{"class":106},[97,902,903,906,909],{"class":99,"line":117},[97,904,905],{"class":106},"    JOptionPane.",[97,907,908],{"class":145},"showMessageDialog",[97,910,911],{"class":106},"(frame,\n",[97,913,914],{"class":99,"line":139},[97,915,916],{"class":106},"                                  exception.toString,\n",[97,918,919,922,925,927,930],{"class":99,"line":152},[97,920,921],{"class":106},"                                  exception.",[97,923,924],{"class":145},"getClass",[97,926,837],{"class":106},[97,928,929],{"class":145},"getName",[97,931,932],{"class":106},"(),\n",[97,934,935],{"class":99,"line":231},[97,936,937],{"class":106},"                                  JOptionPane.ERROR_MESSAGE);\n",[97,939,940],{"class":99,"line":237},[97,941,942],{"class":106},"  }});\n",[76,944,946],{"id":945},"compliant-solution-subclass-exception-reporter-and-filter-sensitive-exceptions","Compliant Solution (Subclass Exception Reporter and Filter-Sensitive Exceptions)",[39,948,949,950,952,953,955,956,959,960,962],{},"Sometimes exceptions must be hidden from the user for security reasons (see ",[51,951,162],{"href":161}," ). In such cases, one acceptable approach is to subclass the ",[43,954,858],{}," class and add a ",[43,957,958],{},"filter()"," method in addition to overriding the default ",[43,961,324],{}," method.",[84,964,965],{"quality":180},[88,966,968],{"className":90,"code":967,"language":92,"meta":93,"style":93},"class MyExceptionReporter extends ExceptionReporter {\n  private static final Logger logger =\n      Logger.getLogger(\"com.organization.Log\");\n\n  public static void report(Throwable t) {\n    t = filter(t);\n    if (t != null) {\n      logger.log(Level.FINEST, \"Loggable exception occurred\", t);\n    }\n  }\n\n  public static Exception filter(Throwable t) {\n    if (t instanceof SensitiveException1) {\n      \u002F\u002F Too sensitive, return nothing (so that no logging happens)\n      return null;\n    } else if (t instanceof SensitiveException2) {\n      \u002F\u002F Return a default insensitive exception instead\n      return new FilteredSensitiveException(t);\n    }\n    \u002F\u002F ...\n    \u002F\u002F Return for reporting to the user\n    return t;\n  }\n}\n\n \n\u002F\u002F ...Definitions for SensitiveException1, SensitiveException2\n\u002F\u002F and FilteredSensitiveException...\n",[43,969,970,983,1000,1015,1019,1037,1050,1063,1080,1084,1088,1092,1111,1123,1128,1137,1155,1160,1171,1175,1179,1184,1191,1195,1199,1203,1208,1213],{"__ignoreMap":93},[97,971,972,974,977,979,981],{"class":99,"line":100},[97,973,382],{"class":103},[97,975,976],{"class":343}," MyExceptionReporter",[97,978,388],{"class":103},[97,980,417],{"class":391},[97,982,107],{"class":106},[97,984,985,987,989,991,994,997],{"class":99,"line":110},[97,986,439],{"class":103},[97,988,442],{"class":103},[97,990,445],{"class":103},[97,992,993],{"class":128}," Logger",[97,995,996],{"class":106}," logger ",[97,998,999],{"class":103},"=\n",[97,1001,1002,1005,1008,1010,1013],{"class":99,"line":117},[97,1003,1004],{"class":106},"      Logger.",[97,1006,1007],{"class":145},"getLogger",[97,1009,360],{"class":106},[97,1011,1012],{"class":684},"\"com.organization.Log\"",[97,1014,295],{"class":106},[97,1016,1017],{"class":99,"line":139},[97,1018,377],{"emptyLinePlaceholder":7},[97,1020,1021,1023,1025,1027,1029,1031,1033,1035],{"class":99,"line":152},[97,1022,351],{"class":103},[97,1024,442],{"class":103},[97,1026,354],{"class":190},[97,1028,357],{"class":145},[97,1030,360],{"class":106},[97,1032,363],{"class":128},[97,1034,366],{"class":132},[97,1036,136],{"class":106},[97,1038,1039,1042,1044,1047],{"class":99,"line":231},[97,1040,1041],{"class":106},"    t ",[97,1043,197],{"class":103},[97,1045,1046],{"class":145}," filter",[97,1048,1049],{"class":106},"(t);\n",[97,1051,1052,1054,1057,1059,1061],{"class":99,"line":237},[97,1053,713],{"class":103},[97,1055,1056],{"class":106}," (t ",[97,1058,290],{"class":103},[97,1060,721],{"class":200},[97,1062,136],{"class":106},[97,1064,1065,1068,1071,1074,1077],{"class":99,"line":250},[97,1066,1067],{"class":106},"      logger.",[97,1069,1070],{"class":145},"log",[97,1072,1073],{"class":106},"(Level.FINEST, ",[97,1075,1076],{"class":684},"\"Loggable exception occurred\"",[97,1078,1079],{"class":106},", t);\n",[97,1081,1082],{"class":99,"line":267},[97,1083,502],{"class":106},[97,1085,1086],{"class":99,"line":273},[97,1087,276],{"class":106},[97,1089,1090],{"class":99,"line":279},[97,1091,377],{"emptyLinePlaceholder":7},[97,1093,1094,1096,1098,1101,1103,1105,1107,1109],{"class":99,"line":298},[97,1095,351],{"class":103},[97,1097,442],{"class":103},[97,1099,1100],{"class":128}," Exception",[97,1102,1046],{"class":145},[97,1104,360],{"class":106},[97,1106,363],{"class":128},[97,1108,366],{"class":132},[97,1110,136],{"class":106},[97,1112,1113,1115,1117,1120],{"class":99,"line":436},[97,1114,713],{"class":103},[97,1116,1056],{"class":106},[97,1118,1119],{"class":103},"instanceof",[97,1121,1122],{"class":106}," SensitiveException1) {\n",[97,1124,1125],{"class":99,"line":463},[97,1126,1127],{"class":113},"      \u002F\u002F Too sensitive, return nothing (so that no logging happens)\n",[97,1129,1130,1133,1135],{"class":99,"line":481},[97,1131,1132],{"class":103},"      return",[97,1134,721],{"class":200},[97,1136,204],{"class":106},[97,1138,1139,1142,1145,1148,1150,1152],{"class":99,"line":499},[97,1140,1141],{"class":106},"    } ",[97,1143,1144],{"class":103},"else",[97,1146,1147],{"class":103}," if",[97,1149,1056],{"class":106},[97,1151,1119],{"class":103},[97,1153,1154],{"class":106}," SensitiveException2) {\n",[97,1156,1157],{"class":99,"line":505},[97,1158,1159],{"class":113},"      \u002F\u002F Return a default insensitive exception instead\n",[97,1161,1162,1164,1166,1169],{"class":99,"line":511},[97,1163,1132],{"class":103},[97,1165,455],{"class":103},[97,1167,1168],{"class":145}," FilteredSensitiveException",[97,1170,1049],{"class":106},[97,1172,1173],{"class":99,"line":516},[97,1174,502],{"class":106},[97,1176,1177],{"class":99,"line":522},[97,1178,223],{"class":113},[97,1180,1181],{"class":99,"line":528},[97,1182,1183],{"class":113},"    \u002F\u002F Return for reporting to the user\n",[97,1185,1186,1188],{"class":99,"line":545},[97,1187,579],{"class":103},[97,1189,1190],{"class":106}," t;\n",[97,1192,1193],{"class":99,"line":550},[97,1194,276],{"class":106},[97,1196,1197],{"class":99,"line":556},[97,1198,155],{"class":106},[97,1200,1201],{"class":99,"line":562},[97,1202,377],{"emptyLinePlaceholder":7},[97,1204,1205],{"class":99,"line":576},[97,1206,1207],{"class":106}," \n",[97,1209,1210],{"class":99,"line":584},[97,1211,1212],{"class":113},"\u002F\u002F ...Definitions for SensitiveException1, SensitiveException2\n",[97,1214,1215],{"class":99,"line":589},[97,1216,1217],{"class":113},"\u002F\u002F and FilteredSensitiveException...\n",[39,1219,776,1220,1222,1223,1225,1226,1230,1231,1235,1236,1240],{},[43,1221,324],{}," method accepts a ",[43,1224,363],{}," instance and consequently handles all errors, checked exceptions, and unchecked exceptions. The filtering mechanism is based on a ",[1227,1228,1229],"em",{},"whitelisting"," approach wherein only nonsensitive exceptions are propagated to the user. Exceptions that are forbidden to appear in a log file can be filtered in the same fashion (see ",[51,1232,1234],{"href":1233},"\u002Fsei-cert-oracle-coding-standard-for-java\u002Frules\u002Finput-output-fio\u002Ffio13-j","FIO13-J. Do not log sensitive information outside a trust boundary"," ). This approach provides the benefits of exception chaining by reporting exceptions tailored to the abstraction while also logging the low-level cause for future failure analysis [ ",[51,1237,1239],{"href":1238},"\u002Fsei-cert-oracle-coding-standard-for-java\u002Fback-matter\u002Frule-aa-references#RuleAA.References-Bloch08","Bloch 2008"," ].",[76,1242,79],{"id":1243},"noncompliant-code-example-1",[39,1245,1246,1247,1250,1251,1254,1255,1258,1259,1262,1263,1265],{},"If a thread is interrupted while sleeping or waiting, it causes a ",[43,1248,1249],{},"java.lang.InterruptedException"," to be thrown. However, the ",[43,1252,1253],{},"run()"," method of interface ",[43,1256,1257],{},"Runnable"," cannot throw a checked exception and must handle ",[43,1260,1261],{},"InterruptedException"," . This noncompliant code example catches and suppresses ",[43,1264,1261],{}," :",[84,1267,1268],{"quality":86},[88,1269,1271],{"className":90,"code":1270,"language":92,"meta":93,"style":93},"class Foo implements Runnable {\n  public void run() {\n    try {\n      Thread.sleep(1000);\n    } catch (InterruptedException e) {\n      \u002F\u002F Ignore\n    }\n  }\n}\n",[43,1272,1273,1288,1299,1306,1321,1335,1340,1344,1348],{"__ignoreMap":93},[97,1274,1275,1277,1280,1283,1286],{"class":99,"line":100},[97,1276,382],{"class":103},[97,1278,1279],{"class":343}," Foo",[97,1281,1282],{"class":103}," implements",[97,1284,1285],{"class":391}," Runnable",[97,1287,107],{"class":106},[97,1289,1290,1292,1294,1297],{"class":99,"line":110},[97,1291,351],{"class":103},[97,1293,354],{"class":190},[97,1295,1296],{"class":145}," run",[97,1298,460],{"class":106},[97,1300,1301,1304],{"class":99,"line":117},[97,1302,1303],{"class":103},"    try",[97,1305,107],{"class":106},[97,1307,1308,1311,1314,1316,1319],{"class":99,"line":139},[97,1309,1310],{"class":106},"      Thread.",[97,1312,1313],{"class":145},"sleep",[97,1315,360],{"class":106},[97,1317,1318],{"class":200},"1000",[97,1320,295],{"class":106},[97,1322,1323,1325,1327,1329,1331,1333],{"class":99,"line":152},[97,1324,1141],{"class":106},[97,1326,45],{"class":103},[97,1328,125],{"class":106},[97,1330,1261],{"class":128},[97,1332,262],{"class":132},[97,1334,136],{"class":106},[97,1336,1337],{"class":99,"line":231},[97,1338,1339],{"class":113},"      \u002F\u002F Ignore\n",[97,1341,1342],{"class":99,"line":237},[97,1343,502],{"class":106},[97,1345,1346],{"class":99,"line":250},[97,1347,276],{"class":106},[97,1349,1350],{"class":99,"line":267},[97,1351,155],{"class":106},[39,1353,1354,1355,1357,1358,1361,1362,1366],{},"This code prevents callers of the ",[43,1356,1253],{}," method from determining that an interrupted exception occurred. Consequently, caller methods such as ",[43,1359,1360],{},"Thread.start()"," cannot act on the exception [ ",[51,1363,1365],{"href":1364},"\u002Fsei-cert-oracle-coding-standard-for-java\u002Fback-matter\u002Frule-aa-references#RuleAA.References-Goetz06","Goetz 2006"," ]. Likewise, if this code were called in its own thread, it would prevent the calling thread from knowing that the thread was interrupted.",[76,1368,1370],{"id":1369},"compliant-solution","Compliant Solution",[39,1372,1373,1374,1376,1377,1380],{},"This compliant solution catches the ",[43,1375,1261],{}," and restores the interrupted status by calling the ",[43,1378,1379],{},"interrupt()"," method on the current thread:",[84,1382,1383],{"quality":180},[88,1384,1386],{"className":90,"code":1385,"language":92,"meta":93,"style":93},"class Foo implements Runnable {\n  public void run() {\n    try {\n      Thread.sleep(1000);\n    } catch (InterruptedException e) {\n      Thread.currentThread().interrupt(); \u002F\u002F Reset interrupted status\n    }\n  }\n}\n",[43,1387,1388,1400,1410,1416,1428,1442,1460,1464,1468],{"__ignoreMap":93},[97,1389,1390,1392,1394,1396,1398],{"class":99,"line":100},[97,1391,382],{"class":103},[97,1393,1279],{"class":343},[97,1395,1282],{"class":103},[97,1397,1285],{"class":391},[97,1399,107],{"class":106},[97,1401,1402,1404,1406,1408],{"class":99,"line":110},[97,1403,351],{"class":103},[97,1405,354],{"class":190},[97,1407,1296],{"class":145},[97,1409,460],{"class":106},[97,1411,1412,1414],{"class":99,"line":117},[97,1413,1303],{"class":103},[97,1415,107],{"class":106},[97,1417,1418,1420,1422,1424,1426],{"class":99,"line":139},[97,1419,1310],{"class":106},[97,1421,1313],{"class":145},[97,1423,360],{"class":106},[97,1425,1318],{"class":200},[97,1427,295],{"class":106},[97,1429,1430,1432,1434,1436,1438,1440],{"class":99,"line":152},[97,1431,1141],{"class":106},[97,1433,45],{"class":103},[97,1435,125],{"class":106},[97,1437,1261],{"class":128},[97,1439,262],{"class":132},[97,1441,136],{"class":106},[97,1443,1444,1446,1449,1451,1454,1457],{"class":99,"line":231},[97,1445,1310],{"class":106},[97,1447,1448],{"class":145},"currentThread",[97,1450,837],{"class":106},[97,1452,1453],{"class":145},"interrupt",[97,1455,1456],{"class":106},"(); ",[97,1458,1459],{"class":113},"\u002F\u002F Reset interrupted status\n",[97,1461,1462],{"class":99,"line":237},[97,1463,502],{"class":106},[97,1465,1466],{"class":99,"line":250},[97,1467,276],{"class":106},[97,1469,1470],{"class":99,"line":267},[97,1471,155],{"class":106},[39,1473,1474,1475,1240],{},"Consequently, calling methods (or code from a calling thread) can determine that an interrupt was issued [ ",[51,1476,1365],{"href":1364},[76,1478,1480],{"id":1479},"exceptions","Exceptions",[39,1482,1483,1487,1488,1490,1491,1494,1495,1499],{},[1484,1485,1486],"strong",{},"ERR00-J-EX0:"," Exceptions that occur during the freeing of a resource may be suppressed in those cases where failure to free the resource cannot affect future program behavior. Examples of freeing resources include closing files, network sockets, shutting down threads, and so forth. Such resources are often freed in ",[43,1489,45],{}," or ",[43,1492,1493],{},"finally"," blocks and never reused during subsequent execution. Consequently, the exception cannot influence future program behavior through any avenue other than resource exhaustion. When resource exhaustion is adequately handled, it is sufficient to ",[51,1496,1498],{"href":1497},"\u002Fsei-cert-oracle-coding-standard-for-java\u002Fback-matter\u002Frule-bb-glossary","sanitize"," and log the exception for future improvement; additional error handling is unnecessary in this case.",[39,1501,1502,1505,1506,1508],{},[1484,1503,1504],{},"ERR00-J-EX1:"," When recovery from an exceptional condition is impossible at a particular abstraction level, code at that level must not handle that exceptional condition. In such cases, an appropriate exception must be thrown so that higher level code can catch the exceptional condition and attempt recovery. The most common implementation for this case is to omit a ",[43,1507,45],{}," block and allow the exception to propagate normally:",[84,1510,1511],{"quality":180},[88,1512,1514],{"className":90,"code":1513,"language":92,"meta":93,"style":93},"\u002F\u002F When recovery is possible at higher levels\nprivate void doSomething() throws FileNotFoundException {\n  \u002F\u002F Requested file does not exist; throws FileNotFoundException\n  \u002F\u002F Higher level code can handle it by displaying a dialog box and asking\n  \u002F\u002F the user for the file name\n}\n",[43,1515,1516,1521,1534,1539,1544,1549],{"__ignoreMap":93},[97,1517,1518],{"class":99,"line":100},[97,1519,1520],{"class":113},"\u002F\u002F When recovery is possible at higher levels\n",[97,1522,1523,1526,1528,1531],{"class":99,"line":110},[97,1524,1525],{"class":103},"private",[97,1527,354],{"class":190},[97,1529,1530],{"class":145}," doSomething",[97,1532,1533],{"class":106},"() throws FileNotFoundException {\n",[97,1535,1536],{"class":99,"line":117},[97,1537,1538],{"class":113},"  \u002F\u002F Requested file does not exist; throws FileNotFoundException\n",[97,1540,1541],{"class":99,"line":139},[97,1542,1543],{"class":113},"  \u002F\u002F Higher level code can handle it by displaying a dialog box and asking\n",[97,1545,1546],{"class":99,"line":152},[97,1547,1548],{"class":113},"  \u002F\u002F the user for the file name\n",[97,1550,1551],{"class":99,"line":231},[97,1552,155],{"class":106},[39,1554,1555],{},"Some APIs may limit the permissible exceptions thrown by particular methods. In such cases, it may be necessary to catch an exception and either wrap it in a permitted exception or translate it to one of the permitted exceptions:",[84,1557,1558],{"quality":180},[88,1559,1561],{"className":90,"code":1560,"language":92,"meta":93,"style":93},"public void myMethod() throws MyProgramException {\n  \u002F\u002F ...\n  try {\n    \u002F\u002F Requested file does not exist\n    \u002F\u002F User is unable to supply the file name\n  } catch (FileNotFoundException e) {\n    throw new MyProgramException(e);\n  }\n  \u002F\u002F ...\n}\n",[43,1562,1563,1575,1579,1585,1590,1595,1609,1622,1626,1630],{"__ignoreMap":93},[97,1564,1565,1567,1569,1572],{"class":99,"line":100},[97,1566,337],{"class":103},[97,1568,354],{"class":190},[97,1570,1571],{"class":145}," myMethod",[97,1573,1574],{"class":106},"() throws MyProgramException {\n",[97,1576,1577],{"class":99,"line":110},[97,1578,399],{"class":113},[97,1580,1581,1583],{"class":99,"line":117},[97,1582,216],{"class":103},[97,1584,107],{"class":106},[97,1586,1587],{"class":99,"line":139},[97,1588,1589],{"class":113},"    \u002F\u002F Requested file does not exist\n",[97,1591,1592],{"class":99,"line":152},[97,1593,1594],{"class":113},"    \u002F\u002F User is unable to supply the file name\n",[97,1596,1597,1599,1601,1603,1605,1607],{"class":99,"line":231},[97,1598,253],{"class":106},[97,1600,45],{"class":103},[97,1602,125],{"class":106},[97,1604,176],{"class":128},[97,1606,262],{"class":132},[97,1608,136],{"class":106},[97,1610,1611,1614,1616,1619],{"class":99,"line":237},[97,1612,1613],{"class":103},"    throw",[97,1615,455],{"class":103},[97,1617,1618],{"class":145}," MyProgramException",[97,1620,1621],{"class":106},"(e);\n",[97,1623,1624],{"class":99,"line":250},[97,1625,276],{"class":106},[97,1627,1628],{"class":99,"line":267},[97,1629,399],{"class":113},[97,1631,1632],{"class":99,"line":273},[97,1633,155],{"class":106},[39,1635,1636],{},"Alternatively, when higher level code is also unable to recover from a particular exception, the checked exception may be wrapped in an unchecked exception and rethrown.",[39,1638,1639,1642,1643,1645,1646,1649,1650,1652,1653,1649,1657,1659],{},[1484,1640,1641],{},"ERR00-J-EX2:"," An ",[43,1644,1261],{}," may be caught and suppressed when extending class ",[43,1647,1648],{},"Thread"," [ ",[51,1651,1365],{"href":1364}," ]. An interruption request may also be suppressed by code that implements a thread's ",[51,1654,1656],{"href":1655},"\u002Fsei-cert-oracle-coding-standard-for-java\u002Fback-matter\u002Frule-bb-glossary#RuleBB.Glossary-interruptionpoli","interruption policy",[51,1658,1365],{"href":1364}," , p. 143].",[76,1661,1663],{"id":1662},"risk-assessment","Risk Assessment",[39,1665,1666],{},"Ignoring or suppressing exceptions can result in inconsistent program state.",[1668,1669,1670,1671,1670,1701],"table",{},"\n  ",[1672,1673,1674,1675,1670],"thead",{},"\n    ",[1676,1677,1678,1679,1678,1683,1678,1686,1678,1689,1678,1692,1678,1695,1678,1698,1674],"tr",{},"\n      ",[1680,1681,1682],"th",{},"Rule",[1680,1684,1685],{},"Severity",[1680,1687,1688],{},"Likelihood",[1680,1690,1691],{},"Detectable",[1680,1693,1694],{},"Repairable",[1680,1696,1697],{},"Priority",[1680,1699,1700],{},"Level",[1702,1703,1674,1704,1670],"tbody",{},[1676,1705,1678,1706,1678,1710,1678,1713,1678,1716,1678,1719,1678,1722,1678,1729,1674],{},[1707,1708,1709],"td",{},"ERR00-J",[1707,1711,1712],{},"Low",[1707,1714,1715],{},"Probable",[1707,1717,1718],{},"Yes",[1707,1720,1721],{},"No",[1707,1723,1725],{"style":1724},"color: #27ae60;",[1726,1727,1728],"b",{},"P4",[1707,1730,1731],{"style":1724},[1726,1732,1733],{},"L3",[76,1735,1737],{"id":1736},"automated-detection","Automated Detection",[39,1739,1740],{},"Detection of suppressed exceptions is straightforward. Sound determination of which specific cases represent violations of this rule and which represent permitted exceptions to the rule is infeasible. Heuristic approaches may be effective.",[1668,1742,1745],{"className":1743},[1744],"wrapped",[1702,1746,1747,1763,1795,1816,1850,1879],{},[1676,1748,1751,1754,1757,1760],{"className":1749},[1750],"header",[1680,1752,1753],{},"Tool",[1680,1755,1756],{},"Version",[1680,1758,1759],{},"Checker",[1680,1761,1762],{},"Description",[1676,1764,1767,1773,1783,1790],{"className":1765},[1766],"odd",[1707,1768,1769],{},[51,1770,1772],{"href":1771},"\u002Fsei-cert-oracle-coding-standard-for-java\u002Fback-matter\u002Frule-or-rec-cc-analyzers\u002Fcodesonar","CodeSonar",[1707,1774,1775],{},[1776,1777,1780],"div",{"className":1778},[1779],"content-wrapper",[39,1781,1782],{},"9.0p0",[1707,1784,1785],{},[39,1786,1787],{},[1484,1788,1789],{},"JAVA.STRUCT.EXCP.EEH",[1707,1791,1792],{},[39,1793,1794],{},"Empty Exception Handler (Java)",[1676,1796,1799,1805,1808,1813],{"className":1797},[1798],"even",[1707,1800,1801],{},[51,1802,1804],{"href":1803},"\u002Fsei-cert-oracle-coding-standard-for-java\u002Fback-matter\u002Frule-or-rec-cc-analyzers\u002Fcoverity","Coverity",[1707,1806,1807],{},"7.5",[1707,1809,1810],{},[1484,1811,1812],{},"MISSING_THROW",[1707,1814,1815],{},"Implemented",[1676,1817,1819,1825,1831,1842],{"className":1818},[1766],[1707,1820,1821],{},[51,1822,1824],{"href":1823},"\u002Fsei-cert-oracle-coding-standard-for-java\u002Fback-matter\u002Frule-or-rec-cc-analyzers\u002Fparasoft","Parasoft Jtest",[1707,1826,1827],{},[1776,1828,1830],{"className":1829},[1779],"2025.2",[1707,1832,1833],{},[1484,1834,1835,1836,1839,1840],{},"CERT.ERR00.LGE",[1837,1838],"br",{},"\nCERT.ERR00.UCATCH",[1837,1841],{},[1707,1843,1844,1845,1847,1848],{},"Ensure all exceptions are either logged with a standard logger or rethrown",[1837,1846],{},"\nUse a caught exception in the \"catch\" block",[1837,1849],{},[1676,1851,1853,1859,1867,1875],{"className":1852},[1798],[1707,1854,1855],{},[51,1856,1858],{"href":1857},"\u002Fsei-cert-oracle-coding-standard-for-java\u002Fback-matter\u002Frule-or-rec-cc-analyzers\u002Fpvs-studio","PVS-Studio",[1707,1860,1861],{},[1776,1862,1864],{"className":1863},[1779],[39,1865,1866],{},"7.42",[1707,1868,1869],{},[1484,1870,1871],{},[51,1872,1874],{"href":1873},"https:\u002F\u002Fpvs-studio.com\u002Fen\u002Fdocs\u002Fwarnings\u002Fv5301\u002F","V5301",[1707,1876,1877],{},[1837,1878],{},[1676,1880,1882,1888,1894,1902],{"className":1881},[1766],[1707,1883,1884],{},[51,1885,1887],{"href":1886},"\u002Fsei-cert-oracle-coding-standard-for-java\u002Fback-matter\u002Frule-or-rec-cc-analyzers\u002Fsonarqube","SonarQube",[1707,1889,1890],{},[1776,1891,1893],{"className":1892},[1779],"9.9",[1707,1895,1896],{},[1484,1897,1898],{},[51,1899,1901],{"href":1900},"https:\u002F\u002Frules.sonarsource.com\u002Fjava\u002FRSPEC-1166","S1166",[1707,1903,1904],{},[51,1905,1906],{"href":1900},"Exception handlers should preserve the original exceptions",[1908,1909,1911],"h3",{"id":1910},"related-vulnerabilities","Related Vulnerabilities",[39,1913,1914,1920,1921,1925],{},[51,1915,1919],{"href":1916,"rel":1917},"https:\u002F\u002Fissues.apache.org\u002Factivemq\u002Fbrowse\u002FAMQ-1272",[1918],"nofollow","AMQ-1272"," describes a ",[51,1922,1924],{"href":1923},"\u002Fsei-cert-oracle-coding-standard-for-java\u002Fback-matter\u002Frule-bb-glossary#RuleBB.Glossary-vul","vulnerability"," in the ActiveMQ service. When ActiveMQ receives an invalid username and password from a Stomp client, a security exception is generated but is subsequently ignored, leaving the client connected with full and unrestricted access to ActiveMQ.",[76,1927,1929],{"id":1928},"related-guidelines","Related Guidelines",[1668,1931,1932,1940],{},[1672,1933,1934],{},[1676,1935,1936,1938],{},[1680,1937],{},[1680,1939],{},[1702,1941,1942],{},[1676,1943,1944,1951],{},[1707,1945,1946],{},[51,1947,1950],{"href":1948,"rel":1949},"http:\u002F\u002Fcwe.mitre.org\u002F",[1918],"MITRE CWE",[1707,1952,1953,1958],{},[51,1954,1957],{"href":1955,"rel":1956},"http:\u002F\u002Fcwe.mitre.org\u002Fdata\u002Fdefinitions\u002F390.html",[1918],"CWE-390"," , Detection of Error Condition without Action",[76,1960,1962],{"id":1961},"bibliography","Bibliography",[1668,1964,1966,1975],{"className":1965},[1744],[1967,1968,1969,1973],"colgroup",{},[1970,1971],"col",{"style":1972},"width: 50%",[1970,1974],{"style":1972},[1702,1976,1977,1996,2010],{},[1676,1978,1980,1988],{"className":1979},[1766],[1707,1981,1982],{},[39,1983,1984,1985,1987],{},"[ ",[51,1986,1239],{"href":1238}," ]",[1707,1989,1990],{},[39,1991,1992,1993,1995],{},"Item 62, \"Document All Exceptions Thrown by Each Method\"",[1837,1994],{},"\nItem 65, \"Don't Ignore Exceptions\"",[1676,1997,1999,2005],{"className":1998},[1798],[1707,2000,2001],{},[39,2002,1984,2003,1987],{},[51,2004,1365],{"href":1364},[1707,2006,2007],{},[39,2008,2009],{},"Section 5.4, \"Blocking and Interruptible Methods\"",[1676,2011,2013,2021],{"className":2012},[1766],[1707,2014,2015],{},[39,2016,1984,2017,1987],{},[51,2018,2020],{"href":2019},"\u002Fsei-cert-oracle-coding-standard-for-java\u002Fback-matter\u002Frule-aa-references#RuleAA.References-JLS15","JLS 2015",[1707,2022,2023],{},[39,2024,2025],{},[51,2026,2028],{"href":2027},"https:\u002F\u002Fwww.securecoding.cert.org\u002Fconfluence\u002Fdocs.oracle.com\u002Fjavase\u002Fspecs\u002Fjls\u002Fse8\u002Fhtml\u002Fjls-11.html","Chapter 11, \"Exceptions\"",[2030,2031],"hr",{},[39,2033,2034,2041,2042,2041,2047],{},[51,2035,2037],{"href":2036},"\u002Fsei-cert-oracle-coding-standard-for-java\u002Frules\u002Fexceptional-behavior-err\u002F",[2038,2039],"img",{"src":2040},"\u002Fattachments\u002F88487702\u002F88497198.png"," ",[51,2043,2044],{"href":2036},[2038,2045],{"src":2046},"\u002Fattachments\u002F88487702\u002F88497196.png",[51,2048,2049],{"href":161},[2038,2050],{"src":2051},"\u002Fattachments\u002F88487702\u002F88497197.png",[2053,2054,2055],"style",{},"html pre.shiki code .sC2Qs, html code.shiki .sC2Qs{--shiki-default:#D73A49;--shiki-dark:#F97583;--shiki-sepia:#F92672}html pre.shiki code .sMOD_, html code.shiki .sMOD_{--shiki-default:#24292E;--shiki-dark:#E1E4E8;--shiki-sepia:#F8F8F2}html pre.shiki code .s8-w5, html code.shiki .s8-w5{--shiki-default:#6A737D;--shiki-dark:#6A737D;--shiki-sepia:#88846F}html pre.shiki code .sk8M1, html code.shiki .sk8M1{--shiki-default:#24292E;--shiki-default-font-style:inherit;--shiki-dark:#E1E4E8;--shiki-dark-font-style:inherit;--shiki-sepia:#66D9EF;--shiki-sepia-font-style:italic}html pre.shiki code .sTHNf, html code.shiki .sTHNf{--shiki-default:#E36209;--shiki-default-font-style:inherit;--shiki-dark:#FFAB70;--shiki-dark-font-style:inherit;--shiki-sepia:#FD971F;--shiki-sepia-font-style:italic}html pre.shiki code .srTi1, html code.shiki .srTi1{--shiki-default:#6F42C1;--shiki-dark:#B392F0;--shiki-sepia:#A6E22E}html .default .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}html.dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}html .sepia .shiki span {color: var(--shiki-sepia);background: var(--shiki-sepia-bg);font-style: var(--shiki-sepia-font-style);font-weight: var(--shiki-sepia-font-weight);text-decoration: var(--shiki-sepia-text-decoration);}html.sepia .shiki span {color: var(--shiki-sepia);background: var(--shiki-sepia-bg);font-style: var(--shiki-sepia-font-style);font-weight: var(--shiki-sepia-font-weight);text-decoration: var(--shiki-sepia-text-decoration);}html pre.shiki code .sq6CD, html code.shiki .sq6CD{--shiki-default:#D73A49;--shiki-default-font-style:inherit;--shiki-dark:#F97583;--shiki-dark-font-style:inherit;--shiki-sepia:#66D9EF;--shiki-sepia-font-style:italic}html pre.shiki code .s7F3e, html code.shiki .s7F3e{--shiki-default:#005CC5;--shiki-dark:#79B8FF;--shiki-sepia:#AE81FF}html pre.shiki code .sz2Vg, html code.shiki .sz2Vg{--shiki-default:#6F42C1;--shiki-default-text-decoration:inherit;--shiki-dark:#B392F0;--shiki-dark-text-decoration:inherit;--shiki-sepia:#A6E22E;--shiki-sepia-text-decoration:underline}html pre.shiki code .s30JN, html code.shiki .s30JN{--shiki-default:#6F42C1;--shiki-default-font-style:inherit;--shiki-default-text-decoration:inherit;--shiki-dark:#B392F0;--shiki-dark-font-style:inherit;--shiki-dark-text-decoration:inherit;--shiki-sepia:#A6E22E;--shiki-sepia-font-style:italic;--shiki-sepia-text-decoration:underline}html pre.shiki code .sstjo, html code.shiki .sstjo{--shiki-default:#032F62;--shiki-dark:#9ECBFF;--shiki-sepia:#E6DB74}",{"title":93,"searchDepth":110,"depth":110,"links":2057},[2058,2059,2060,2061,2062,2063,2064,2065,2066,2069,2070],{"id":78,"depth":110,"text":79},{"id":169,"depth":110,"text":170},{"id":313,"depth":110,"text":314},{"id":945,"depth":110,"text":946},{"id":1243,"depth":110,"text":79},{"id":1369,"depth":110,"text":1370},{"id":1479,"depth":110,"text":1480},{"id":1662,"depth":110,"text":1663},{"id":1736,"depth":110,"text":1737,"children":2067},[2068],{"id":1910,"depth":117,"text":1911},{"id":1928,"depth":110,"text":1929},{"id":1961,"depth":110,"text":1962},"Programmers often suppress checked exceptions by catching exceptions with an empty or trivial catch block. Each catch block must ensure that the program continues only with valid invariants . Consequently, the catch block must either recover from the exceptional condition, rethrow the exception to allow the next nearest enclosing catch clause of a try statement to recover, or throw an exception that is appropriate to the context of the catch block.","md",{"tags":2074},[2075,2076,2077,2078,2079,2080],"android-applicable","draft","cwe-754","exportable-c++","err","rule","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frules\u002Fexceptional-behavior-err\u002Ferr00-j",{"title":30,"description":2071},"6.sei-cert-oracle-coding-standard-for-java\u002F3.rules\u002F05.exceptional-behavior-err\u002F02.err00-j","HHMs1XSds4eQxO0w22lOK4SwyMB583TiFcjY6QsirEo",[2086,2090],{"title":2087,"path":2088,"stem":2089,"children":-1},"Exceptional Behavior (ERR)","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frules\u002Fexceptional-behavior-err","6.sei-cert-oracle-coding-standard-for-java\u002F3.rules\u002F05.exceptional-behavior-err\u002F01.index",{"title":162,"path":161,"stem":2091,"children":-1},"6.sei-cert-oracle-coding-standard-for-java\u002F3.rules\u002F05.exceptional-behavior-err\u002F03.err01-j",[2093],{"title":2094,"path":2095,"stem":2096,"children":2097},"SEI CERT Oracle Coding Standard for Java","\u002Fsei-cert-oracle-coding-standard-for-java","6.sei-cert-oracle-coding-standard-for-java\u002F1.index",[2098,2099,2239,3066,3465,3632],{"title":2094,"path":2095,"stem":2096},{"title":2100,"path":2101,"stem":2102,"children":2103},"Front Matter","\u002Fsei-cert-oracle-coding-standard-for-java\u002Ffront-matter","6.sei-cert-oracle-coding-standard-for-java\u002F2.front-matter\u002F1.index",[2104,2105,2109,2113,2117,2163,2201],{"title":2100,"path":2101,"stem":2102},{"title":2106,"path":2107,"stem":2108},"Rules versus Recommendations (Java)","\u002Fsei-cert-oracle-coding-standard-for-java\u002Ffront-matter\u002Frules-versus-recommendations-java","6.sei-cert-oracle-coding-standard-for-java\u002F2.front-matter\u002F2.rules-versus-recommendations-java",{"title":2110,"path":2111,"stem":2112},"Acknowledgments","\u002Fsei-cert-oracle-coding-standard-for-java\u002Ffront-matter\u002Facknowledgments","6.sei-cert-oracle-coding-standard-for-java\u002F2.front-matter\u002F3.acknowledgments",{"title":2114,"path":2115,"stem":2116},"Deprecations","\u002Fsei-cert-oracle-coding-standard-for-java\u002Ffront-matter\u002Fdeprecations","6.sei-cert-oracle-coding-standard-for-java\u002F2.front-matter\u002F4.deprecations",{"title":2118,"path":2119,"stem":2120,"children":2121},"Rec. Preface","\u002Fsei-cert-oracle-coding-standard-for-java\u002Ffront-matter\u002Frec-preface","6.sei-cert-oracle-coding-standard-for-java\u002F2.front-matter\u002F4.rec-preface\u002F01.index",[2122,2123,2127,2131,2135,2139,2143,2147,2151,2155,2159],{"title":2118,"path":2119,"stem":2120},{"title":2124,"path":2125,"stem":2126},"Scope","\u002Fsei-cert-oracle-coding-standard-for-java\u002Ffront-matter\u002Frec-preface\u002Fscope","6.sei-cert-oracle-coding-standard-for-java\u002F2.front-matter\u002F4.rec-preface\u002F02.scope",{"title":2128,"path":2129,"stem":2130},"Audience","\u002Fsei-cert-oracle-coding-standard-for-java\u002Ffront-matter\u002Frec-preface\u002Faudience","6.sei-cert-oracle-coding-standard-for-java\u002F2.front-matter\u002F4.rec-preface\u002F03.audience",{"title":2132,"path":2133,"stem":2134},"Contents and Organization","\u002Fsei-cert-oracle-coding-standard-for-java\u002Ffront-matter\u002Frec-preface\u002Fcontents-and-organization","6.sei-cert-oracle-coding-standard-for-java\u002F2.front-matter\u002F4.rec-preface\u002F05.contents-and-organization",{"title":2136,"path":2137,"stem":2138},"Guidelines","\u002Fsei-cert-oracle-coding-standard-for-java\u002Ffront-matter\u002Frec-preface\u002Fguidelines","6.sei-cert-oracle-coding-standard-for-java\u002F2.front-matter\u002F4.rec-preface\u002F06.guidelines",{"title":2140,"path":2141,"stem":2142},"Usage","\u002Fsei-cert-oracle-coding-standard-for-java\u002Ffront-matter\u002Frec-preface\u002Fusage","6.sei-cert-oracle-coding-standard-for-java\u002F2.front-matter\u002F4.rec-preface\u002F07.usage",{"title":2144,"path":2145,"stem":2146},"System Qualities","\u002Fsei-cert-oracle-coding-standard-for-java\u002Ffront-matter\u002Frec-preface\u002Fsystem-qualities","6.sei-cert-oracle-coding-standard-for-java\u002F2.front-matter\u002F4.rec-preface\u002F08.system-qualities",{"title":2148,"path":2149,"stem":2150},"Priority and Levels","\u002Fsei-cert-oracle-coding-standard-for-java\u002Ffront-matter\u002Frec-preface\u002Fpriority-and-levels","6.sei-cert-oracle-coding-standard-for-java\u002F2.front-matter\u002F4.rec-preface\u002F09.priority-and-levels",{"title":2152,"path":2153,"stem":2154},"Automatically Generated Code","\u002Fsei-cert-oracle-coding-standard-for-java\u002Ffront-matter\u002Frec-preface\u002Fautomatically-generated-code","6.sei-cert-oracle-coding-standard-for-java\u002F2.front-matter\u002F4.rec-preface\u002F10.automatically-generated-code",{"title":2156,"path":2157,"stem":2158},"Source Code Validation","\u002Fsei-cert-oracle-coding-standard-for-java\u002Ffront-matter\u002Frec-preface\u002Fsource-code-validation","6.sei-cert-oracle-coding-standard-for-java\u002F2.front-matter\u002F4.rec-preface\u002F11.source-code-validation",{"title":2160,"path":2161,"stem":2162},"Tool Selection and Validation","\u002Fsei-cert-oracle-coding-standard-for-java\u002Ffront-matter\u002Frec-preface\u002Ftool-selection-and-validation","6.sei-cert-oracle-coding-standard-for-java\u002F2.front-matter\u002F4.rec-preface\u002F12.tool-selection-and-validation",{"title":2164,"path":2165,"stem":2166,"children":2167},"Rule. Introduction","\u002Fsei-cert-oracle-coding-standard-for-java\u002Ffront-matter\u002Frule-introduction","6.sei-cert-oracle-coding-standard-for-java\u002F2.front-matter\u002F5.rule-introduction\u002F01.index",[2168,2169,2173,2177,2181,2185,2189,2193,2197],{"title":2164,"path":2165,"stem":2166},{"title":2170,"path":2171,"stem":2172},"Input Validation and Data Sanitization","\u002Fsei-cert-oracle-coding-standard-for-java\u002Ffront-matter\u002Frule-introduction\u002Finput-validation-and-data-sanitization","6.sei-cert-oracle-coding-standard-for-java\u002F2.front-matter\u002F5.rule-introduction\u002F02.input-validation-and-data-sanitization",{"title":2174,"path":2175,"stem":2176},"Leaking Sensitive Data","\u002Fsei-cert-oracle-coding-standard-for-java\u002Ffront-matter\u002Frule-introduction\u002Fleaking-sensitive-data","6.sei-cert-oracle-coding-standard-for-java\u002F2.front-matter\u002F5.rule-introduction\u002F03.leaking-sensitive-data",{"title":2178,"path":2179,"stem":2180},"Type Safety","\u002Fsei-cert-oracle-coding-standard-for-java\u002Ffront-matter\u002Frule-introduction\u002Ftype-safety","6.sei-cert-oracle-coding-standard-for-java\u002F2.front-matter\u002F5.rule-introduction\u002F04.type-safety",{"title":2182,"path":2183,"stem":2184},"Leaking Capabilities","\u002Fsei-cert-oracle-coding-standard-for-java\u002Ffront-matter\u002Frule-introduction\u002Fleaking-capabilities","6.sei-cert-oracle-coding-standard-for-java\u002F2.front-matter\u002F5.rule-introduction\u002F05.leaking-capabilities",{"title":2186,"path":2187,"stem":2188},"Denial of Service","\u002Fsei-cert-oracle-coding-standard-for-java\u002Ffront-matter\u002Frule-introduction\u002Fdenial-of-service","6.sei-cert-oracle-coding-standard-for-java\u002F2.front-matter\u002F5.rule-introduction\u002F06.denial-of-service",{"title":2190,"path":2191,"stem":2192},"Libraries","\u002Fsei-cert-oracle-coding-standard-for-java\u002Ffront-matter\u002Frule-introduction\u002Flibraries","6.sei-cert-oracle-coding-standard-for-java\u002F2.front-matter\u002F5.rule-introduction\u002F07.libraries",{"title":2194,"path":2195,"stem":2196},"Concurrency, Visibility, and Memory","\u002Fsei-cert-oracle-coding-standard-for-java\u002Ffront-matter\u002Frule-introduction\u002Fconcurrency-visibility-and-memory","6.sei-cert-oracle-coding-standard-for-java\u002F2.front-matter\u002F5.rule-introduction\u002F08.concurrency-visibility-and-memory",{"title":2198,"path":2199,"stem":2200},"Privilege Escalation","\u002Fsei-cert-oracle-coding-standard-for-java\u002Ffront-matter\u002Frule-introduction\u002Fprivilege-escalation","6.sei-cert-oracle-coding-standard-for-java\u002F2.front-matter\u002F5.rule-introduction\u002F09.privilege-escalation",{"title":2202,"path":2203,"stem":2204,"children":2205},"Rule. Preface","\u002Fsei-cert-oracle-coding-standard-for-java\u002Ffront-matter\u002Frule-preface","6.sei-cert-oracle-coding-standard-for-java\u002F2.front-matter\u002F6.rule-preface\u002F01.index",[2206,2207,2210,2213,2216,2220,2223,2226,2229,2232,2236],{"title":2202,"path":2203,"stem":2204},{"title":2124,"path":2208,"stem":2209},"\u002Fsei-cert-oracle-coding-standard-for-java\u002Ffront-matter\u002Frule-preface\u002Fscope","6.sei-cert-oracle-coding-standard-for-java\u002F2.front-matter\u002F6.rule-preface\u002F02.scope",{"title":2128,"path":2211,"stem":2212},"\u002Fsei-cert-oracle-coding-standard-for-java\u002Ffront-matter\u002Frule-preface\u002Faudience","6.sei-cert-oracle-coding-standard-for-java\u002F2.front-matter\u002F6.rule-preface\u002F03.audience",{"title":2132,"path":2214,"stem":2215},"\u002Fsei-cert-oracle-coding-standard-for-java\u002Ffront-matter\u002Frule-preface\u002Fcontents-and-organization","6.sei-cert-oracle-coding-standard-for-java\u002F2.front-matter\u002F6.rule-preface\u002F04.contents-and-organization",{"title":2217,"path":2218,"stem":2219},"Identifiers","\u002Fsei-cert-oracle-coding-standard-for-java\u002Ffront-matter\u002Frule-preface\u002Fidentifiers","6.sei-cert-oracle-coding-standard-for-java\u002F2.front-matter\u002F6.rule-preface\u002F05.identifiers",{"title":2140,"path":2221,"stem":2222},"\u002Fsei-cert-oracle-coding-standard-for-java\u002Ffront-matter\u002Frule-preface\u002Fusage","6.sei-cert-oracle-coding-standard-for-java\u002F2.front-matter\u002F6.rule-preface\u002F06.usage",{"title":2144,"path":2224,"stem":2225},"\u002Fsei-cert-oracle-coding-standard-for-java\u002Ffront-matter\u002Frule-preface\u002Fsystem-qualities","6.sei-cert-oracle-coding-standard-for-java\u002F2.front-matter\u002F6.rule-preface\u002F07.system-qualities",{"title":2148,"path":2227,"stem":2228},"\u002Fsei-cert-oracle-coding-standard-for-java\u002Ffront-matter\u002Frule-preface\u002Fpriority-and-levels","6.sei-cert-oracle-coding-standard-for-java\u002F2.front-matter\u002F6.rule-preface\u002F08.priority-and-levels",{"title":2152,"path":2230,"stem":2231},"\u002Fsei-cert-oracle-coding-standard-for-java\u002Ffront-matter\u002Frule-preface\u002Fautomatically-generated-code","6.sei-cert-oracle-coding-standard-for-java\u002F2.front-matter\u002F6.rule-preface\u002F09.automatically-generated-code",{"title":2233,"path":2234,"stem":2235},"Conformance Testing","\u002Fsei-cert-oracle-coding-standard-for-java\u002Ffront-matter\u002Frule-preface\u002Fconformance-testing","6.sei-cert-oracle-coding-standard-for-java\u002F2.front-matter\u002F6.rule-preface\u002F10.conformance-testing",{"title":2160,"path":2237,"stem":2238},"\u002Fsei-cert-oracle-coding-standard-for-java\u002Ffront-matter\u002Frule-preface\u002Ftool-selection-and-validation","6.sei-cert-oracle-coding-standard-for-java\u002F2.front-matter\u002F6.rule-preface\u002F11.tool-selection-and-validation",{"title":2240,"path":2241,"stem":2242,"children":2243},"Rules","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frules","6.sei-cert-oracle-coding-standard-for-java\u002F3.rules\u002F01.index",[2244,2245,2249,2275,2293,2330,2368,2440,2494,2520,2574,2636,2690,2748,2810,2860,2900,2958,2988,3014,3036],{"title":2240,"path":2241,"stem":2242},{"title":2246,"path":2247,"stem":2248},"Android (DRD)","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frules\u002Fandroid-drd","6.sei-cert-oracle-coding-standard-for-java\u002F3.rules\u002F02.android-drd",{"title":2250,"path":2251,"stem":2252,"children":2253},"Characters and Strings (STR)","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frules\u002Fcharacters-and-strings-str","6.sei-cert-oracle-coding-standard-for-java\u002F3.rules\u002F03.characters-and-strings-str\u002F1.index",[2254,2255,2259,2263,2267,2271],{"title":2250,"path":2251,"stem":2252},{"title":2256,"path":2257,"stem":2258},"STR00-J. Don't form strings containing partial characters from variable-width encodings","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frules\u002Fcharacters-and-strings-str\u002Fstr00-j","6.sei-cert-oracle-coding-standard-for-java\u002F3.rules\u002F03.characters-and-strings-str\u002F2.str00-j",{"title":2260,"path":2261,"stem":2262},"STR01-J. Do not assume that a Java char fully represents a Unicode code point","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frules\u002Fcharacters-and-strings-str\u002Fstr01-j","6.sei-cert-oracle-coding-standard-for-java\u002F3.rules\u002F03.characters-and-strings-str\u002F3.str01-j",{"title":2264,"path":2265,"stem":2266},"STR02-J. Specify an appropriate locale when comparing locale-dependent data","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frules\u002Fcharacters-and-strings-str\u002Fstr02-j","6.sei-cert-oracle-coding-standard-for-java\u002F3.rules\u002F03.characters-and-strings-str\u002F4.str02-j",{"title":2268,"path":2269,"stem":2270},"STR03-J. Do not encode noncharacter data as a string","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frules\u002Fcharacters-and-strings-str\u002Fstr03-j","6.sei-cert-oracle-coding-standard-for-java\u002F3.rules\u002F03.characters-and-strings-str\u002F5.str03-j",{"title":2272,"path":2273,"stem":2274},"STR04-J. Use compatible character encodings when communicating string data between JVMs","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frules\u002Fcharacters-and-strings-str\u002Fstr04-j","6.sei-cert-oracle-coding-standard-for-java\u002F3.rules\u002F03.characters-and-strings-str\u002F6.str04-j",{"title":2276,"path":2277,"stem":2278,"children":2279},"Declarations and Initialization (DCL)","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frules\u002Fdeclarations-and-initialization-dcl","6.sei-cert-oracle-coding-standard-for-java\u002F3.rules\u002F04.declarations-and-initialization-dcl\u002F1.index",[2280,2281,2285,2289],{"title":2276,"path":2277,"stem":2278},{"title":2282,"path":2283,"stem":2284},"DCL00-J. Prevent class initialization cycles","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frules\u002Fdeclarations-and-initialization-dcl\u002Fdcl00-j","6.sei-cert-oracle-coding-standard-for-java\u002F3.rules\u002F04.declarations-and-initialization-dcl\u002F2.dcl00-j",{"title":2286,"path":2287,"stem":2288},"DCL01-J. Do not reuse public identifiers from the Java Standard Library","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frules\u002Fdeclarations-and-initialization-dcl\u002Fdcl01-j","6.sei-cert-oracle-coding-standard-for-java\u002F3.rules\u002F04.declarations-and-initialization-dcl\u002F3.dcl01-j",{"title":2290,"path":2291,"stem":2292},"DCL02-J. Do not modify the collection's elements during an enhanced for statement","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frules\u002Fdeclarations-and-initialization-dcl\u002Fdcl02-j","6.sei-cert-oracle-coding-standard-for-java\u002F3.rules\u002F04.declarations-and-initialization-dcl\u002F4.dcl02-j",{"title":2087,"path":2088,"stem":2089,"children":2294},[2295,2296,2297,2298,2302,2306,2310,2314,2318,2322,2326],{"title":2087,"path":2088,"stem":2089},{"title":30,"path":2081,"stem":2083},{"title":162,"path":161,"stem":2091},{"title":2299,"path":2300,"stem":2301},"ERR02-J. Prevent exceptions while logging data","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frules\u002Fexceptional-behavior-err\u002Ferr02-j","6.sei-cert-oracle-coding-standard-for-java\u002F3.rules\u002F05.exceptional-behavior-err\u002F04.err02-j",{"title":2303,"path":2304,"stem":2305},"ERR03-J. Restore prior object state on method failure","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frules\u002Fexceptional-behavior-err\u002Ferr03-j","6.sei-cert-oracle-coding-standard-for-java\u002F3.rules\u002F05.exceptional-behavior-err\u002F05.err03-j",{"title":2307,"path":2308,"stem":2309},"ERR04-J. Do not complete abruptly from a finally block","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frules\u002Fexceptional-behavior-err\u002Ferr04-j","6.sei-cert-oracle-coding-standard-for-java\u002F3.rules\u002F05.exceptional-behavior-err\u002F06.err04-j",{"title":2311,"path":2312,"stem":2313},"ERR05-J. Do not let checked exceptions escape from a finally block","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frules\u002Fexceptional-behavior-err\u002Ferr05-j","6.sei-cert-oracle-coding-standard-for-java\u002F3.rules\u002F05.exceptional-behavior-err\u002F07.err05-j",{"title":2315,"path":2316,"stem":2317},"ERR06-J. Do not throw undeclared checked exceptions","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frules\u002Fexceptional-behavior-err\u002Ferr06-j","6.sei-cert-oracle-coding-standard-for-java\u002F3.rules\u002F05.exceptional-behavior-err\u002F08.err06-j",{"title":2319,"path":2320,"stem":2321},"ERR07-J. Do not throw RuntimeException, Exception, or Throwable","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frules\u002Fexceptional-behavior-err\u002Ferr07-j","6.sei-cert-oracle-coding-standard-for-java\u002F3.rules\u002F05.exceptional-behavior-err\u002F09.err07-j",{"title":2323,"path":2324,"stem":2325},"ERR08-J. Do not catch NullPointerException or any of its ancestors","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frules\u002Fexceptional-behavior-err\u002Ferr08-j","6.sei-cert-oracle-coding-standard-for-java\u002F3.rules\u002F05.exceptional-behavior-err\u002F10.err08-j",{"title":2327,"path":2328,"stem":2329},"ERR09-J. Do not allow untrusted code to terminate the JVM","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frules\u002Fexceptional-behavior-err\u002Ferr09-j","6.sei-cert-oracle-coding-standard-for-java\u002F3.rules\u002F05.exceptional-behavior-err\u002F11.err09-j",{"title":2331,"path":2332,"stem":2333,"children":2334},"Expressions (EXP)","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frules\u002Fexpressions-exp","6.sei-cert-oracle-coding-standard-for-java\u002F3.rules\u002F06.expressions-exp\u002F1.index",[2335,2336,2340,2344,2348,2352,2356,2360,2364],{"title":2331,"path":2332,"stem":2333},{"title":2337,"path":2338,"stem":2339},"EXP00-J. Do not ignore values returned by methods","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frules\u002Fexpressions-exp\u002Fexp00-j","6.sei-cert-oracle-coding-standard-for-java\u002F3.rules\u002F06.expressions-exp\u002F2.exp00-j",{"title":2341,"path":2342,"stem":2343},"EXP01-J. Do not use a null in a case where an object is required","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frules\u002Fexpressions-exp\u002Fexp01-j","6.sei-cert-oracle-coding-standard-for-java\u002F3.rules\u002F06.expressions-exp\u002F3.exp01-j",{"title":2345,"path":2346,"stem":2347},"EXP02-J. Do not use the Object.equals() method to compare two arrays","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frules\u002Fexpressions-exp\u002Fexp02-j","6.sei-cert-oracle-coding-standard-for-java\u002F3.rules\u002F06.expressions-exp\u002F4.exp02-j",{"title":2349,"path":2350,"stem":2351},"EXP03-J. Do not use the equality operators when comparing values of boxed primitives","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frules\u002Fexpressions-exp\u002Fexp03-j","6.sei-cert-oracle-coding-standard-for-java\u002F3.rules\u002F06.expressions-exp\u002F5.exp03-j",{"title":2353,"path":2354,"stem":2355},"EXP04-J. Do not pass arguments to certain Java Collections Framework methods that are a different type than the collection parameter type","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frules\u002Fexpressions-exp\u002Fexp04-j","6.sei-cert-oracle-coding-standard-for-java\u002F3.rules\u002F06.expressions-exp\u002F6.exp04-j",{"title":2357,"path":2358,"stem":2359},"EXP05-J. Do not follow a write by a subsequent write or read of the same object within an expression","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frules\u002Fexpressions-exp\u002Fexp05-j","6.sei-cert-oracle-coding-standard-for-java\u002F3.rules\u002F06.expressions-exp\u002F7.exp05-j",{"title":2361,"path":2362,"stem":2363},"EXP06-J. Expressions used in assertions must not produce side effects","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frules\u002Fexpressions-exp\u002Fexp06-j","6.sei-cert-oracle-coding-standard-for-java\u002F3.rules\u002F06.expressions-exp\u002F8.exp06-j",{"title":2365,"path":2366,"stem":2367},"EXP07-J. Prevent loss of useful data due to weak references","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frules\u002Fexpressions-exp\u002Fexp07-j","6.sei-cert-oracle-coding-standard-for-java\u002F3.rules\u002F06.expressions-exp\u002F9.exp07-j",{"title":2369,"path":2370,"stem":2371,"children":2372},"Input Output (FIO)","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frules\u002Finput-output-fio","6.sei-cert-oracle-coding-standard-for-java\u002F3.rules\u002F07.input-output-fio\u002F01.index",[2373,2374,2378,2382,2386,2390,2394,2398,2402,2406,2410,2414,2418,2422,2426,2428,2432,2436],{"title":2369,"path":2370,"stem":2371},{"title":2375,"path":2376,"stem":2377},"FIO00-J. Do not operate on files in shared directories","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frules\u002Finput-output-fio\u002Ffio00-j","6.sei-cert-oracle-coding-standard-for-java\u002F3.rules\u002F07.input-output-fio\u002F02.fio00-j",{"title":2379,"path":2380,"stem":2381},"FIO01-J. Create files with appropriate access permissions","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frules\u002Finput-output-fio\u002Ffio01-j","6.sei-cert-oracle-coding-standard-for-java\u002F3.rules\u002F07.input-output-fio\u002F03.fio01-j",{"title":2383,"path":2384,"stem":2385},"FIO02-J. Detect and handle file-related errors","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frules\u002Finput-output-fio\u002Ffio02-j","6.sei-cert-oracle-coding-standard-for-java\u002F3.rules\u002F07.input-output-fio\u002F04.fio02-j",{"title":2387,"path":2388,"stem":2389},"FIO03-J. Remove temporary files before termination","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frules\u002Finput-output-fio\u002Ffio03-j","6.sei-cert-oracle-coding-standard-for-java\u002F3.rules\u002F07.input-output-fio\u002F05.fio03-j",{"title":2391,"path":2392,"stem":2393},"FIO04-J. Release resources when they are no longer needed","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frules\u002Finput-output-fio\u002Ffio04-j","6.sei-cert-oracle-coding-standard-for-java\u002F3.rules\u002F07.input-output-fio\u002F06.fio04-j",{"title":2395,"path":2396,"stem":2397},"FIO05-J. Do not expose buffers or their backing arrays methods to untrusted code","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frules\u002Finput-output-fio\u002Ffio05-j","6.sei-cert-oracle-coding-standard-for-java\u002F3.rules\u002F07.input-output-fio\u002F07.fio05-j",{"title":2399,"path":2400,"stem":2401},"FIO06-J. Do not create multiple buffered wrappers on a single byte or character stream","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frules\u002Finput-output-fio\u002Ffio06-j","6.sei-cert-oracle-coding-standard-for-java\u002F3.rules\u002F07.input-output-fio\u002F08.fio06-j",{"title":2403,"path":2404,"stem":2405},"FIO07-J. Do not let external processes block on IO buffers","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frules\u002Finput-output-fio\u002Ffio07-j","6.sei-cert-oracle-coding-standard-for-java\u002F3.rules\u002F07.input-output-fio\u002F09.fio07-j",{"title":2407,"path":2408,"stem":2409},"FIO08-J. Distinguish between characters or bytes read from a stream and -1","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frules\u002Finput-output-fio\u002Ffio08-j","6.sei-cert-oracle-coding-standard-for-java\u002F3.rules\u002F07.input-output-fio\u002F10.fio08-j",{"title":2411,"path":2412,"stem":2413},"FIO09-J. Do not rely on the write() method to output integers outside the range 0 to 255","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frules\u002Finput-output-fio\u002Ffio09-j","6.sei-cert-oracle-coding-standard-for-java\u002F3.rules\u002F07.input-output-fio\u002F11.fio09-j",{"title":2415,"path":2416,"stem":2417},"FIO10-J. Ensure the array is filled when using read() to fill an array","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frules\u002Finput-output-fio\u002Ffio10-j","6.sei-cert-oracle-coding-standard-for-java\u002F3.rules\u002F07.input-output-fio\u002F12.fio10-j",{"title":2419,"path":2420,"stem":2421},"FIO11-J. Do not convert between strings and bytes without specifying a valid character encoding","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frules\u002Finput-output-fio\u002Ffio11-j","6.sei-cert-oracle-coding-standard-for-java\u002F3.rules\u002F07.input-output-fio\u002F13.fio11-j",{"title":2423,"path":2424,"stem":2425},"FIO12-J. Provide methods to read and write little-endian data","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frules\u002Finput-output-fio\u002Ffio12-j","6.sei-cert-oracle-coding-standard-for-java\u002F3.rules\u002F07.input-output-fio\u002F14.fio12-j",{"title":1234,"path":1233,"stem":2427},"6.sei-cert-oracle-coding-standard-for-java\u002F3.rules\u002F07.input-output-fio\u002F15.fio13-j",{"title":2429,"path":2430,"stem":2431},"FIO14-J. Perform proper cleanup at program termination","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frules\u002Finput-output-fio\u002Ffio14-j","6.sei-cert-oracle-coding-standard-for-java\u002F3.rules\u002F07.input-output-fio\u002F16.fio14-j",{"title":2433,"path":2434,"stem":2435},"FIO15-J. Do not reset a servlet's output stream after committing it","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frules\u002Finput-output-fio\u002Ffio15-j","6.sei-cert-oracle-coding-standard-for-java\u002F3.rules\u002F07.input-output-fio\u002F17.fio15-j",{"title":2437,"path":2438,"stem":2439},"FIO16-J. Canonicalize path names before validating them","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frules\u002Finput-output-fio\u002Ffio16-j","6.sei-cert-oracle-coding-standard-for-java\u002F3.rules\u002F07.input-output-fio\u002F18.fio16-j",{"title":2441,"path":2442,"stem":2443,"children":2444},"Input Validation and Data Sanitization (IDS)","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frules\u002Finput-validation-and-data-sanitization-ids","6.sei-cert-oracle-coding-standard-for-java\u002F3.rules\u002F08.input-validation-and-data-sanitization-ids\u002F01.index",[2445,2446,2450,2454,2458,2462,2466,2470,2474,2478,2482,2486,2490],{"title":2441,"path":2442,"stem":2443},{"title":2447,"path":2448,"stem":2449},"IDS00-J. Prevent SQL injection","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frules\u002Finput-validation-and-data-sanitization-ids\u002Fids00-j","6.sei-cert-oracle-coding-standard-for-java\u002F3.rules\u002F08.input-validation-and-data-sanitization-ids\u002F02.ids00-j",{"title":2451,"path":2452,"stem":2453},"IDS01-J. Normalize strings before validating them","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frules\u002Finput-validation-and-data-sanitization-ids\u002Fids01-j","6.sei-cert-oracle-coding-standard-for-java\u002F3.rules\u002F08.input-validation-and-data-sanitization-ids\u002F03.ids01-j",{"title":2455,"path":2456,"stem":2457},"IDS03-J. Do not log unsanitized user input","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frules\u002Finput-validation-and-data-sanitization-ids\u002Fids03-j","6.sei-cert-oracle-coding-standard-for-java\u002F3.rules\u002F08.input-validation-and-data-sanitization-ids\u002F04.ids03-j",{"title":2459,"path":2460,"stem":2461},"IDS04-J. Safely extract files from ZipInputStream","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frules\u002Finput-validation-and-data-sanitization-ids\u002Fids04-j","6.sei-cert-oracle-coding-standard-for-java\u002F3.rules\u002F08.input-validation-and-data-sanitization-ids\u002F05.ids04-j",{"title":2463,"path":2464,"stem":2465},"IDS06-J. Exclude unsanitized user input from format strings","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frules\u002Finput-validation-and-data-sanitization-ids\u002Fids06-j","6.sei-cert-oracle-coding-standard-for-java\u002F3.rules\u002F08.input-validation-and-data-sanitization-ids\u002F06.ids06-j",{"title":2467,"path":2468,"stem":2469},"IDS07-J. Sanitize untrusted data passed to the Runtime.exec() method","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frules\u002Finput-validation-and-data-sanitization-ids\u002Fids07-j","6.sei-cert-oracle-coding-standard-for-java\u002F3.rules\u002F08.input-validation-and-data-sanitization-ids\u002F07.ids07-j",{"title":2471,"path":2472,"stem":2473},"IDS08-J. Sanitize untrusted data included in a regular expression","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frules\u002Finput-validation-and-data-sanitization-ids\u002Fids08-j","6.sei-cert-oracle-coding-standard-for-java\u002F3.rules\u002F08.input-validation-and-data-sanitization-ids\u002F08.ids08-j",{"title":2475,"path":2476,"stem":2477},"IDS11-J. Perform any string modifications before validation","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frules\u002Finput-validation-and-data-sanitization-ids\u002Fids11-j","6.sei-cert-oracle-coding-standard-for-java\u002F3.rules\u002F08.input-validation-and-data-sanitization-ids\u002F09.ids11-j",{"title":2479,"path":2480,"stem":2481},"IDS14-J. Do not trust the contents of hidden form fields","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frules\u002Finput-validation-and-data-sanitization-ids\u002Fids14-j","6.sei-cert-oracle-coding-standard-for-java\u002F3.rules\u002F08.input-validation-and-data-sanitization-ids\u002F10.ids14-j",{"title":2483,"path":2484,"stem":2485},"IDS15-J. Do not allow sensitive information to leak outside a trust boundary","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frules\u002Finput-validation-and-data-sanitization-ids\u002Fids15-j","6.sei-cert-oracle-coding-standard-for-java\u002F3.rules\u002F08.input-validation-and-data-sanitization-ids\u002F11.ids15-j",{"title":2487,"path":2488,"stem":2489},"IDS16-J. Prevent XML Injection","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frules\u002Finput-validation-and-data-sanitization-ids\u002Fids16-j","6.sei-cert-oracle-coding-standard-for-java\u002F3.rules\u002F08.input-validation-and-data-sanitization-ids\u002F12.ids16-j",{"title":2491,"path":2492,"stem":2493},"IDS17-J. Prevent XML External Entity Attacks","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frules\u002Finput-validation-and-data-sanitization-ids\u002Fids17-j","6.sei-cert-oracle-coding-standard-for-java\u002F3.rules\u002F08.input-validation-and-data-sanitization-ids\u002F13.ids17-j",{"title":2495,"path":2496,"stem":2497,"children":2498},"Java Native Interface (JNI)","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frules\u002Fjava-native-interface-jni","6.sei-cert-oracle-coding-standard-for-java\u002F3.rules\u002F09.java-native-interface-jni\u002F1.index",[2499,2500,2504,2508,2512,2516],{"title":2495,"path":2496,"stem":2497},{"title":2501,"path":2502,"stem":2503},"JNI00-J. Define wrappers around native methods","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frules\u002Fjava-native-interface-jni\u002Fjni00-j","6.sei-cert-oracle-coding-standard-for-java\u002F3.rules\u002F09.java-native-interface-jni\u002F2.jni00-j",{"title":2505,"path":2506,"stem":2507},"JNI01-J. Safely invoke standard APIs that perform tasks using the immediate caller's class loader instance (loadLibrary)","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frules\u002Fjava-native-interface-jni\u002Fjni01-j","6.sei-cert-oracle-coding-standard-for-java\u002F3.rules\u002F09.java-native-interface-jni\u002F3.jni01-j",{"title":2509,"path":2510,"stem":2511},"JNI02-J. Do not assume object references are constant or unique","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frules\u002Fjava-native-interface-jni\u002Fjni02-j","6.sei-cert-oracle-coding-standard-for-java\u002F3.rules\u002F09.java-native-interface-jni\u002F4.jni02-j",{"title":2513,"path":2514,"stem":2515},"JNI03-J. Do not use direct pointers to Java objects in JNI code","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frules\u002Fjava-native-interface-jni\u002Fjni03-j","6.sei-cert-oracle-coding-standard-for-java\u002F3.rules\u002F09.java-native-interface-jni\u002F5.jni03-j",{"title":2517,"path":2518,"stem":2519},"JNI04-J. Do not assume that Java strings are null-terminated","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frules\u002Fjava-native-interface-jni\u002Fjni04-j","6.sei-cert-oracle-coding-standard-for-java\u002F3.rules\u002F09.java-native-interface-jni\u002F6.jni04-j",{"title":2521,"path":2522,"stem":2523,"children":2524},"Locking (LCK)","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frules\u002Flocking-lck","6.sei-cert-oracle-coding-standard-for-java\u002F3.rules\u002F10.locking-lck\u002F01.index",[2525,2526,2530,2534,2538,2542,2546,2550,2554,2558,2562,2566,2570],{"title":2521,"path":2522,"stem":2523},{"title":2527,"path":2528,"stem":2529},"LCK00-J. Use private final lock objects to synchronize classes that may interact with untrusted code","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frules\u002Flocking-lck\u002Flck00-j","6.sei-cert-oracle-coding-standard-for-java\u002F3.rules\u002F10.locking-lck\u002F02.lck00-j",{"title":2531,"path":2532,"stem":2533},"LCK01-J. Do not synchronize on objects that may be reused","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frules\u002Flocking-lck\u002Flck01-j","6.sei-cert-oracle-coding-standard-for-java\u002F3.rules\u002F10.locking-lck\u002F03.lck01-j",{"title":2535,"path":2536,"stem":2537},"LCK02-J. Do not synchronize on the class object returned by getClass()","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frules\u002Flocking-lck\u002Flck02-j","6.sei-cert-oracle-coding-standard-for-java\u002F3.rules\u002F10.locking-lck\u002F04.lck02-j",{"title":2539,"path":2540,"stem":2541},"LCK03-J. Do not synchronize on the intrinsic locks of high-level concurrency objects","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frules\u002Flocking-lck\u002Flck03-j","6.sei-cert-oracle-coding-standard-for-java\u002F3.rules\u002F10.locking-lck\u002F05.lck03-j",{"title":2543,"path":2544,"stem":2545},"LCK04-J. Do not synchronize on a collection view if the backing collection is accessible","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frules\u002Flocking-lck\u002Flck04-j","6.sei-cert-oracle-coding-standard-for-java\u002F3.rules\u002F10.locking-lck\u002F06.lck04-j",{"title":2547,"path":2548,"stem":2549},"LCK05-J. Synchronize access to static fields that can be modified by untrusted code","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frules\u002Flocking-lck\u002Flck05-j","6.sei-cert-oracle-coding-standard-for-java\u002F3.rules\u002F10.locking-lck\u002F07.lck05-j",{"title":2551,"path":2552,"stem":2553},"LCK06-J. Do not use an instance lock to protect shared static data","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frules\u002Flocking-lck\u002Flck06-j","6.sei-cert-oracle-coding-standard-for-java\u002F3.rules\u002F10.locking-lck\u002F08.lck06-j",{"title":2555,"path":2556,"stem":2557},"LCK07-J. Avoid deadlock by requesting and releasing locks in the same order","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frules\u002Flocking-lck\u002Flck07-j","6.sei-cert-oracle-coding-standard-for-java\u002F3.rules\u002F10.locking-lck\u002F09.lck07-j",{"title":2559,"path":2560,"stem":2561},"LCK08-J. Ensure actively held locks are released on exceptional conditions","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frules\u002Flocking-lck\u002Flck08-j","6.sei-cert-oracle-coding-standard-for-java\u002F3.rules\u002F10.locking-lck\u002F10.lck08-j",{"title":2563,"path":2564,"stem":2565},"LCK09-J. Do not perform operations that can block while holding a lock","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frules\u002Flocking-lck\u002Flck09-j","6.sei-cert-oracle-coding-standard-for-java\u002F3.rules\u002F10.locking-lck\u002F11.lck09-j",{"title":2567,"path":2568,"stem":2569},"LCK10-J. Use a correct form of the double-checked locking idiom","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frules\u002Flocking-lck\u002Flck10-j","6.sei-cert-oracle-coding-standard-for-java\u002F3.rules\u002F10.locking-lck\u002F12.lck10-j",{"title":2571,"path":2572,"stem":2573},"LCK11-J. Avoid client-side locking when using classes that do not commit to their locking strategy","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frules\u002Flocking-lck\u002Flck11-j","6.sei-cert-oracle-coding-standard-for-java\u002F3.rules\u002F10.locking-lck\u002F13.lck11-j",{"title":2575,"path":2576,"stem":2577,"children":2578},"Methods (MET)","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frules\u002Fmethods-met","6.sei-cert-oracle-coding-standard-for-java\u002F3.rules\u002F11.methods-met\u002F01.index",[2579,2580,2584,2588,2592,2596,2600,2604,2608,2612,2616,2620,2624,2628,2632],{"title":2575,"path":2576,"stem":2577},{"title":2581,"path":2582,"stem":2583},"MET00-J. Validate method arguments","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frules\u002Fmethods-met\u002Fmet00-j","6.sei-cert-oracle-coding-standard-for-java\u002F3.rules\u002F11.methods-met\u002F02.met00-j",{"title":2585,"path":2586,"stem":2587},"MET01-J. Never use assertions to validate method arguments","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frules\u002Fmethods-met\u002Fmet01-j","6.sei-cert-oracle-coding-standard-for-java\u002F3.rules\u002F11.methods-met\u002F03.met01-j",{"title":2589,"path":2590,"stem":2591},"MET02-J. Do not use deprecated or obsolete classes or methods","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frules\u002Fmethods-met\u002Fmet02-j","6.sei-cert-oracle-coding-standard-for-java\u002F3.rules\u002F11.methods-met\u002F04.met02-j",{"title":2593,"path":2594,"stem":2595},"MET03-J. Methods that perform a security check must be declared private or final","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frules\u002Fmethods-met\u002Fmet03-j","6.sei-cert-oracle-coding-standard-for-java\u002F3.rules\u002F11.methods-met\u002F05.met03-j",{"title":2597,"path":2598,"stem":2599},"MET04-J. Do not increase the accessibility of overridden or hidden methods","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frules\u002Fmethods-met\u002Fmet04-j","6.sei-cert-oracle-coding-standard-for-java\u002F3.rules\u002F11.methods-met\u002F06.met04-j",{"title":2601,"path":2602,"stem":2603},"MET05-J. Ensure that constructors do not call overridable methods","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frules\u002Fmethods-met\u002Fmet05-j","6.sei-cert-oracle-coding-standard-for-java\u002F3.rules\u002F11.methods-met\u002F07.met05-j",{"title":2605,"path":2606,"stem":2607},"MET06-J. Do not invoke overridable methods in clone()","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frules\u002Fmethods-met\u002Fmet06-j","6.sei-cert-oracle-coding-standard-for-java\u002F3.rules\u002F11.methods-met\u002F08.met06-j",{"title":2609,"path":2610,"stem":2611},"MET07-J. Never declare a class method that hides a method declared in a superclass or superinterface","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frules\u002Fmethods-met\u002Fmet07-j","6.sei-cert-oracle-coding-standard-for-java\u002F3.rules\u002F11.methods-met\u002F09.met07-j",{"title":2613,"path":2614,"stem":2615},"MET08-J. Preserve the equality contract when overriding the equals() method","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frules\u002Fmethods-met\u002Fmet08-j","6.sei-cert-oracle-coding-standard-for-java\u002F3.rules\u002F11.methods-met\u002F10.met08-j",{"title":2617,"path":2618,"stem":2619},"MET09-J. Classes that define an equals() method must also define a hashCode() method","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frules\u002Fmethods-met\u002Fmet09-j","6.sei-cert-oracle-coding-standard-for-java\u002F3.rules\u002F11.methods-met\u002F11.met09-j",{"title":2621,"path":2622,"stem":2623},"MET10-J. Follow the general contract when implementing the compareTo() method","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frules\u002Fmethods-met\u002Fmet10-j","6.sei-cert-oracle-coding-standard-for-java\u002F3.rules\u002F11.methods-met\u002F12.met10-j",{"title":2625,"path":2626,"stem":2627},"MET11-J. Ensure that keys used in comparison operations are immutable","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frules\u002Fmethods-met\u002Fmet11-j","6.sei-cert-oracle-coding-standard-for-java\u002F3.rules\u002F11.methods-met\u002F13.met11-j",{"title":2629,"path":2630,"stem":2631},"MET12-J. Do not use finalizers","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frules\u002Fmethods-met\u002Fmet12-j","6.sei-cert-oracle-coding-standard-for-java\u002F3.rules\u002F11.methods-met\u002F14.met12-j",{"title":2633,"path":2634,"stem":2635},"MET13-J. Do not assume that reassigning method arguments modifies the calling environment","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frules\u002Fmethods-met\u002Fmet13-j","6.sei-cert-oracle-coding-standard-for-java\u002F3.rules\u002F11.methods-met\u002F15.met13-j",{"title":2637,"path":2638,"stem":2639,"children":2640},"Miscellaneous (MSC)","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frules\u002Fmiscellaneous-msc","6.sei-cert-oracle-coding-standard-for-java\u002F3.rules\u002F12.miscellaneous-msc\u002F01.index",[2641,2642,2646,2650,2654,2658,2662,2666,2670,2674,2678,2682,2686],{"title":2637,"path":2638,"stem":2639},{"title":2643,"path":2644,"stem":2645},"MSC00-J. Use SSLSocket rather than Socket for secure data exchange","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frules\u002Fmiscellaneous-msc\u002Fmsc00-j","6.sei-cert-oracle-coding-standard-for-java\u002F3.rules\u002F12.miscellaneous-msc\u002F02.msc00-j",{"title":2647,"path":2648,"stem":2649},"MSC01-J. Do not use an empty infinite loop","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frules\u002Fmiscellaneous-msc\u002Fmsc01-j","6.sei-cert-oracle-coding-standard-for-java\u002F3.rules\u002F12.miscellaneous-msc\u002F03.msc01-j",{"title":2651,"path":2652,"stem":2653},"MSC02-J. Generate strong random numbers","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frules\u002Fmiscellaneous-msc\u002Fmsc02-j","6.sei-cert-oracle-coding-standard-for-java\u002F3.rules\u002F12.miscellaneous-msc\u002F04.msc02-j",{"title":2655,"path":2656,"stem":2657},"MSC03-J. Never hard code sensitive information","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frules\u002Fmiscellaneous-msc\u002Fmsc03-j","6.sei-cert-oracle-coding-standard-for-java\u002F3.rules\u002F12.miscellaneous-msc\u002F05.msc03-j",{"title":2659,"path":2660,"stem":2661},"MSC04-J. Do not leak memory","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frules\u002Fmiscellaneous-msc\u002Fmsc04-j","6.sei-cert-oracle-coding-standard-for-java\u002F3.rules\u002F12.miscellaneous-msc\u002F06.msc04-j",{"title":2663,"path":2664,"stem":2665},"MSC05-J. Do not exhaust heap space","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frules\u002Fmiscellaneous-msc\u002Fmsc05-j","6.sei-cert-oracle-coding-standard-for-java\u002F3.rules\u002F12.miscellaneous-msc\u002F07.msc05-j",{"title":2667,"path":2668,"stem":2669},"MSC06-J. Do not modify the underlying collection when an iteration is in progress","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frules\u002Fmiscellaneous-msc\u002Fmsc06-j","6.sei-cert-oracle-coding-standard-for-java\u002F3.rules\u002F12.miscellaneous-msc\u002F08.msc06-j",{"title":2671,"path":2672,"stem":2673},"MSC07-J. Prevent multiple instantiations of singleton objects","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frules\u002Fmiscellaneous-msc\u002Fmsc07-j","6.sei-cert-oracle-coding-standard-for-java\u002F3.rules\u002F12.miscellaneous-msc\u002F09.msc07-j",{"title":2675,"path":2676,"stem":2677},"MSC08-J. Do not store nonserializable objects as attributes in an HTTP session","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frules\u002Fmiscellaneous-msc\u002Fmsc08-j","6.sei-cert-oracle-coding-standard-for-java\u002F3.rules\u002F12.miscellaneous-msc\u002F10.msc08-j",{"title":2679,"path":2680,"stem":2681},"MSC09-J. For OAuth, ensure (a) [relying party receiving user's ID in last step] is same as (b) [relying party the access token was granted to].","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frules\u002Fmiscellaneous-msc\u002Fmsc09-j","6.sei-cert-oracle-coding-standard-for-java\u002F3.rules\u002F12.miscellaneous-msc\u002F11.msc09-j",{"title":2683,"path":2684,"stem":2685},"MSC10-J. Do not use OAuth 2.0 implicit grant (unmodified) for authentication","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frules\u002Fmiscellaneous-msc\u002Fmsc10-j","6.sei-cert-oracle-coding-standard-for-java\u002F3.rules\u002F12.miscellaneous-msc\u002F12.msc10-j",{"title":2687,"path":2688,"stem":2689},"MSC11-J. Do not let session information leak within a servlet","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frules\u002Fmiscellaneous-msc\u002Fmsc11-j","6.sei-cert-oracle-coding-standard-for-java\u002F3.rules\u002F12.miscellaneous-msc\u002F13.msc11-j",{"title":2691,"path":2692,"stem":2693,"children":2694},"Numeric Types and Operations (NUM)","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frules\u002Fnumeric-types-and-operations-num","6.sei-cert-oracle-coding-standard-for-java\u002F3.rules\u002F13.numeric-types-and-operations-num\u002F01.index",[2695,2696,2700,2704,2708,2712,2716,2720,2724,2728,2732,2736,2740,2744],{"title":2691,"path":2692,"stem":2693},{"title":2697,"path":2698,"stem":2699},"NUM00-J. Detect or prevent integer overflow","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frules\u002Fnumeric-types-and-operations-num\u002Fnum00-j","6.sei-cert-oracle-coding-standard-for-java\u002F3.rules\u002F13.numeric-types-and-operations-num\u002F02.num00-j",{"title":2701,"path":2702,"stem":2703},"NUM01-J. Do not perform bitwise and arithmetic operations on the same data","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frules\u002Fnumeric-types-and-operations-num\u002Fnum01-j","6.sei-cert-oracle-coding-standard-for-java\u002F3.rules\u002F13.numeric-types-and-operations-num\u002F03.num01-j",{"title":2705,"path":2706,"stem":2707},"NUM02-J. Ensure that division and remainder operations do not result in divide-by-zero errors","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frules\u002Fnumeric-types-and-operations-num\u002Fnum02-j","6.sei-cert-oracle-coding-standard-for-java\u002F3.rules\u002F13.numeric-types-and-operations-num\u002F04.num02-j",{"title":2709,"path":2710,"stem":2711},"NUM03-J. Use integer types that can fully represent the possible range of unsigned data","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frules\u002Fnumeric-types-and-operations-num\u002Fnum03-j","6.sei-cert-oracle-coding-standard-for-java\u002F3.rules\u002F13.numeric-types-and-operations-num\u002F05.num03-j",{"title":2713,"path":2714,"stem":2715},"NUM04-J. Do not use floating-point numbers if precise computation is required","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frules\u002Fnumeric-types-and-operations-num\u002Fnum04-j","6.sei-cert-oracle-coding-standard-for-java\u002F3.rules\u002F13.numeric-types-and-operations-num\u002F06.num04-j",{"title":2717,"path":2718,"stem":2719},"NUM07-J. Do not attempt comparisons with NaN","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frules\u002Fnumeric-types-and-operations-num\u002Fnum07-j","6.sei-cert-oracle-coding-standard-for-java\u002F3.rules\u002F13.numeric-types-and-operations-num\u002F07.num07-j",{"title":2721,"path":2722,"stem":2723},"NUM08-J. Check floating-point inputs for exceptional values","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frules\u002Fnumeric-types-and-operations-num\u002Fnum08-j","6.sei-cert-oracle-coding-standard-for-java\u002F3.rules\u002F13.numeric-types-and-operations-num\u002F08.num08-j",{"title":2725,"path":2726,"stem":2727},"NUM09-J. Do not use floating-point variables as loop counters","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frules\u002Fnumeric-types-and-operations-num\u002Fnum09-j","6.sei-cert-oracle-coding-standard-for-java\u002F3.rules\u002F13.numeric-types-and-operations-num\u002F09.num09-j",{"title":2729,"path":2730,"stem":2731},"NUM10-J. Do not construct BigDecimal objects from floating-point literals","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frules\u002Fnumeric-types-and-operations-num\u002Fnum10-j","6.sei-cert-oracle-coding-standard-for-java\u002F3.rules\u002F13.numeric-types-and-operations-num\u002F10.num10-j",{"title":2733,"path":2734,"stem":2735},"NUM11-J. Do not compare or inspect the string representation of floating-point values","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frules\u002Fnumeric-types-and-operations-num\u002Fnum11-j","6.sei-cert-oracle-coding-standard-for-java\u002F3.rules\u002F13.numeric-types-and-operations-num\u002F11.num11-j",{"title":2737,"path":2738,"stem":2739},"NUM12-J. Ensure conversions of numeric types to narrower types do not result in lost or misinterpreted data","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frules\u002Fnumeric-types-and-operations-num\u002Fnum12-j","6.sei-cert-oracle-coding-standard-for-java\u002F3.rules\u002F13.numeric-types-and-operations-num\u002F12.num12-j",{"title":2741,"path":2742,"stem":2743},"NUM13-J. Avoid loss of precision when converting primitive integers to floating-point","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frules\u002Fnumeric-types-and-operations-num\u002Fnum13-j","6.sei-cert-oracle-coding-standard-for-java\u002F3.rules\u002F13.numeric-types-and-operations-num\u002F13.num13-j",{"title":2745,"path":2746,"stem":2747},"NUM14-J. Use shift operators correctly","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frules\u002Fnumeric-types-and-operations-num\u002Fnum14-j","6.sei-cert-oracle-coding-standard-for-java\u002F3.rules\u002F13.numeric-types-and-operations-num\u002F14.num14-j",{"title":2749,"path":2750,"stem":2751,"children":2752},"Object Orientation (OBJ)","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frules\u002Fobject-orientation-obj","6.sei-cert-oracle-coding-standard-for-java\u002F3.rules\u002F14.object-orientation-obj\u002F01.index",[2753,2754,2758,2762,2766,2770,2774,2778,2782,2786,2790,2794,2798,2802,2806],{"title":2749,"path":2750,"stem":2751},{"title":2755,"path":2756,"stem":2757},"OBJ01-J. Limit accessibility of fields","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frules\u002Fobject-orientation-obj\u002Fobj01-j","6.sei-cert-oracle-coding-standard-for-java\u002F3.rules\u002F14.object-orientation-obj\u002F02.obj01-j",{"title":2759,"path":2760,"stem":2761},"OBJ02-J. Preserve dependencies in subclasses when changing superclasses","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frules\u002Fobject-orientation-obj\u002Fobj02-j","6.sei-cert-oracle-coding-standard-for-java\u002F3.rules\u002F14.object-orientation-obj\u002F03.obj02-j",{"title":2763,"path":2764,"stem":2765},"OBJ03-J. Prevent heap pollution","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frules\u002Fobject-orientation-obj\u002Fobj03-j","6.sei-cert-oracle-coding-standard-for-java\u002F3.rules\u002F14.object-orientation-obj\u002F04.obj03-j",{"title":2767,"path":2768,"stem":2769},"OBJ04-J. Provide mutable classes with copy functionality to safely allow passing instances to untrusted code","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frules\u002Fobject-orientation-obj\u002Fobj04-j","6.sei-cert-oracle-coding-standard-for-java\u002F3.rules\u002F14.object-orientation-obj\u002F05.obj04-j",{"title":2771,"path":2772,"stem":2773},"OBJ05-J. Do not return references to private mutable class members","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frules\u002Fobject-orientation-obj\u002Fobj05-j","6.sei-cert-oracle-coding-standard-for-java\u002F3.rules\u002F14.object-orientation-obj\u002F06.obj05-j",{"title":2775,"path":2776,"stem":2777},"OBJ06-J. Defensively copy mutable inputs and mutable internal components","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frules\u002Fobject-orientation-obj\u002Fobj06-j","6.sei-cert-oracle-coding-standard-for-java\u002F3.rules\u002F14.object-orientation-obj\u002F07.obj06-j",{"title":2779,"path":2780,"stem":2781},"OBJ07-J. Sensitive classes must not let themselves be copied","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frules\u002Fobject-orientation-obj\u002Fobj07-j","6.sei-cert-oracle-coding-standard-for-java\u002F3.rules\u002F14.object-orientation-obj\u002F08.obj07-j",{"title":2783,"path":2784,"stem":2785},"OBJ08-J. Do not expose private members of an outer class from within a nested class","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frules\u002Fobject-orientation-obj\u002Fobj08-j","6.sei-cert-oracle-coding-standard-for-java\u002F3.rules\u002F14.object-orientation-obj\u002F09.obj08-j",{"title":2787,"path":2788,"stem":2789},"OBJ09-J. Compare classes and not class names","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frules\u002Fobject-orientation-obj\u002Fobj09-j","6.sei-cert-oracle-coding-standard-for-java\u002F3.rules\u002F14.object-orientation-obj\u002F10.obj09-j",{"title":2791,"path":2792,"stem":2793},"OBJ10-J. Do not use public static nonfinal fields","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frules\u002Fobject-orientation-obj\u002Fobj10-j","6.sei-cert-oracle-coding-standard-for-java\u002F3.rules\u002F14.object-orientation-obj\u002F11.obj10-j",{"title":2795,"path":2796,"stem":2797},"OBJ11-J. Be wary of letting constructors throw exceptions","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frules\u002Fobject-orientation-obj\u002Fobj11-j","6.sei-cert-oracle-coding-standard-for-java\u002F3.rules\u002F14.object-orientation-obj\u002F12.obj11-j",{"title":2799,"path":2800,"stem":2801},"OBJ12-J. Respect object-based annotations","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frules\u002Fobject-orientation-obj\u002Fobj12-j","6.sei-cert-oracle-coding-standard-for-java\u002F3.rules\u002F14.object-orientation-obj\u002F13.obj12-j",{"title":2803,"path":2804,"stem":2805},"OBJ13-J. Ensure that references to mutable objects are not exposed","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frules\u002Fobject-orientation-obj\u002Fobj13-j","6.sei-cert-oracle-coding-standard-for-java\u002F3.rules\u002F14.object-orientation-obj\u002F14.obj13-j",{"title":2807,"path":2808,"stem":2809},"OBJ14-J. Do not use an object that has been freed.","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frules\u002Fobject-orientation-obj\u002Fobj14-j","6.sei-cert-oracle-coding-standard-for-java\u002F3.rules\u002F14.object-orientation-obj\u002F15.obj14-j",{"title":2811,"path":2812,"stem":2813,"children":2814},"Platform Security (SEC)","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frules\u002Fplatform-security-sec","6.sei-cert-oracle-coding-standard-for-java\u002F3.rules\u002F15.platform-security-sec\u002F01.index",[2815,2816,2820,2824,2828,2832,2836,2840,2844,2848,2852,2856],{"title":2811,"path":2812,"stem":2813},{"title":2817,"path":2818,"stem":2819},"SEC00-J. Do not allow privileged blocks to leak sensitive information across a trust boundary","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frules\u002Fplatform-security-sec\u002Fsec00-j","6.sei-cert-oracle-coding-standard-for-java\u002F3.rules\u002F15.platform-security-sec\u002F02.sec00-j",{"title":2821,"path":2822,"stem":2823},"SEC01-J. Do not allow tainted variables in privileged blocks","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frules\u002Fplatform-security-sec\u002Fsec01-j","6.sei-cert-oracle-coding-standard-for-java\u002F3.rules\u002F15.platform-security-sec\u002F03.sec01-j",{"title":2825,"path":2826,"stem":2827},"SEC02-J. Do not base security checks on untrusted sources","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frules\u002Fplatform-security-sec\u002Fsec02-j","6.sei-cert-oracle-coding-standard-for-java\u002F3.rules\u002F15.platform-security-sec\u002F04.sec02-j",{"title":2829,"path":2830,"stem":2831},"SEC03-J. Do not load trusted classes after allowing untrusted code to load arbitrary classes","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frules\u002Fplatform-security-sec\u002Fsec03-j","6.sei-cert-oracle-coding-standard-for-java\u002F3.rules\u002F15.platform-security-sec\u002F05.sec03-j",{"title":2833,"path":2834,"stem":2835},"SEC04-J. Protect sensitive operations with security manager checks","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frules\u002Fplatform-security-sec\u002Fsec04-j","6.sei-cert-oracle-coding-standard-for-java\u002F3.rules\u002F15.platform-security-sec\u002F06.sec04-j",{"title":2837,"path":2838,"stem":2839},"SEC05-J. Do not use reflection to increase accessibility of classes, methods, or fields","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frules\u002Fplatform-security-sec\u002Fsec05-j","6.sei-cert-oracle-coding-standard-for-java\u002F3.rules\u002F15.platform-security-sec\u002F07.sec05-j",{"title":2841,"path":2842,"stem":2843},"SEC06-J. Do not rely on the default automatic signature verification provided by URLClassLoader and java.util.jar","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frules\u002Fplatform-security-sec\u002Fsec06-j","6.sei-cert-oracle-coding-standard-for-java\u002F3.rules\u002F15.platform-security-sec\u002F08.sec06-j",{"title":2845,"path":2846,"stem":2847},"SEC07-J. Call the superclass's getPermissions() method when writing a custom class loader","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frules\u002Fplatform-security-sec\u002Fsec07-j","6.sei-cert-oracle-coding-standard-for-java\u002F3.rules\u002F15.platform-security-sec\u002F09.sec07-j",{"title":2849,"path":2850,"stem":2851},"SEC08-J Trusted code must discard or clean any arguments provided by untrusted code","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frules\u002Fplatform-security-sec\u002Fsec08-j","6.sei-cert-oracle-coding-standard-for-java\u002F3.rules\u002F15.platform-security-sec\u002F10.sec08-j",{"title":2853,"path":2854,"stem":2855},"SEC09-J Never leak the results of certain standard API methods from trusted code to untrusted code","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frules\u002Fplatform-security-sec\u002Fsec09-j","6.sei-cert-oracle-coding-standard-for-java\u002F3.rules\u002F15.platform-security-sec\u002F11.sec09-j",{"title":2857,"path":2858,"stem":2859},"SEC10-J Never permit untrusted code to invoke any API that may (possibly transitively) invoke the reflection APIs","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frules\u002Fplatform-security-sec\u002Fsec10-j","6.sei-cert-oracle-coding-standard-for-java\u002F3.rules\u002F15.platform-security-sec\u002F12.sec10-j",{"title":2861,"path":2862,"stem":2863,"children":2864},"Runtime Environment (ENV)","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frules\u002Fruntime-environment-env","6.sei-cert-oracle-coding-standard-for-java\u002F3.rules\u002F16.runtime-environment-env\u002F1.index",[2865,2866,2870,2874,2878,2888,2892,2896],{"title":2861,"path":2862,"stem":2863},{"title":2867,"path":2868,"stem":2869},"ENV00-J. Do not sign code that performs only unprivileged operations","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frules\u002Fruntime-environment-env\u002Fenv00-j","6.sei-cert-oracle-coding-standard-for-java\u002F3.rules\u002F16.runtime-environment-env\u002F2.env00-j",{"title":2871,"path":2872,"stem":2873},"ENV01-J. Place all security-sensitive code in a single JAR and sign and seal it","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frules\u002Fruntime-environment-env\u002Fenv01-j","6.sei-cert-oracle-coding-standard-for-java\u002F3.rules\u002F16.runtime-environment-env\u002F3.env01-j",{"title":2875,"path":2876,"stem":2877},"ENV02-J. Do not trust the values of environment variables","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frules\u002Fruntime-environment-env\u002Fenv02-j","6.sei-cert-oracle-coding-standard-for-java\u002F3.rules\u002F16.runtime-environment-env\u002F4.env02-j",{"title":2879,"path":2880,"stem":2881,"children":2882},"ENV03-J. Do not grant dangerous combinations of permissions","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frules\u002Fruntime-environment-env\u002Fenv03-j","6.sei-cert-oracle-coding-standard-for-java\u002F3.rules\u002F16.runtime-environment-env\u002F5.env03-j\u002F1.index",[2883,2884],{"title":2879,"path":2880,"stem":2881},{"title":2885,"path":2886,"stem":2887},"DUMMY ENV03-J","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frules\u002Fruntime-environment-env\u002Fenv03-j\u002Fdummy-env03-j","6.sei-cert-oracle-coding-standard-for-java\u002F3.rules\u002F16.runtime-environment-env\u002F5.env03-j\u002F2.dummy-env03-j",{"title":2889,"path":2890,"stem":2891},"ENV04-J. Do not disable bytecode verification","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frules\u002Fruntime-environment-env\u002Fenv04-j","6.sei-cert-oracle-coding-standard-for-java\u002F3.rules\u002F16.runtime-environment-env\u002F6.env04-j",{"title":2893,"path":2894,"stem":2895},"ENV05-J. Do not deploy an application that can be remotely monitored","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frules\u002Fruntime-environment-env\u002Fenv05-j","6.sei-cert-oracle-coding-standard-for-java\u002F3.rules\u002F16.runtime-environment-env\u002F7.env05-j",{"title":2897,"path":2898,"stem":2899},"ENV06-J. Production code must not contain debugging entry points","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frules\u002Fruntime-environment-env\u002Fenv06-j","6.sei-cert-oracle-coding-standard-for-java\u002F3.rules\u002F16.runtime-environment-env\u002F8.env06-j",{"title":2901,"path":2902,"stem":2903,"children":2904},"Serialization (SER)","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frules\u002Fserialization-ser","6.sei-cert-oracle-coding-standard-for-java\u002F3.rules\u002F17.serialization-ser\u002F01.index",[2905,2906,2910,2914,2918,2922,2926,2930,2934,2938,2942,2946,2950,2954],{"title":2901,"path":2902,"stem":2903},{"title":2907,"path":2908,"stem":2909},"SER00-J. Enable serialization compatibility during class evolution","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frules\u002Fserialization-ser\u002Fser00-j","6.sei-cert-oracle-coding-standard-for-java\u002F3.rules\u002F17.serialization-ser\u002F02.ser00-j",{"title":2911,"path":2912,"stem":2913},"SER01-J. Do not deviate from the proper signatures of serialization methods","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frules\u002Fserialization-ser\u002Fser01-j","6.sei-cert-oracle-coding-standard-for-java\u002F3.rules\u002F17.serialization-ser\u002F03.ser01-j",{"title":2915,"path":2916,"stem":2917},"SER02-J. Sign then seal objects before sending them outside a trust boundary","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frules\u002Fserialization-ser\u002Fser02-j","6.sei-cert-oracle-coding-standard-for-java\u002F3.rules\u002F17.serialization-ser\u002F04.ser02-j",{"title":2919,"path":2920,"stem":2921},"SER03-J. Do not serialize unencrypted sensitive data","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frules\u002Fserialization-ser\u002Fser03-j","6.sei-cert-oracle-coding-standard-for-java\u002F3.rules\u002F17.serialization-ser\u002F05.ser03-j",{"title":2923,"path":2924,"stem":2925},"SER04-J. Do not allow serialization and deserialization to bypass the security manager","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frules\u002Fserialization-ser\u002Fser04-j","6.sei-cert-oracle-coding-standard-for-java\u002F3.rules\u002F17.serialization-ser\u002F06.ser04-j",{"title":2927,"path":2928,"stem":2929},"SER05-J. Do not serialize instances of inner classes","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frules\u002Fserialization-ser\u002Fser05-j","6.sei-cert-oracle-coding-standard-for-java\u002F3.rules\u002F17.serialization-ser\u002F07.ser05-j",{"title":2931,"path":2932,"stem":2933},"SER06-J. Make defensive copies of private mutable components during deserialization","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frules\u002Fserialization-ser\u002Fser06-j","6.sei-cert-oracle-coding-standard-for-java\u002F3.rules\u002F17.serialization-ser\u002F08.ser06-j",{"title":2935,"path":2936,"stem":2937},"SER07-J. Do not use the default serialized form for classes with implementation-defined invariants","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frules\u002Fserialization-ser\u002Fser07-j","6.sei-cert-oracle-coding-standard-for-java\u002F3.rules\u002F17.serialization-ser\u002F09.ser07-j",{"title":2939,"path":2940,"stem":2941},"SER08-J. Minimize privileges before deserializing from a privileged context","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frules\u002Fserialization-ser\u002Fser08-j","6.sei-cert-oracle-coding-standard-for-java\u002F3.rules\u002F17.serialization-ser\u002F10.ser08-j",{"title":2943,"path":2944,"stem":2945},"SER09-J. Do not invoke overridable methods from the readObject() method","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frules\u002Fserialization-ser\u002Fser09-j","6.sei-cert-oracle-coding-standard-for-java\u002F3.rules\u002F17.serialization-ser\u002F11.ser09-j",{"title":2947,"path":2948,"stem":2949},"SER10-J. Avoid memory and resource leaks during serialization","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frules\u002Fserialization-ser\u002Fser10-j","6.sei-cert-oracle-coding-standard-for-java\u002F3.rules\u002F17.serialization-ser\u002F12.ser10-j",{"title":2951,"path":2952,"stem":2953},"SER11-J. Prevent overwriting of externalizable objects","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frules\u002Fserialization-ser\u002Fser11-j","6.sei-cert-oracle-coding-standard-for-java\u002F3.rules\u002F17.serialization-ser\u002F13.ser11-j",{"title":2955,"path":2956,"stem":2957},"SER12-J. Prevent deserialization of untrusted data","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frules\u002Fserialization-ser\u002Fser12-j","6.sei-cert-oracle-coding-standard-for-java\u002F3.rules\u002F17.serialization-ser\u002F14.ser12-j",{"title":2959,"path":2960,"stem":2961,"children":2962},"Thread APIs (THI)","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frules\u002Fthread-apis-thi","6.sei-cert-oracle-coding-standard-for-java\u002F3.rules\u002F18.thread-apis-thi\u002F1.index",[2963,2964,2968,2972,2976,2980,2984],{"title":2959,"path":2960,"stem":2961},{"title":2965,"path":2966,"stem":2967},"THI00-J. Do not invoke Thread.run()","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frules\u002Fthread-apis-thi\u002Fthi00-j","6.sei-cert-oracle-coding-standard-for-java\u002F3.rules\u002F18.thread-apis-thi\u002F2.thi00-j",{"title":2969,"path":2970,"stem":2971},"THI01-J. Do not invoke ThreadGroup methods","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frules\u002Fthread-apis-thi\u002Fthi01-j","6.sei-cert-oracle-coding-standard-for-java\u002F3.rules\u002F18.thread-apis-thi\u002F3.thi01-j",{"title":2973,"path":2974,"stem":2975},"THI02-J. Notify all waiting threads rather than a single thread","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frules\u002Fthread-apis-thi\u002Fthi02-j","6.sei-cert-oracle-coding-standard-for-java\u002F3.rules\u002F18.thread-apis-thi\u002F4.thi02-j",{"title":2977,"path":2978,"stem":2979},"THI03-J. Always invoke wait() and await() methods inside a loop","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frules\u002Fthread-apis-thi\u002Fthi03-j","6.sei-cert-oracle-coding-standard-for-java\u002F3.rules\u002F18.thread-apis-thi\u002F5.thi03-j",{"title":2981,"path":2982,"stem":2983},"THI04-J. Ensure that threads performing blocking operations can be terminated","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frules\u002Fthread-apis-thi\u002Fthi04-j","6.sei-cert-oracle-coding-standard-for-java\u002F3.rules\u002F18.thread-apis-thi\u002F6.thi04-j",{"title":2985,"path":2986,"stem":2987},"THI05-J. Do not use Thread.stop() to terminate threads","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frules\u002Fthread-apis-thi\u002Fthi05-j","6.sei-cert-oracle-coding-standard-for-java\u002F3.rules\u002F18.thread-apis-thi\u002F7.thi05-j",{"title":2989,"path":2990,"stem":2991,"children":2992},"Thread Pools (TPS)","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frules\u002Fthread-pools-tps","6.sei-cert-oracle-coding-standard-for-java\u002F3.rules\u002F19.thread-pools-tps\u002F1.index",[2993,2994,2998,3002,3006,3010],{"title":2989,"path":2990,"stem":2991},{"title":2995,"path":2996,"stem":2997},"TPS00-J. Use thread pools to enable graceful degradation of service during traffic bursts","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frules\u002Fthread-pools-tps\u002Ftps00-j","6.sei-cert-oracle-coding-standard-for-java\u002F3.rules\u002F19.thread-pools-tps\u002F2.tps00-j",{"title":2999,"path":3000,"stem":3001},"TPS01-J. Do not execute interdependent tasks in a bounded thread pool","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frules\u002Fthread-pools-tps\u002Ftps01-j","6.sei-cert-oracle-coding-standard-for-java\u002F3.rules\u002F19.thread-pools-tps\u002F3.tps01-j",{"title":3003,"path":3004,"stem":3005},"TPS02-J. Ensure that tasks submitted to a thread pool are interruptible","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frules\u002Fthread-pools-tps\u002Ftps02-j","6.sei-cert-oracle-coding-standard-for-java\u002F3.rules\u002F19.thread-pools-tps\u002F4.tps02-j",{"title":3007,"path":3008,"stem":3009},"TPS03-J. Ensure that tasks executing in a thread pool do not fail silently","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frules\u002Fthread-pools-tps\u002Ftps03-j","6.sei-cert-oracle-coding-standard-for-java\u002F3.rules\u002F19.thread-pools-tps\u002F5.tps03-j",{"title":3011,"path":3012,"stem":3013},"TPS04-J. Ensure ThreadLocal variables are reinitialized when using thread pools","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frules\u002Fthread-pools-tps\u002Ftps04-j","6.sei-cert-oracle-coding-standard-for-java\u002F3.rules\u002F19.thread-pools-tps\u002F6.tps04-j",{"title":3015,"path":3016,"stem":3017,"children":3018},"Thread-Safety Miscellaneous (TSM)","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frules\u002Fthread-safety-miscellaneous-tsm","6.sei-cert-oracle-coding-standard-for-java\u002F3.rules\u002F20.thread-safety-miscellaneous-tsm\u002F1.index",[3019,3020,3024,3028,3032],{"title":3015,"path":3016,"stem":3017},{"title":3021,"path":3022,"stem":3023},"TSM00-J. Do not override thread-safe methods with methods that are not thread-safe","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frules\u002Fthread-safety-miscellaneous-tsm\u002Ftsm00-j","6.sei-cert-oracle-coding-standard-for-java\u002F3.rules\u002F20.thread-safety-miscellaneous-tsm\u002F2.tsm00-j",{"title":3025,"path":3026,"stem":3027},"TSM01-J. Do not let the this reference escape during object construction","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frules\u002Fthread-safety-miscellaneous-tsm\u002Ftsm01-j","6.sei-cert-oracle-coding-standard-for-java\u002F3.rules\u002F20.thread-safety-miscellaneous-tsm\u002F3.tsm01-j",{"title":3029,"path":3030,"stem":3031},"TSM02-J. Do not use background threads during class initialization","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frules\u002Fthread-safety-miscellaneous-tsm\u002Ftsm02-j","6.sei-cert-oracle-coding-standard-for-java\u002F3.rules\u002F20.thread-safety-miscellaneous-tsm\u002F4.tsm02-j",{"title":3033,"path":3034,"stem":3035},"TSM03-J. Do not publish partially initialized objects","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frules\u002Fthread-safety-miscellaneous-tsm\u002Ftsm03-j","6.sei-cert-oracle-coding-standard-for-java\u002F3.rules\u002F20.thread-safety-miscellaneous-tsm\u002F5.tsm03-j",{"title":3037,"path":3038,"stem":3039,"children":3040},"Visibility and Atomicity (VNA)","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frules\u002Fvisibility-and-atomicity-vna","6.sei-cert-oracle-coding-standard-for-java\u002F3.rules\u002F21.visibility-and-atomicity-vna\u002F1.index",[3041,3042,3046,3050,3054,3058,3062],{"title":3037,"path":3038,"stem":3039},{"title":3043,"path":3044,"stem":3045},"VNA00-J. Ensure visibility when accessing shared primitive variables","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frules\u002Fvisibility-and-atomicity-vna\u002Fvna00-j","6.sei-cert-oracle-coding-standard-for-java\u002F3.rules\u002F21.visibility-and-atomicity-vna\u002F2.vna00-j",{"title":3047,"path":3048,"stem":3049},"VNA01-J. Ensure visibility of shared references to immutable objects","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frules\u002Fvisibility-and-atomicity-vna\u002Fvna01-j","6.sei-cert-oracle-coding-standard-for-java\u002F3.rules\u002F21.visibility-and-atomicity-vna\u002F3.vna01-j",{"title":3051,"path":3052,"stem":3053},"VNA02-J. Ensure that compound operations on shared variables are atomic","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frules\u002Fvisibility-and-atomicity-vna\u002Fvna02-j","6.sei-cert-oracle-coding-standard-for-java\u002F3.rules\u002F21.visibility-and-atomicity-vna\u002F4.vna02-j",{"title":3055,"path":3056,"stem":3057},"VNA03-J. Do not assume that a group of calls to independently atomic methods is atomic","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frules\u002Fvisibility-and-atomicity-vna\u002Fvna03-j","6.sei-cert-oracle-coding-standard-for-java\u002F3.rules\u002F21.visibility-and-atomicity-vna\u002F5.vna03-j",{"title":3059,"path":3060,"stem":3061},"VNA04-J. Ensure that calls to chained methods are atomic","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frules\u002Fvisibility-and-atomicity-vna\u002Fvna04-j","6.sei-cert-oracle-coding-standard-for-java\u002F3.rules\u002F21.visibility-and-atomicity-vna\u002F6.vna04-j",{"title":3063,"path":3064,"stem":3065},"VNA05-J. Ensure atomicity when reading and writing 64-bit values","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frules\u002Fvisibility-and-atomicity-vna\u002Fvna05-j","6.sei-cert-oracle-coding-standard-for-java\u002F3.rules\u002F21.visibility-and-atomicity-vna\u002F7.vna05-j",{"title":3067,"path":3068,"stem":3069,"children":3070},"Recommendations","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frecommendations","6.sei-cert-oracle-coding-standard-for-java\u002F4.recommendations\u002F01.index",[3071,3072,3085,3103,3156,3181,3210,3231,3264,3297,3358,3383,3424],{"title":3067,"path":3068,"stem":3069},{"title":2250,"path":3073,"stem":3074,"children":3075},"\u002Fsei-cert-oracle-coding-standard-for-java\u002Frecommendations\u002Fcharacters-and-strings-str","6.sei-cert-oracle-coding-standard-for-java\u002F4.recommendations\u002F02.characters-and-strings-str\u002F1.index",[3076,3077,3081],{"title":2250,"path":3073,"stem":3074},{"title":3078,"path":3079,"stem":3080},"STR50-J. Use the appropriate method for counting characters in a string","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frecommendations\u002Fcharacters-and-strings-str\u002Fstr50-j","6.sei-cert-oracle-coding-standard-for-java\u002F4.recommendations\u002F02.characters-and-strings-str\u002F2.str50-j",{"title":3082,"path":3083,"stem":3084},"STR51-J. Use the charset encoder and decoder classes when more control over the encoding process is required","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frecommendations\u002Fcharacters-and-strings-str\u002Fstr51-j","6.sei-cert-oracle-coding-standard-for-java\u002F4.recommendations\u002F02.characters-and-strings-str\u002F3.str51-j",{"title":3086,"path":3087,"stem":3088,"children":3089},"Concurrency (CON)","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frecommendations\u002Fconcurrency-con","6.sei-cert-oracle-coding-standard-for-java\u002F4.recommendations\u002F03.concurrency-con\u002F1.index",[3090,3091,3095,3099],{"title":3086,"path":3087,"stem":3088},{"title":3092,"path":3093,"stem":3094},"CON50-J. Do not assume that declaring a reference volatile guarantees safe publication of the members of the referenced object","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frecommendations\u002Fconcurrency-con\u002Fcon50-j","6.sei-cert-oracle-coding-standard-for-java\u002F4.recommendations\u002F03.concurrency-con\u002F2.con50-j",{"title":3096,"path":3097,"stem":3098},"CON51-J. Do not assume that the sleep(), yield(), or getState() methods provide synchronization semantics","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frecommendations\u002Fconcurrency-con\u002Fcon51-j","6.sei-cert-oracle-coding-standard-for-java\u002F4.recommendations\u002F03.concurrency-con\u002F3.con51-j",{"title":3100,"path":3101,"stem":3102},"CON52-J. Document thread-safety and use annotations where applicable","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frecommendations\u002Fconcurrency-con\u002Fcon52-j","6.sei-cert-oracle-coding-standard-for-java\u002F4.recommendations\u002F03.concurrency-con\u002F4.con52-j",{"title":2276,"path":3104,"stem":3105,"children":3106},"\u002Fsei-cert-oracle-coding-standard-for-java\u002Frecommendations\u002Fdeclarations-and-initialization-dcl","6.sei-cert-oracle-coding-standard-for-java\u002F4.recommendations\u002F04.declarations-and-initialization-dcl\u002F01.index",[3107,3108,3112,3116,3120,3124,3128,3132,3136,3140,3144,3148,3152],{"title":2276,"path":3104,"stem":3105},{"title":3109,"path":3110,"stem":3111},"DCL50-J. Use visually distinct identifiers","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frecommendations\u002Fdeclarations-and-initialization-dcl\u002Fdcl50-j","6.sei-cert-oracle-coding-standard-for-java\u002F4.recommendations\u002F04.declarations-and-initialization-dcl\u002F02.dcl50-j",{"title":3113,"path":3114,"stem":3115},"DCL51-J. Do not shadow or obscure identifiers in subscopes","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frecommendations\u002Fdeclarations-and-initialization-dcl\u002Fdcl51-j","6.sei-cert-oracle-coding-standard-for-java\u002F4.recommendations\u002F04.declarations-and-initialization-dcl\u002F03.dcl51-j",{"title":3117,"path":3118,"stem":3119},"DCL52-J. Do not declare more than one variable per declaration","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frecommendations\u002Fdeclarations-and-initialization-dcl\u002Fdcl52-j","6.sei-cert-oracle-coding-standard-for-java\u002F4.recommendations\u002F04.declarations-and-initialization-dcl\u002F04.dcl52-j",{"title":3121,"path":3122,"stem":3123},"DCL53-J. Minimize the scope of variables","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frecommendations\u002Fdeclarations-and-initialization-dcl\u002Fdcl53-j","6.sei-cert-oracle-coding-standard-for-java\u002F4.recommendations\u002F04.declarations-and-initialization-dcl\u002F05.dcl53-j",{"title":3125,"path":3126,"stem":3127},"DCL54-J. Use meaningful symbolic constants to represent literal values in program logic","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frecommendations\u002Fdeclarations-and-initialization-dcl\u002Fdcl54-j","6.sei-cert-oracle-coding-standard-for-java\u002F4.recommendations\u002F04.declarations-and-initialization-dcl\u002F06.dcl54-j",{"title":3129,"path":3130,"stem":3131},"DCL55-J. Properly encode relationships in constant definitions","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frecommendations\u002Fdeclarations-and-initialization-dcl\u002Fdcl55-j","6.sei-cert-oracle-coding-standard-for-java\u002F4.recommendations\u002F04.declarations-and-initialization-dcl\u002F07.dcl55-j",{"title":3133,"path":3134,"stem":3135},"DCL56-J. Do not attach significance to the ordinal associated with an enum","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frecommendations\u002Fdeclarations-and-initialization-dcl\u002Fdcl56-j","6.sei-cert-oracle-coding-standard-for-java\u002F4.recommendations\u002F04.declarations-and-initialization-dcl\u002F08.dcl56-j",{"title":3137,"path":3138,"stem":3139},"DCL57-J. Avoid ambiguous overloading of variable arity methods","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frecommendations\u002Fdeclarations-and-initialization-dcl\u002Fdcl57-j","6.sei-cert-oracle-coding-standard-for-java\u002F4.recommendations\u002F04.declarations-and-initialization-dcl\u002F09.dcl57-j",{"title":3141,"path":3142,"stem":3143},"DCL58-J. Enable compile-time type checking of variable arity parameter types","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frecommendations\u002Fdeclarations-and-initialization-dcl\u002Fdcl58-j","6.sei-cert-oracle-coding-standard-for-java\u002F4.recommendations\u002F04.declarations-and-initialization-dcl\u002F10.dcl58-j",{"title":3145,"path":3146,"stem":3147},"DCL59-J. Do not apply public final to constants whose value might change in later releases","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frecommendations\u002Fdeclarations-and-initialization-dcl\u002Fdcl59-j","6.sei-cert-oracle-coding-standard-for-java\u002F4.recommendations\u002F04.declarations-and-initialization-dcl\u002F11.dcl59-j",{"title":3149,"path":3150,"stem":3151},"DCL60-J. Avoid cyclic dependencies between packages","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frecommendations\u002Fdeclarations-and-initialization-dcl\u002Fdcl60-j","6.sei-cert-oracle-coding-standard-for-java\u002F4.recommendations\u002F04.declarations-and-initialization-dcl\u002F12.dcl60-j",{"title":3153,"path":3154,"stem":3155},"DCL61-J. Do not use raw types","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frecommendations\u002Fdeclarations-and-initialization-dcl\u002Fdcl61-j","6.sei-cert-oracle-coding-standard-for-java\u002F4.recommendations\u002F04.declarations-and-initialization-dcl\u002F13.dcl61-j",{"title":2087,"path":3157,"stem":3158,"children":3159},"\u002Fsei-cert-oracle-coding-standard-for-java\u002Frecommendations\u002Fexceptional-behavior-err","6.sei-cert-oracle-coding-standard-for-java\u002F4.recommendations\u002F05.exceptional-behavior-err\u002F1.index",[3160,3161,3165,3169,3173,3177],{"title":2087,"path":3157,"stem":3158},{"title":3162,"path":3163,"stem":3164},"ERR50-J. Use exceptions only for exceptional conditions","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frecommendations\u002Fexceptional-behavior-err\u002Ferr50-j","6.sei-cert-oracle-coding-standard-for-java\u002F4.recommendations\u002F05.exceptional-behavior-err\u002F2.err50-j",{"title":3166,"path":3167,"stem":3168},"ERR51-J. Prefer user-defined exceptions over more general exception types","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frecommendations\u002Fexceptional-behavior-err\u002Ferr51-j","6.sei-cert-oracle-coding-standard-for-java\u002F4.recommendations\u002F05.exceptional-behavior-err\u002F3.err51-j",{"title":3170,"path":3171,"stem":3172},"ERR52-J. Avoid in-band error indicators","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frecommendations\u002Fexceptional-behavior-err\u002Ferr52-j","6.sei-cert-oracle-coding-standard-for-java\u002F4.recommendations\u002F05.exceptional-behavior-err\u002F4.err52-j",{"title":3174,"path":3175,"stem":3176},"ERR53-J. Try to gracefully recover from system errors","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frecommendations\u002Fexceptional-behavior-err\u002Ferr53-j","6.sei-cert-oracle-coding-standard-for-java\u002F4.recommendations\u002F05.exceptional-behavior-err\u002F5.err53-j",{"title":3178,"path":3179,"stem":3180},"ERR54-J. Use a try-with-resources statement to safely handle closeable resources","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frecommendations\u002Fexceptional-behavior-err\u002Ferr54-j","6.sei-cert-oracle-coding-standard-for-java\u002F4.recommendations\u002F05.exceptional-behavior-err\u002F6.err54-j",{"title":2331,"path":3182,"stem":3183,"children":3184},"\u002Fsei-cert-oracle-coding-standard-for-java\u002Frecommendations\u002Fexpressions-exp","6.sei-cert-oracle-coding-standard-for-java\u002F4.recommendations\u002F06.expressions-exp\u002F1.index",[3185,3186,3190,3194,3198,3202,3206],{"title":2331,"path":3182,"stem":3183},{"title":3187,"path":3188,"stem":3189},"EXP50-J. Do not confuse abstract object equality with reference equality","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frecommendations\u002Fexpressions-exp\u002Fexp50-j","6.sei-cert-oracle-coding-standard-for-java\u002F4.recommendations\u002F06.expressions-exp\u002F2.exp50-j",{"title":3191,"path":3192,"stem":3193},"EXP51-J. Do not perform assignments in conditional expressions","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frecommendations\u002Fexpressions-exp\u002Fexp51-j","6.sei-cert-oracle-coding-standard-for-java\u002F4.recommendations\u002F06.expressions-exp\u002F3.exp51-j",{"title":3195,"path":3196,"stem":3197},"EXP52-J. Use braces for the body of an if, for, or while statement","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frecommendations\u002Fexpressions-exp\u002Fexp52-j","6.sei-cert-oracle-coding-standard-for-java\u002F4.recommendations\u002F06.expressions-exp\u002F4.exp52-j",{"title":3199,"path":3200,"stem":3201},"EXP53-J. Use parentheses for precedence of operation","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frecommendations\u002Fexpressions-exp\u002Fexp53-j","6.sei-cert-oracle-coding-standard-for-java\u002F4.recommendations\u002F06.expressions-exp\u002F5.exp53-j",{"title":3203,"path":3204,"stem":3205},"EXP54-J. Understand the differences between bitwise and logical operators","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frecommendations\u002Fexpressions-exp\u002Fexp54-j","6.sei-cert-oracle-coding-standard-for-java\u002F4.recommendations\u002F06.expressions-exp\u002F6.exp54-j",{"title":3207,"path":3208,"stem":3209},"EXP55-J. Use the same type for the second and third operands in conditional expressions","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frecommendations\u002Fexpressions-exp\u002Fexp55-j","6.sei-cert-oracle-coding-standard-for-java\u002F4.recommendations\u002F06.expressions-exp\u002F7.exp55-j",{"title":2369,"path":3211,"stem":3212,"children":3213},"\u002Fsei-cert-oracle-coding-standard-for-java\u002Frecommendations\u002Finput-output-fio","6.sei-cert-oracle-coding-standard-for-java\u002F4.recommendations\u002F07.input-output-fio\u002F1.index",[3214,3215,3219,3223,3227],{"title":2369,"path":3211,"stem":3212},{"title":3216,"path":3217,"stem":3218},"FIO50-J. Do not make assumptions about file creation","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frecommendations\u002Finput-output-fio\u002Ffio50-j","6.sei-cert-oracle-coding-standard-for-java\u002F4.recommendations\u002F07.input-output-fio\u002F2.fio50-j",{"title":3220,"path":3221,"stem":3222},"FIO51-J. Identify files using multiple file attributes","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frecommendations\u002Finput-output-fio\u002Ffio51-j","6.sei-cert-oracle-coding-standard-for-java\u002F4.recommendations\u002F07.input-output-fio\u002F3.fio51-j",{"title":3224,"path":3225,"stem":3226},"FIO52-J. Do not store unencrypted sensitive information on the client side","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frecommendations\u002Finput-output-fio\u002Ffio52-j","6.sei-cert-oracle-coding-standard-for-java\u002F4.recommendations\u002F07.input-output-fio\u002F4.fio52-j",{"title":3228,"path":3229,"stem":3230},"FIO53-J. Use the serialization methods writeUnshared() and readUnshared() with care","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frecommendations\u002Finput-output-fio\u002Ffio53-j","6.sei-cert-oracle-coding-standard-for-java\u002F4.recommendations\u002F07.input-output-fio\u002F5.fio53-j",{"title":2441,"path":3232,"stem":3233,"children":3234},"\u002Fsei-cert-oracle-coding-standard-for-java\u002Frecommendations\u002Finput-validation-and-data-sanitization-ids","6.sei-cert-oracle-coding-standard-for-java\u002F4.recommendations\u002F08.input-validation-and-data-sanitization-ids\u002F1.index",[3235,3236,3240,3244,3248,3252,3256,3260],{"title":2441,"path":3232,"stem":3233},{"title":3237,"path":3238,"stem":3239},"IDS50-J. Use conservative file naming conventions","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frecommendations\u002Finput-validation-and-data-sanitization-ids\u002Fids50-j","6.sei-cert-oracle-coding-standard-for-java\u002F4.recommendations\u002F08.input-validation-and-data-sanitization-ids\u002F2.ids50-j",{"title":3241,"path":3242,"stem":3243},"IDS51-J. Properly encode or escape output","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frecommendations\u002Finput-validation-and-data-sanitization-ids\u002Fids51-j","6.sei-cert-oracle-coding-standard-for-java\u002F4.recommendations\u002F08.input-validation-and-data-sanitization-ids\u002F3.ids51-j",{"title":3245,"path":3246,"stem":3247},"IDS52-J. Prevent code injection","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frecommendations\u002Finput-validation-and-data-sanitization-ids\u002Fids52-j","6.sei-cert-oracle-coding-standard-for-java\u002F4.recommendations\u002F08.input-validation-and-data-sanitization-ids\u002F4.ids52-j",{"title":3249,"path":3250,"stem":3251},"IDS53-J. Prevent XPath Injection","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frecommendations\u002Finput-validation-and-data-sanitization-ids\u002Fids53-j","6.sei-cert-oracle-coding-standard-for-java\u002F4.recommendations\u002F08.input-validation-and-data-sanitization-ids\u002F5.ids53-j",{"title":3253,"path":3254,"stem":3255},"IDS54-J. Prevent LDAP injection","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frecommendations\u002Finput-validation-and-data-sanitization-ids\u002Fids54-j","6.sei-cert-oracle-coding-standard-for-java\u002F4.recommendations\u002F08.input-validation-and-data-sanitization-ids\u002F6.ids54-j",{"title":3257,"path":3258,"stem":3259},"IDS55-J. Understand how escape characters are interpreted when strings are loaded","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frecommendations\u002Finput-validation-and-data-sanitization-ids\u002Fids55-j","6.sei-cert-oracle-coding-standard-for-java\u002F4.recommendations\u002F08.input-validation-and-data-sanitization-ids\u002F7.ids55-j",{"title":3261,"path":3262,"stem":3263},"IDS56-J. Prevent arbitrary file upload","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frecommendations\u002Finput-validation-and-data-sanitization-ids\u002Fids56-j","6.sei-cert-oracle-coding-standard-for-java\u002F4.recommendations\u002F08.input-validation-and-data-sanitization-ids\u002F8.ids56-j",{"title":2575,"path":3265,"stem":3266,"children":3267},"\u002Fsei-cert-oracle-coding-standard-for-java\u002Frecommendations\u002Fmethods-met","6.sei-cert-oracle-coding-standard-for-java\u002F4.recommendations\u002F09.methods-met\u002F1.index",[3268,3269,3273,3277,3281,3285,3289,3293],{"title":2575,"path":3265,"stem":3266},{"title":3270,"path":3271,"stem":3272},"MET50-J. Avoid ambiguous or confusing uses of overloading","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frecommendations\u002Fmethods-met\u002Fmet50-j","6.sei-cert-oracle-coding-standard-for-java\u002F4.recommendations\u002F09.methods-met\u002F2.met50-j",{"title":3274,"path":3275,"stem":3276},"MET51-J. Do not use overloaded methods to differentiate between runtime types","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frecommendations\u002Fmethods-met\u002Fmet51-j","6.sei-cert-oracle-coding-standard-for-java\u002F4.recommendations\u002F09.methods-met\u002F3.met51-j",{"title":3278,"path":3279,"stem":3280},"MET52-J. Do not use the clone() method to copy untrusted method parameters","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frecommendations\u002Fmethods-met\u002Fmet52-j","6.sei-cert-oracle-coding-standard-for-java\u002F4.recommendations\u002F09.methods-met\u002F4.met52-j",{"title":3282,"path":3283,"stem":3284},"MET53-J. Ensure that the clone() method calls super.clone()","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frecommendations\u002Fmethods-met\u002Fmet53-j","6.sei-cert-oracle-coding-standard-for-java\u002F4.recommendations\u002F09.methods-met\u002F5.met53-j",{"title":3286,"path":3287,"stem":3288},"MET54-J. Always provide feedback about the resulting value of a method","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frecommendations\u002Fmethods-met\u002Fmet54-j","6.sei-cert-oracle-coding-standard-for-java\u002F4.recommendations\u002F09.methods-met\u002F6.met54-j",{"title":3290,"path":3291,"stem":3292},"MET55-J. Return an empty array or collection instead of a null value for methods that return an array or collection","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frecommendations\u002Fmethods-met\u002Fmet55-j","6.sei-cert-oracle-coding-standard-for-java\u002F4.recommendations\u002F09.methods-met\u002F7.met55-j",{"title":3294,"path":3295,"stem":3296},"MET56-J. Do not use Object.equals() to compare cryptographic keys","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frecommendations\u002Fmethods-met\u002Fmet56-j","6.sei-cert-oracle-coding-standard-for-java\u002F4.recommendations\u002F09.methods-met\u002F8.met56-j",{"title":2637,"path":3298,"stem":3299,"children":3300},"\u002Fsei-cert-oracle-coding-standard-for-java\u002Frecommendations\u002Fmiscellaneous-msc","6.sei-cert-oracle-coding-standard-for-java\u002F4.recommendations\u002F10.miscellaneous-msc\u002F01.index",[3301,3302,3306,3310,3314,3318,3322,3326,3330,3334,3338,3342,3346,3350,3354],{"title":2637,"path":3298,"stem":3299},{"title":3303,"path":3304,"stem":3305},"MSC50-J. Minimize the scope of the @SuppressWarnings annotation","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frecommendations\u002Fmiscellaneous-msc\u002Fmsc50-j","6.sei-cert-oracle-coding-standard-for-java\u002F4.recommendations\u002F10.miscellaneous-msc\u002F02.msc50-j",{"title":3307,"path":3308,"stem":3309},"MSC51-J. Do not place a semicolon immediately following an if, for, or while condition","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frecommendations\u002Fmiscellaneous-msc\u002Fmsc51-j","6.sei-cert-oracle-coding-standard-for-java\u002F4.recommendations\u002F10.miscellaneous-msc\u002F03.msc51-j",{"title":3311,"path":3312,"stem":3313},"MSC52-J. Finish every set of statements associated with a case label with a break statement","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frecommendations\u002Fmiscellaneous-msc\u002Fmsc52-j","6.sei-cert-oracle-coding-standard-for-java\u002F4.recommendations\u002F10.miscellaneous-msc\u002F04.msc52-j",{"title":3315,"path":3316,"stem":3317},"MSC53-J. Carefully design interfaces before releasing them","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frecommendations\u002Fmiscellaneous-msc\u002Fmsc53-j","6.sei-cert-oracle-coding-standard-for-java\u002F4.recommendations\u002F10.miscellaneous-msc\u002F05.msc53-j",{"title":3319,"path":3320,"stem":3321},"MSC54-J. Avoid inadvertent wrapping of loop counters","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frecommendations\u002Fmiscellaneous-msc\u002Fmsc54-j","6.sei-cert-oracle-coding-standard-for-java\u002F4.recommendations\u002F10.miscellaneous-msc\u002F06.msc54-j",{"title":3323,"path":3324,"stem":3325},"MSC55-J. Use comments consistently and in a readable fashion","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frecommendations\u002Fmiscellaneous-msc\u002Fmsc55-j","6.sei-cert-oracle-coding-standard-for-java\u002F4.recommendations\u002F10.miscellaneous-msc\u002F07.msc55-j",{"title":3327,"path":3328,"stem":3329},"MSC56-J. Detect and remove superfluous code and values","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frecommendations\u002Fmiscellaneous-msc\u002Fmsc56-j","6.sei-cert-oracle-coding-standard-for-java\u002F4.recommendations\u002F10.miscellaneous-msc\u002F08.msc56-j",{"title":3331,"path":3332,"stem":3333},"MSC57-J. Strive for logical completeness","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frecommendations\u002Fmiscellaneous-msc\u002Fmsc57-j","6.sei-cert-oracle-coding-standard-for-java\u002F4.recommendations\u002F10.miscellaneous-msc\u002F09.msc57-j",{"title":3335,"path":3336,"stem":3337},"MSC58-J. Prefer using iterators over enumerations","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frecommendations\u002Fmiscellaneous-msc\u002Fmsc58-j","6.sei-cert-oracle-coding-standard-for-java\u002F4.recommendations\u002F10.miscellaneous-msc\u002F10.msc58-j",{"title":3339,"path":3340,"stem":3341},"MSC59-J. Limit the lifetime of sensitive data","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frecommendations\u002Fmiscellaneous-msc\u002Fmsc59-j","6.sei-cert-oracle-coding-standard-for-java\u002F4.recommendations\u002F10.miscellaneous-msc\u002F11.msc59-j",{"title":3343,"path":3344,"stem":3345},"MSC60-J. Do not use assertions to verify the absence of runtime errors","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frecommendations\u002Fmiscellaneous-msc\u002Fmsc60-j","6.sei-cert-oracle-coding-standard-for-java\u002F4.recommendations\u002F10.miscellaneous-msc\u002F12.msc60-j",{"title":3347,"path":3348,"stem":3349},"MSC61-J. Do not use insecure or weak cryptographic algorithms","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frecommendations\u002Fmiscellaneous-msc\u002Fmsc61-j","6.sei-cert-oracle-coding-standard-for-java\u002F4.recommendations\u002F10.miscellaneous-msc\u002F13.msc61-j",{"title":3351,"path":3352,"stem":3353},"MSC62-J. Store passwords using a hash function","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frecommendations\u002Fmiscellaneous-msc\u002Fmsc62-j","6.sei-cert-oracle-coding-standard-for-java\u002F4.recommendations\u002F10.miscellaneous-msc\u002F14.msc62-j",{"title":3355,"path":3356,"stem":3357},"MSC63-J. Ensure that SecureRandom is properly seeded","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frecommendations\u002Fmiscellaneous-msc\u002Fmsc63-j","6.sei-cert-oracle-coding-standard-for-java\u002F4.recommendations\u002F10.miscellaneous-msc\u002F15.msc63-j",{"title":2691,"path":3359,"stem":3360,"children":3361},"\u002Fsei-cert-oracle-coding-standard-for-java\u002Frecommendations\u002Fnumeric-types-and-operations-num","6.sei-cert-oracle-coding-standard-for-java\u002F4.recommendations\u002F11.numeric-types-and-operations-num\u002F1.index",[3362,3363,3367,3371,3375,3379],{"title":2691,"path":3359,"stem":3360},{"title":3364,"path":3365,"stem":3366},"NUM50-J. Convert integers to floating point for floating-point operations","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frecommendations\u002Fnumeric-types-and-operations-num\u002Fnum50-j","6.sei-cert-oracle-coding-standard-for-java\u002F4.recommendations\u002F11.numeric-types-and-operations-num\u002F2.num50-j",{"title":3368,"path":3369,"stem":3370},"NUM51-J. Do not assume that the remainder operator always returns a nonnegative result for integral operands","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frecommendations\u002Fnumeric-types-and-operations-num\u002Fnum51-j","6.sei-cert-oracle-coding-standard-for-java\u002F4.recommendations\u002F11.numeric-types-and-operations-num\u002F3.num51-j",{"title":3372,"path":3373,"stem":3374},"NUM52-J. Be aware of numeric promotion behavior","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frecommendations\u002Fnumeric-types-and-operations-num\u002Fnum52-j","6.sei-cert-oracle-coding-standard-for-java\u002F4.recommendations\u002F11.numeric-types-and-operations-num\u002F4.num52-j",{"title":3376,"path":3377,"stem":3378},"NUM53-J. Use the strictfp modifier for floating-point calculation consistency across platforms","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frecommendations\u002Fnumeric-types-and-operations-num\u002Fnum53-j","6.sei-cert-oracle-coding-standard-for-java\u002F4.recommendations\u002F11.numeric-types-and-operations-num\u002F5.num53-j",{"title":3380,"path":3381,"stem":3382},"NUM54-J. Do not use denormalized numbers","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frecommendations\u002Fnumeric-types-and-operations-num\u002Fnum54-j","6.sei-cert-oracle-coding-standard-for-java\u002F4.recommendations\u002F11.numeric-types-and-operations-num\u002F6.num54-j",{"title":2749,"path":3384,"stem":3385,"children":3386},"\u002Fsei-cert-oracle-coding-standard-for-java\u002Frecommendations\u002Fobject-orientation-obj","6.sei-cert-oracle-coding-standard-for-java\u002F4.recommendations\u002F12.object-orientation-obj\u002F01.index",[3387,3388,3392,3396,3400,3404,3408,3412,3416,3420],{"title":2749,"path":3384,"stem":3385},{"title":3389,"path":3390,"stem":3391},"OBJ50-J. Never confuse the immutability of a reference with that of the referenced object","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frecommendations\u002Fobject-orientation-obj\u002Fobj50-j","6.sei-cert-oracle-coding-standard-for-java\u002F4.recommendations\u002F12.object-orientation-obj\u002F02.obj50-j",{"title":3393,"path":3394,"stem":3395},"OBJ51-J. Minimize the accessibility of classes and their members","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frecommendations\u002Fobject-orientation-obj\u002Fobj51-j","6.sei-cert-oracle-coding-standard-for-java\u002F4.recommendations\u002F12.object-orientation-obj\u002F03.obj51-j",{"title":3397,"path":3398,"stem":3399},"OBJ52-J. Write garbage-collection-friendly code","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frecommendations\u002Fobject-orientation-obj\u002Fobj52-j","6.sei-cert-oracle-coding-standard-for-java\u002F4.recommendations\u002F12.object-orientation-obj\u002F04.obj52-j",{"title":3401,"path":3402,"stem":3403},"OBJ53-J. Do not use direct buffers for short-lived, infrequently used objects","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frecommendations\u002Fobject-orientation-obj\u002Fobj53-j","6.sei-cert-oracle-coding-standard-for-java\u002F4.recommendations\u002F12.object-orientation-obj\u002F05.obj53-j",{"title":3405,"path":3406,"stem":3407},"OBJ54-J. Do not attempt to help the garbage collector by setting local reference variables to null","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frecommendations\u002Fobject-orientation-obj\u002Fobj54-j","6.sei-cert-oracle-coding-standard-for-java\u002F4.recommendations\u002F12.object-orientation-obj\u002F06.obj54-j",{"title":3409,"path":3410,"stem":3411},"OBJ55-J. Remove short-lived objects from long-lived container objects","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frecommendations\u002Fobject-orientation-obj\u002Fobj55-j","6.sei-cert-oracle-coding-standard-for-java\u002F4.recommendations\u002F12.object-orientation-obj\u002F07.obj55-j",{"title":3413,"path":3414,"stem":3415},"OBJ56-J. Provide sensitive mutable classes with unmodifiable wrappers","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frecommendations\u002Fobject-orientation-obj\u002Fobj56-j","6.sei-cert-oracle-coding-standard-for-java\u002F4.recommendations\u002F12.object-orientation-obj\u002F08.obj56-j",{"title":3417,"path":3418,"stem":3419},"OBJ57-J. Do not rely on methods that can be overridden by untrusted code","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frecommendations\u002Fobject-orientation-obj\u002Fobj57-j","6.sei-cert-oracle-coding-standard-for-java\u002F4.recommendations\u002F12.object-orientation-obj\u002F09.obj57-j",{"title":3421,"path":3422,"stem":3423},"OBJ58-J. Limit the extensibility of classes and methods with invariants","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frecommendations\u002Fobject-orientation-obj\u002Fobj58-j","6.sei-cert-oracle-coding-standard-for-java\u002F4.recommendations\u002F12.object-orientation-obj\u002F10.obj58-j",{"title":2811,"path":3425,"stem":3426,"children":3427},"\u002Fsei-cert-oracle-coding-standard-for-java\u002Frecommendations\u002Fplatform-security-sec","6.sei-cert-oracle-coding-standard-for-java\u002F4.recommendations\u002F13.platform-security-sec\u002F01.index",[3428,3429,3433,3437,3441,3445,3449,3453,3457,3461],{"title":2811,"path":3425,"stem":3426},{"title":3430,"path":3431,"stem":3432},"SEC50-J. Avoid granting excess privileges","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frecommendations\u002Fplatform-security-sec\u002Fsec50-j","6.sei-cert-oracle-coding-standard-for-java\u002F4.recommendations\u002F13.platform-security-sec\u002F02.sec50-j",{"title":3434,"path":3435,"stem":3436},"SEC51-J. Minimize privileged code","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frecommendations\u002Fplatform-security-sec\u002Fsec51-j","6.sei-cert-oracle-coding-standard-for-java\u002F4.recommendations\u002F13.platform-security-sec\u002F03.sec51-j",{"title":3438,"path":3439,"stem":3440},"SEC52-J. Do not expose methods that use reduced-security checks to untrusted code","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frecommendations\u002Fplatform-security-sec\u002Fsec52-j","6.sei-cert-oracle-coding-standard-for-java\u002F4.recommendations\u002F13.platform-security-sec\u002F04.sec52-j",{"title":3442,"path":3443,"stem":3444},"SEC53-J. Define custom security permissions for fine-grained security","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frecommendations\u002Fplatform-security-sec\u002Fsec53-j","6.sei-cert-oracle-coding-standard-for-java\u002F4.recommendations\u002F13.platform-security-sec\u002F05.sec53-j",{"title":3446,"path":3447,"stem":3448},"SEC54-J. Create a secure sandbox using a security manager","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frecommendations\u002Fplatform-security-sec\u002Fsec54-j","6.sei-cert-oracle-coding-standard-for-java\u002F4.recommendations\u002F13.platform-security-sec\u002F06.sec54-j",{"title":3450,"path":3451,"stem":3452},"SEC55-J. Ensure that security-sensitive methods are called with validated arguments","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frecommendations\u002Fplatform-security-sec\u002Fsec55-j","6.sei-cert-oracle-coding-standard-for-java\u002F4.recommendations\u002F13.platform-security-sec\u002F07.sec55-j",{"title":3454,"path":3455,"stem":3456},"SEC56-J. Do not serialize direct handles to system resources","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frecommendations\u002Fplatform-security-sec\u002Fsec56-j","6.sei-cert-oracle-coding-standard-for-java\u002F4.recommendations\u002F13.platform-security-sec\u002F08.sec56-j",{"title":3458,"path":3459,"stem":3460},"SEC57-J. Do not let untrusted code misuse privileges of callback methods","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frecommendations\u002Fplatform-security-sec\u002Fsec57-j","6.sei-cert-oracle-coding-standard-for-java\u002F4.recommendations\u002F13.platform-security-sec\u002F09.sec57-j",{"title":3462,"path":3463,"stem":3464},"SEC58-J. Deserialization methods should not perform potentially dangerous operations","\u002Fsei-cert-oracle-coding-standard-for-java\u002Frecommendations\u002Fplatform-security-sec\u002Fsec58-j","6.sei-cert-oracle-coding-standard-for-java\u002F4.recommendations\u002F13.platform-security-sec\u002F10.sec58-j",{"title":3466,"path":3467,"stem":3468,"children":3469},"Back Matter","\u002Fsei-cert-oracle-coding-standard-for-java\u002Fback-matter","6.sei-cert-oracle-coding-standard-for-java\u002F5.back-matter\u002F1.index",[3470,3471,3475,3479,3483,3486,3603,3628],{"title":3466,"path":3467,"stem":3468},{"title":3472,"path":3473,"stem":3474},"Rec. AA. References","\u002Fsei-cert-oracle-coding-standard-for-java\u002Fback-matter\u002Frec-aa-references","6.sei-cert-oracle-coding-standard-for-java\u002F5.back-matter\u002F2.rec-aa-references",{"title":3476,"path":3477,"stem":3478},"Rec. BB. Definitions","\u002Fsei-cert-oracle-coding-standard-for-java\u002Fback-matter\u002Frec-bb-definitions","6.sei-cert-oracle-coding-standard-for-java\u002F5.back-matter\u002F3.rec-bb-definitions",{"title":3480,"path":3481,"stem":3482},"Rule AA. References","\u002Fsei-cert-oracle-coding-standard-for-java\u002Fback-matter\u002Frule-aa-references","6.sei-cert-oracle-coding-standard-for-java\u002F5.back-matter\u002F4.rule-aa-references",{"title":3484,"path":1497,"stem":3485},"Rule BB. Glossary","6.sei-cert-oracle-coding-standard-for-java\u002F5.back-matter\u002F5.rule-bb-glossary",{"title":3487,"path":3488,"stem":3489,"children":3490},"Rule or Rec. CC. Analyzers","\u002Fsei-cert-oracle-coding-standard-for-java\u002Fback-matter\u002Frule-or-rec-cc-analyzers","6.sei-cert-oracle-coding-standard-for-java\u002F5.back-matter\u002F6.rule-or-rec-cc-analyzers\u002F01.index",[3491,3492,3494,3498,3500,3504,3508,3512,3516,3520,3524,3528,3532,3536,3540,3544,3547,3551,3555,3559,3561,3565,3569,3573,3575,3579,3583,3587,3591,3595,3599],{"title":3487,"path":3488,"stem":3489},{"title":1772,"path":1771,"stem":3493},"6.sei-cert-oracle-coding-standard-for-java\u002F5.back-matter\u002F6.rule-or-rec-cc-analyzers\u002F02.codesonar",{"title":3495,"path":3496,"stem":3497},"CodeSonar_V","\u002Fsei-cert-oracle-coding-standard-for-java\u002Fback-matter\u002Frule-or-rec-cc-analyzers\u002Fcodesonar_v","6.sei-cert-oracle-coding-standard-for-java\u002F5.back-matter\u002F6.rule-or-rec-cc-analyzers\u002F03.codesonar_v",{"title":1804,"path":1803,"stem":3499},"6.sei-cert-oracle-coding-standard-for-java\u002F5.back-matter\u002F6.rule-or-rec-cc-analyzers\u002F04.coverity",{"title":3501,"path":3502,"stem":3503},"Coverity_V","\u002Fsei-cert-oracle-coding-standard-for-java\u002Fback-matter\u002Frule-or-rec-cc-analyzers\u002Fcoverity_v","6.sei-cert-oracle-coding-standard-for-java\u002F5.back-matter\u002F6.rule-or-rec-cc-analyzers\u002F05.coverity_v",{"title":3505,"path":3506,"stem":3507},"Eclipse","\u002Fsei-cert-oracle-coding-standard-for-java\u002Fback-matter\u002Frule-or-rec-cc-analyzers\u002Feclipse","6.sei-cert-oracle-coding-standard-for-java\u002F5.back-matter\u002F6.rule-or-rec-cc-analyzers\u002F06.eclipse",{"title":3509,"path":3510,"stem":3511},"Eclipse_V","\u002Fsei-cert-oracle-coding-standard-for-java\u002Fback-matter\u002Frule-or-rec-cc-analyzers\u002Feclipse_v","6.sei-cert-oracle-coding-standard-for-java\u002F5.back-matter\u002F6.rule-or-rec-cc-analyzers\u002F07.eclipse_v",{"title":3513,"path":3514,"stem":3515},"Error Prone","\u002Fsei-cert-oracle-coding-standard-for-java\u002Fback-matter\u002Frule-or-rec-cc-analyzers\u002Ferror-prone","6.sei-cert-oracle-coding-standard-for-java\u002F5.back-matter\u002F6.rule-or-rec-cc-analyzers\u002F08.error-prone",{"title":3517,"path":3518,"stem":3519},"Error Prone_V","\u002Fsei-cert-oracle-coding-standard-for-java\u002Fback-matter\u002Frule-or-rec-cc-analyzers\u002Ferror-prone_v","6.sei-cert-oracle-coding-standard-for-java\u002F5.back-matter\u002F6.rule-or-rec-cc-analyzers\u002F09.error-prone_v",{"title":3521,"path":3522,"stem":3523},"Findbugs","\u002Fsei-cert-oracle-coding-standard-for-java\u002Fback-matter\u002Frule-or-rec-cc-analyzers\u002Ffindbugs","6.sei-cert-oracle-coding-standard-for-java\u002F5.back-matter\u002F6.rule-or-rec-cc-analyzers\u002F10.findbugs",{"title":3525,"path":3526,"stem":3527},"Findbugs_V","\u002Fsei-cert-oracle-coding-standard-for-java\u002Fback-matter\u002Frule-or-rec-cc-analyzers\u002Ffindbugs_v","6.sei-cert-oracle-coding-standard-for-java\u002F5.back-matter\u002F6.rule-or-rec-cc-analyzers\u002F11.findbugs_v",{"title":3529,"path":3530,"stem":3531},"Fortify","\u002Fsei-cert-oracle-coding-standard-for-java\u002Fback-matter\u002Frule-or-rec-cc-analyzers\u002Ffortify","6.sei-cert-oracle-coding-standard-for-java\u002F5.back-matter\u002F6.rule-or-rec-cc-analyzers\u002F12.fortify",{"title":3533,"path":3534,"stem":3535},"Fortify_V","\u002Fsei-cert-oracle-coding-standard-for-java\u002Fback-matter\u002Frule-or-rec-cc-analyzers\u002Ffortify_v","6.sei-cert-oracle-coding-standard-for-java\u002F5.back-matter\u002F6.rule-or-rec-cc-analyzers\u002F13.fortify_v",{"title":3537,"path":3538,"stem":3539},"Klocwork","\u002Fsei-cert-oracle-coding-standard-for-java\u002Fback-matter\u002Frule-or-rec-cc-analyzers\u002Fklocwork","6.sei-cert-oracle-coding-standard-for-java\u002F5.back-matter\u002F6.rule-or-rec-cc-analyzers\u002F14.klocwork",{"title":3541,"path":3542,"stem":3543},"Klocwork_V","\u002Fsei-cert-oracle-coding-standard-for-java\u002Fback-matter\u002Frule-or-rec-cc-analyzers\u002Fklocwork_v","6.sei-cert-oracle-coding-standard-for-java\u002F5.back-matter\u002F6.rule-or-rec-cc-analyzers\u002F15.klocwork_v",{"title":3545,"path":1823,"stem":3546},"Parasoft","6.sei-cert-oracle-coding-standard-for-java\u002F5.back-matter\u002F6.rule-or-rec-cc-analyzers\u002F16.parasoft",{"title":3548,"path":3549,"stem":3550},"Parasoft_V","\u002Fsei-cert-oracle-coding-standard-for-java\u002Fback-matter\u002Frule-or-rec-cc-analyzers\u002Fparasoft_v","6.sei-cert-oracle-coding-standard-for-java\u002F5.back-matter\u002F6.rule-or-rec-cc-analyzers\u002F17.parasoft_v",{"title":3552,"path":3553,"stem":3554},"Pmd","\u002Fsei-cert-oracle-coding-standard-for-java\u002Fback-matter\u002Frule-or-rec-cc-analyzers\u002Fpmd","6.sei-cert-oracle-coding-standard-for-java\u002F5.back-matter\u002F6.rule-or-rec-cc-analyzers\u002F18.pmd",{"title":3556,"path":3557,"stem":3558},"Pmd_V","\u002Fsei-cert-oracle-coding-standard-for-java\u002Fback-matter\u002Frule-or-rec-cc-analyzers\u002Fpmd_v","6.sei-cert-oracle-coding-standard-for-java\u002F5.back-matter\u002F6.rule-or-rec-cc-analyzers\u002F19.pmd_v",{"title":1858,"path":1857,"stem":3560},"6.sei-cert-oracle-coding-standard-for-java\u002F5.back-matter\u002F6.rule-or-rec-cc-analyzers\u002F20.pvs-studio",{"title":3562,"path":3563,"stem":3564},"PVS-Studio_V","\u002Fsei-cert-oracle-coding-standard-for-java\u002Fback-matter\u002Frule-or-rec-cc-analyzers\u002Fpvs-studio_v","6.sei-cert-oracle-coding-standard-for-java\u002F5.back-matter\u002F6.rule-or-rec-cc-analyzers\u002F21.pvs-studio_v",{"title":3566,"path":3567,"stem":3568},"Security Reviewer - Static Reviewer","\u002Fsei-cert-oracle-coding-standard-for-java\u002Fback-matter\u002Frule-or-rec-cc-analyzers\u002Fsecurity-reviewer-static-reviewer","6.sei-cert-oracle-coding-standard-for-java\u002F5.back-matter\u002F6.rule-or-rec-cc-analyzers\u002F22.security-reviewer-static-reviewer",{"title":3570,"path":3571,"stem":3572},"Security Reviewer - Static Reviewer_V","\u002Fsei-cert-oracle-coding-standard-for-java\u002Fback-matter\u002Frule-or-rec-cc-analyzers\u002Fsecurity-reviewer-static-reviewer_v","6.sei-cert-oracle-coding-standard-for-java\u002F5.back-matter\u002F6.rule-or-rec-cc-analyzers\u002F23.security-reviewer-static-reviewer_v",{"title":1887,"path":1886,"stem":3574},"6.sei-cert-oracle-coding-standard-for-java\u002F5.back-matter\u002F6.rule-or-rec-cc-analyzers\u002F24.sonarqube",{"title":3576,"path":3577,"stem":3578},"SonarQube_V","\u002Fsei-cert-oracle-coding-standard-for-java\u002Fback-matter\u002Frule-or-rec-cc-analyzers\u002Fsonarqube_v","6.sei-cert-oracle-coding-standard-for-java\u002F5.back-matter\u002F6.rule-or-rec-cc-analyzers\u002F25.sonarqube_v",{"title":3580,"path":3581,"stem":3582},"SpotBugs","\u002Fsei-cert-oracle-coding-standard-for-java\u002Fback-matter\u002Frule-or-rec-cc-analyzers\u002Fspotbugs","6.sei-cert-oracle-coding-standard-for-java\u002F5.back-matter\u002F6.rule-or-rec-cc-analyzers\u002F26.spotbugs",{"title":3584,"path":3585,"stem":3586},"SpotBugs_V","\u002Fsei-cert-oracle-coding-standard-for-java\u002Fback-matter\u002Frule-or-rec-cc-analyzers\u002Fspotbugs_v","6.sei-cert-oracle-coding-standard-for-java\u002F5.back-matter\u002F6.rule-or-rec-cc-analyzers\u002F27.spotbugs_v",{"title":3588,"path":3589,"stem":3590},"The Checker Framework","\u002Fsei-cert-oracle-coding-standard-for-java\u002Fback-matter\u002Frule-or-rec-cc-analyzers\u002Fthe-checker-framework","6.sei-cert-oracle-coding-standard-for-java\u002F5.back-matter\u002F6.rule-or-rec-cc-analyzers\u002F28.the-checker-framework",{"title":3592,"path":3593,"stem":3594},"The Checker Framework_V","\u002Fsei-cert-oracle-coding-standard-for-java\u002Fback-matter\u002Frule-or-rec-cc-analyzers\u002Fthe-checker-framework_v","6.sei-cert-oracle-coding-standard-for-java\u002F5.back-matter\u002F6.rule-or-rec-cc-analyzers\u002F29.the-checker-framework_v",{"title":3596,"path":3597,"stem":3598},"ThreadSafe","\u002Fsei-cert-oracle-coding-standard-for-java\u002Fback-matter\u002Frule-or-rec-cc-analyzers\u002Fthreadsafe","6.sei-cert-oracle-coding-standard-for-java\u002F5.back-matter\u002F6.rule-or-rec-cc-analyzers\u002F30.threadsafe",{"title":3600,"path":3601,"stem":3602},"ThreadSafe_V","\u002Fsei-cert-oracle-coding-standard-for-java\u002Fback-matter\u002Frule-or-rec-cc-analyzers\u002Fthreadsafe_v","6.sei-cert-oracle-coding-standard-for-java\u002F5.back-matter\u002F6.rule-or-rec-cc-analyzers\u002F31.threadsafe_v",{"title":3604,"path":3605,"stem":3606,"children":3607},"Rule or Rec. DD. Related Guidelines","\u002Fsei-cert-oracle-coding-standard-for-java\u002Fback-matter\u002Frule-or-rec-dd-related-guidelines","6.sei-cert-oracle-coding-standard-for-java\u002F5.back-matter\u002F7.rule-or-rec-dd-related-guidelines\u002F1.index",[3608,3609,3613,3617,3621,3624],{"title":3604,"path":3605,"stem":3606},{"title":3610,"path":3611,"stem":3612},"2010","\u002Fsei-cert-oracle-coding-standard-for-java\u002Fback-matter\u002Frule-or-rec-dd-related-guidelines\u002F2.2010","6.sei-cert-oracle-coding-standard-for-java\u002F5.back-matter\u002F7.rule-or-rec-dd-related-guidelines\u002F2.2010",{"title":3614,"path":3615,"stem":3616},"2013","\u002Fsei-cert-oracle-coding-standard-for-java\u002Fback-matter\u002Frule-or-rec-dd-related-guidelines\u002F3.2013","6.sei-cert-oracle-coding-standard-for-java\u002F5.back-matter\u002F7.rule-or-rec-dd-related-guidelines\u002F3.2013",{"title":3618,"path":3619,"stem":3620},"MITRE CAPEC","\u002Fsei-cert-oracle-coding-standard-for-java\u002Fback-matter\u002Frule-or-rec-dd-related-guidelines\u002Fmitre-capec","6.sei-cert-oracle-coding-standard-for-java\u002F5.back-matter\u002F7.rule-or-rec-dd-related-guidelines\u002F4.mitre-capec",{"title":1950,"path":3622,"stem":3623},"\u002Fsei-cert-oracle-coding-standard-for-java\u002Fback-matter\u002Frule-or-rec-dd-related-guidelines\u002Fmitre-cwe","6.sei-cert-oracle-coding-standard-for-java\u002F5.back-matter\u002F7.rule-or-rec-dd-related-guidelines\u002F5.mitre-cwe",{"title":3625,"path":3626,"stem":3627},"SECURE CODING GUIDELINES FOR JAVA SE, VERSION 5.0","\u002Fsei-cert-oracle-coding-standard-for-java\u002Fback-matter\u002Frule-or-rec-dd-related-guidelines\u002Fsecure-coding-guidelines-for-java-se-version-50","6.sei-cert-oracle-coding-standard-for-java\u002F5.back-matter\u002F7.rule-or-rec-dd-related-guidelines\u002F6.secure-coding-guidelines-for-java-se-version-50",{"title":3629,"path":3630,"stem":3631},"Rule or Rec. EE. Risk Assessments","\u002Fsei-cert-oracle-coding-standard-for-java\u002Fback-matter\u002Frule-or-rec-ee-risk-assessments","6.sei-cert-oracle-coding-standard-for-java\u002F5.back-matter\u002F8.rule-or-rec-ee-risk-assessments",{"title":3633,"path":3634,"stem":3635,"children":3636},"Admin","\u002Fsei-cert-oracle-coding-standard-for-java\u002Fadmin","6.sei-cert-oracle-coding-standard-for-java\u002F6.admin\u002F1.index",[3637,3638,3642,3646,3650,3654],{"title":3633,"path":3634,"stem":3635},{"title":3639,"path":3640,"stem":3641},"All Guidelines with Classification","\u002Fsei-cert-oracle-coding-standard-for-java\u002Fadmin\u002Fall-guidelines-with-classification","6.sei-cert-oracle-coding-standard-for-java\u002F6.admin\u002F2.all-guidelines-with-classification",{"title":3643,"path":3644,"stem":3645},"Normative Guidelines","\u002Fsei-cert-oracle-coding-standard-for-java\u002Fadmin\u002Fnormative-guidelines","6.sei-cert-oracle-coding-standard-for-java\u002F6.admin\u002F3.normative-guidelines",{"title":3647,"path":3648,"stem":3649},"Tech-edit","\u002Fsei-cert-oracle-coding-standard-for-java\u002Fadmin\u002Ftech-edit","6.sei-cert-oracle-coding-standard-for-java\u002F6.admin\u002F4.tech-edit",{"title":3651,"path":3652,"stem":3653},"TODO List","\u002Fsei-cert-oracle-coding-standard-for-java\u002Fadmin\u002Ftodo-list","6.sei-cert-oracle-coding-standard-for-java\u002F6.admin\u002F5.todo-list",{"title":3651,"path":3652,"stem":3655},"6.sei-cert-oracle-coding-standard-for-java\u002F6.admin\u002F6.todo-list",1775657816907]