-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmain.go
More file actions
22 lines (19 loc) · 696 Bytes
/
main.go
File metadata and controls
22 lines (19 loc) · 696 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package main
import "github.com/akwick/sqinco/sqlInjections"
func main() {
// 10er examples
sqlInjections.UnprepStmtConst()
sqlInjections.UnprepStmtConstDecl()
sqlInjections.UnprepStmtConstDeclUntypedString()
sqlInjections.UnprepStmtConstDeclTypedString()
sqlInjections.UnprepStmtConstIsConstRetVal()
sqlInjections.UnprepStmtConstIsConstRetValFlowSens()
sqlInjections.UnprepStmtConstDeclChangeAfterQueryFunCall()
// 20er examples
sqlInjections.UnprepStmtConstDeclUntypedStringQueryRow()
sqlInjections.UnprepStmtDeclStringQueryRow()
sqlInjections.UnprepStmtFormatedString()
sqlInjections.UnprepStmtConstDeclSmallKeywords()
sqlInjections.WrappedFunc()
sqlInjections.NotQuerry()
}