This site is the archived OWASP Foundation Wiki and is no longer accepting Account Requests.
To view the new OWASP Foundation website, please visit https://owasp.org

Difference between revisions of "Poor Style: Identifier Contains Dollar Symbol ($)"

From OWASP
Jump to: navigation, search
 
 
(3 intermediate revisions by the same user not shown)
Line 1: Line 1:
{{Template:Vulnerability}}
+
{{template:CandidateForDeletion}}
{{Template:Fortify}}
+
 
 +
#REDIRECT [[Failure to follow guideline/specification]]
 +
 
 +
 
 +
 
 +
Last revision (mm/dd/yy): '''{{REVISIONMONTH}}/{{REVISIONDAY}}/{{REVISIONYEAR}}'''
  
==Abstract==
 
  
Using a dollar sign ($) as part of an identifier is not recommended.
 
  
 
==Description==
 
==Description==
 +
 +
Using a dollar sign ($) as part of an identifier is not recommended.
  
 
Section 3.8 of the Java Language Specification reserves the dollar sign ($) for identifiers that are used only in mechanically generated source code.
 
Section 3.8 of the Java Language Specification reserves the dollar sign ($) for identifiers that are used only in mechanically generated source code.
  
==Examples ==
+
 
 +
 
 +
==Risk Factors==
 +
 
 +
TBD
 +
 
 +
==Examples==
  
 
int un$afe;
 
int un$afe;
  
==Related Threats==
+
==Related [[Attacks]]==
 +
 
 +
* [[Attack 1]]
 +
* [[Attack 2]]
 +
 
 +
 
 +
==Related [[Vulnerabilities]]==
 +
 
 +
* [[Vulnerability 1]]
 +
* [[Vulnerabiltiy 2]]
  
==Related Attacks==
+
==Related [[Controls]]==
  
==Related Vulnerabilities==
+
* [[Control 1]]
 +
* [[Control 2]]
  
==Related Countermeasures==
 
  
==Categories==
+
==Related [[Technical Impacts]]==
  
[[Category:Code Quality Vulnerability]]
+
* [[Technical Impact 1]]
 +
* [[Technical Impact 2]]
  
[[Category:Java]]
 
  
[[Category:Implementation]]
+
==References==
  
[[Category:Code Snippet]]
+
TBD

Latest revision as of 23:28, 7 April 2009

Template:CandidateForDeletion

#REDIRECT Failure to follow guideline/specification


Last revision (mm/dd/yy): 04/7/2009


Description

Using a dollar sign ($) as part of an identifier is not recommended.

Section 3.8 of the Java Language Specification reserves the dollar sign ($) for identifiers that are used only in mechanically generated source code.


Risk Factors

TBD

Examples

int un$afe;

Related Attacks


Related Vulnerabilities

Related Controls


Related Technical Impacts


References

TBD