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 "Searching for Code in Classic ASP"

From OWASP
Jump to: navigation, search
m (Added navigation to facilitate sequential reading online)
 
Line 1: Line 1:
[[OWASP Code Review Guide Table of Contents]]__TOC__
+
{{LinkBar
 +
  | useprev=PrevLink | prev=Searching for Code in J2EE/Java | lblprev=
 +
  | usemain=MainLink | main=OWASP Code Review Guide Table of Contents | lblmain=Table of Contents
 +
  | usenext=NextLink | next=JavaScript/Web 2.0 Keywords and Pointers | lblnext=
 +
}}
 +
__TOC__
  
 
==Inputs==
 
==Inputs==
Line 66: Line 71:
 
Server.Execute <br>
 
Server.Execute <br>
  
 
+
{{LinkBar
 
+
  | useprev=PrevLink | prev=Searching for Code in J2EE/Java | lblprev=
 +
  | usemain=MainLink | main=OWASP Code Review Guide Table of Contents | lblmain=Table of Contents
 +
  | usenext=NextLink | next=JavaScript/Web 2.0 Keywords and Pointers | lblnext=
 +
}}
  
 
[[Category:OWASP Code Review Project]]
 
[[Category:OWASP Code Review Project]]

Latest revision as of 15:35, 9 September 2010

«««« Main
(Table of Contents)
»»»»

Inputs

Request
Request.QueryString
Request.Form
Request.ServerVariables
Query_String
hidden
include
.inc

Output

Response.Write
Response.BinaryWrite
<%=

Cookies

.cookies

Error Handling

err.
Server.GetLastError
On Error Resume Next
On Error GoTo 0

Information in URL

location.href
location.replace
method="GET"

Database

commandText
select from
update
insert into
delete from where
exec
execute
.execute
.open
ADODB.
commandtype
ICommand
IRowSet

Session

session.timeout
session.abandon
session.removeall

DOS Prevention

server.ScriptTimeout
IsClientConnected

Logging

WriteEntry

Redirection

Response.AddHeader
Response.AppendHeader
Response.Redirect
Response.Status
Response.StatusCode
Server.Transfer
Server.Execute


«««« Main
(Table of Contents)
»»»»