Files
SuperSQLInjectionV1/SuperSQLInjection/model/DBType.cs
shack2 7058ce7325 update 20190303
新增支持Informix注入(盲注,延时,Union)。
2019-03-03 22:17:41 +08:00

21 lines
339 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace SuperSQLInjection.model
{
[Serializable]
public enum DBType
{
UnKnow=0,
Access=1,
MySQL = 2,
SQLServer = 3,
Oracle = 4,
PostgreSQL=5,
DB2 = 6,
SQLite=7,
Informix=8
}
}