├── .gitattributes ├── .gitignore ├── DownLoadExec ├── DownLoadExec.sqlproj └── SqlStoredProcedure1.cs ├── EfsPotato ├── EfsPotato.cs ├── EfsPotato.sqlproj ├── RowUtils.cs └── SqlStoredProcedure1.cs ├── PotatoInSQL ├── AssemblyInfo.cs ├── Com │ ├── IEnumSTATSTG.cs │ ├── ILockBytes.cs │ ├── IMarshal.cs │ ├── IStorage.cs │ ├── IStream.cs │ └── Ole32.cs ├── IEnumSTATSTG.cs ├── ILockBytes.cs ├── IMarshal.cs ├── IStorage.cs ├── IStream.cs ├── LocalNegotiator.cs ├── ObjRef.cs ├── Ole32.cs ├── Options.cs ├── PotatoAPI.cs ├── PotatoInSQL.sqlproj ├── Privilege.cs ├── Program.cs ├── Properties │ └── AssemblyInfo.cs ├── SSPIHelper.cs ├── Security │ ├── Privilege.cs │ └── SSPIHelper.cs ├── SqlStoredProcedure1.cs └── StorageTrigger.cs ├── README.md ├── SqlCmdExec ├── SqlCmdExec.sqlproj └── SqlStoredProcedure1.cs ├── SqlKnife.sln ├── SqlKnife ├── DataSourceHandle.cpp ├── DataSourceHandle.h ├── MsSqlExploit.cpp ├── MsSqlExploit.h ├── SqlKnife.cpp ├── SqlKnife.vcxproj ├── SqlKnife.vcxproj.filters ├── getopt.c ├── getopt.h └── stdfax.h ├── img ├── Snipaste_2021-08-03_10-43-27.png ├── Snipaste_2021-08-03_10-46-08.png ├── Snipaste_2021-08-03_10-46-29.png ├── Snipaste_2021-08-03_10-47-04.png ├── Snipaste_2021-08-03_10-47-33.png ├── Snipaste_2021-08-03_10-47-56.png ├── Snipaste_2021-08-03_10-55-46.png ├── Snipaste_2021-08-03_10-56-34.png ├── Snipaste_2021-08-03_11-17-47.png ├── Snipaste_2021-08-03_11-18-02.png ├── Snipaste_2021-08-03_11-19-41.png ├── Snipaste_2021-08-03_11-28-46.png ├── Snipaste_2021-08-03_11-29-11.png ├── Snipaste_2021-08-03_11-29-35.png ├── Snipaste_2021-08-03_11-36-43.png ├── Snipaste_2021-08-03_11-36-57.png ├── Snipaste_2021-08-03_11-42-58.png ├── Snipaste_2021-08-03_11-45-54.png ├── Snipaste_2021-08-03_11-46-53.png └── Snipaste_2021-08-05_19-40-49.png └── sqltool.py /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x727/SqlKnife_0x727/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x727/SqlKnife_0x727/HEAD/.gitignore -------------------------------------------------------------------------------- /DownLoadExec/DownLoadExec.sqlproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x727/SqlKnife_0x727/HEAD/DownLoadExec/DownLoadExec.sqlproj -------------------------------------------------------------------------------- /DownLoadExec/SqlStoredProcedure1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x727/SqlKnife_0x727/HEAD/DownLoadExec/SqlStoredProcedure1.cs -------------------------------------------------------------------------------- /EfsPotato/EfsPotato.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x727/SqlKnife_0x727/HEAD/EfsPotato/EfsPotato.cs -------------------------------------------------------------------------------- /EfsPotato/EfsPotato.sqlproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x727/SqlKnife_0x727/HEAD/EfsPotato/EfsPotato.sqlproj -------------------------------------------------------------------------------- /EfsPotato/RowUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x727/SqlKnife_0x727/HEAD/EfsPotato/RowUtils.cs -------------------------------------------------------------------------------- /EfsPotato/SqlStoredProcedure1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x727/SqlKnife_0x727/HEAD/EfsPotato/SqlStoredProcedure1.cs -------------------------------------------------------------------------------- /PotatoInSQL/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x727/SqlKnife_0x727/HEAD/PotatoInSQL/AssemblyInfo.cs -------------------------------------------------------------------------------- /PotatoInSQL/Com/IEnumSTATSTG.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x727/SqlKnife_0x727/HEAD/PotatoInSQL/Com/IEnumSTATSTG.cs -------------------------------------------------------------------------------- /PotatoInSQL/Com/ILockBytes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x727/SqlKnife_0x727/HEAD/PotatoInSQL/Com/ILockBytes.cs -------------------------------------------------------------------------------- /PotatoInSQL/Com/IMarshal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x727/SqlKnife_0x727/HEAD/PotatoInSQL/Com/IMarshal.cs -------------------------------------------------------------------------------- /PotatoInSQL/Com/IStorage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x727/SqlKnife_0x727/HEAD/PotatoInSQL/Com/IStorage.cs -------------------------------------------------------------------------------- /PotatoInSQL/Com/IStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x727/SqlKnife_0x727/HEAD/PotatoInSQL/Com/IStream.cs -------------------------------------------------------------------------------- /PotatoInSQL/Com/Ole32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x727/SqlKnife_0x727/HEAD/PotatoInSQL/Com/Ole32.cs -------------------------------------------------------------------------------- /PotatoInSQL/IEnumSTATSTG.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x727/SqlKnife_0x727/HEAD/PotatoInSQL/IEnumSTATSTG.cs -------------------------------------------------------------------------------- /PotatoInSQL/ILockBytes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x727/SqlKnife_0x727/HEAD/PotatoInSQL/ILockBytes.cs -------------------------------------------------------------------------------- /PotatoInSQL/IMarshal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x727/SqlKnife_0x727/HEAD/PotatoInSQL/IMarshal.cs -------------------------------------------------------------------------------- /PotatoInSQL/IStorage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x727/SqlKnife_0x727/HEAD/PotatoInSQL/IStorage.cs -------------------------------------------------------------------------------- /PotatoInSQL/IStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x727/SqlKnife_0x727/HEAD/PotatoInSQL/IStream.cs -------------------------------------------------------------------------------- /PotatoInSQL/LocalNegotiator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x727/SqlKnife_0x727/HEAD/PotatoInSQL/LocalNegotiator.cs -------------------------------------------------------------------------------- /PotatoInSQL/ObjRef.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x727/SqlKnife_0x727/HEAD/PotatoInSQL/ObjRef.cs -------------------------------------------------------------------------------- /PotatoInSQL/Ole32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x727/SqlKnife_0x727/HEAD/PotatoInSQL/Ole32.cs -------------------------------------------------------------------------------- /PotatoInSQL/Options.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x727/SqlKnife_0x727/HEAD/PotatoInSQL/Options.cs -------------------------------------------------------------------------------- /PotatoInSQL/PotatoAPI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x727/SqlKnife_0x727/HEAD/PotatoInSQL/PotatoAPI.cs -------------------------------------------------------------------------------- /PotatoInSQL/PotatoInSQL.sqlproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x727/SqlKnife_0x727/HEAD/PotatoInSQL/PotatoInSQL.sqlproj -------------------------------------------------------------------------------- /PotatoInSQL/Privilege.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x727/SqlKnife_0x727/HEAD/PotatoInSQL/Privilege.cs -------------------------------------------------------------------------------- /PotatoInSQL/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x727/SqlKnife_0x727/HEAD/PotatoInSQL/Program.cs -------------------------------------------------------------------------------- /PotatoInSQL/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x727/SqlKnife_0x727/HEAD/PotatoInSQL/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /PotatoInSQL/SSPIHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x727/SqlKnife_0x727/HEAD/PotatoInSQL/SSPIHelper.cs -------------------------------------------------------------------------------- /PotatoInSQL/Security/Privilege.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x727/SqlKnife_0x727/HEAD/PotatoInSQL/Security/Privilege.cs -------------------------------------------------------------------------------- /PotatoInSQL/Security/SSPIHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x727/SqlKnife_0x727/HEAD/PotatoInSQL/Security/SSPIHelper.cs -------------------------------------------------------------------------------- /PotatoInSQL/SqlStoredProcedure1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x727/SqlKnife_0x727/HEAD/PotatoInSQL/SqlStoredProcedure1.cs -------------------------------------------------------------------------------- /PotatoInSQL/StorageTrigger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x727/SqlKnife_0x727/HEAD/PotatoInSQL/StorageTrigger.cs -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x727/SqlKnife_0x727/HEAD/README.md -------------------------------------------------------------------------------- /SqlCmdExec/SqlCmdExec.sqlproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x727/SqlKnife_0x727/HEAD/SqlCmdExec/SqlCmdExec.sqlproj -------------------------------------------------------------------------------- /SqlCmdExec/SqlStoredProcedure1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x727/SqlKnife_0x727/HEAD/SqlCmdExec/SqlStoredProcedure1.cs -------------------------------------------------------------------------------- /SqlKnife.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x727/SqlKnife_0x727/HEAD/SqlKnife.sln -------------------------------------------------------------------------------- /SqlKnife/DataSourceHandle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x727/SqlKnife_0x727/HEAD/SqlKnife/DataSourceHandle.cpp -------------------------------------------------------------------------------- /SqlKnife/DataSourceHandle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x727/SqlKnife_0x727/HEAD/SqlKnife/DataSourceHandle.h -------------------------------------------------------------------------------- /SqlKnife/MsSqlExploit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x727/SqlKnife_0x727/HEAD/SqlKnife/MsSqlExploit.cpp -------------------------------------------------------------------------------- /SqlKnife/MsSqlExploit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x727/SqlKnife_0x727/HEAD/SqlKnife/MsSqlExploit.h -------------------------------------------------------------------------------- /SqlKnife/SqlKnife.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x727/SqlKnife_0x727/HEAD/SqlKnife/SqlKnife.cpp -------------------------------------------------------------------------------- /SqlKnife/SqlKnife.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x727/SqlKnife_0x727/HEAD/SqlKnife/SqlKnife.vcxproj -------------------------------------------------------------------------------- /SqlKnife/SqlKnife.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x727/SqlKnife_0x727/HEAD/SqlKnife/SqlKnife.vcxproj.filters -------------------------------------------------------------------------------- /SqlKnife/getopt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x727/SqlKnife_0x727/HEAD/SqlKnife/getopt.c -------------------------------------------------------------------------------- /SqlKnife/getopt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x727/SqlKnife_0x727/HEAD/SqlKnife/getopt.h -------------------------------------------------------------------------------- /SqlKnife/stdfax.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x727/SqlKnife_0x727/HEAD/SqlKnife/stdfax.h -------------------------------------------------------------------------------- /img/Snipaste_2021-08-03_10-43-27.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x727/SqlKnife_0x727/HEAD/img/Snipaste_2021-08-03_10-43-27.png -------------------------------------------------------------------------------- /img/Snipaste_2021-08-03_10-46-08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x727/SqlKnife_0x727/HEAD/img/Snipaste_2021-08-03_10-46-08.png -------------------------------------------------------------------------------- /img/Snipaste_2021-08-03_10-46-29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x727/SqlKnife_0x727/HEAD/img/Snipaste_2021-08-03_10-46-29.png -------------------------------------------------------------------------------- /img/Snipaste_2021-08-03_10-47-04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x727/SqlKnife_0x727/HEAD/img/Snipaste_2021-08-03_10-47-04.png -------------------------------------------------------------------------------- /img/Snipaste_2021-08-03_10-47-33.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x727/SqlKnife_0x727/HEAD/img/Snipaste_2021-08-03_10-47-33.png -------------------------------------------------------------------------------- /img/Snipaste_2021-08-03_10-47-56.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x727/SqlKnife_0x727/HEAD/img/Snipaste_2021-08-03_10-47-56.png -------------------------------------------------------------------------------- /img/Snipaste_2021-08-03_10-55-46.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x727/SqlKnife_0x727/HEAD/img/Snipaste_2021-08-03_10-55-46.png -------------------------------------------------------------------------------- /img/Snipaste_2021-08-03_10-56-34.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x727/SqlKnife_0x727/HEAD/img/Snipaste_2021-08-03_10-56-34.png -------------------------------------------------------------------------------- /img/Snipaste_2021-08-03_11-17-47.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x727/SqlKnife_0x727/HEAD/img/Snipaste_2021-08-03_11-17-47.png -------------------------------------------------------------------------------- /img/Snipaste_2021-08-03_11-18-02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x727/SqlKnife_0x727/HEAD/img/Snipaste_2021-08-03_11-18-02.png -------------------------------------------------------------------------------- /img/Snipaste_2021-08-03_11-19-41.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x727/SqlKnife_0x727/HEAD/img/Snipaste_2021-08-03_11-19-41.png -------------------------------------------------------------------------------- /img/Snipaste_2021-08-03_11-28-46.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x727/SqlKnife_0x727/HEAD/img/Snipaste_2021-08-03_11-28-46.png -------------------------------------------------------------------------------- /img/Snipaste_2021-08-03_11-29-11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x727/SqlKnife_0x727/HEAD/img/Snipaste_2021-08-03_11-29-11.png -------------------------------------------------------------------------------- /img/Snipaste_2021-08-03_11-29-35.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x727/SqlKnife_0x727/HEAD/img/Snipaste_2021-08-03_11-29-35.png -------------------------------------------------------------------------------- /img/Snipaste_2021-08-03_11-36-43.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x727/SqlKnife_0x727/HEAD/img/Snipaste_2021-08-03_11-36-43.png -------------------------------------------------------------------------------- /img/Snipaste_2021-08-03_11-36-57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x727/SqlKnife_0x727/HEAD/img/Snipaste_2021-08-03_11-36-57.png -------------------------------------------------------------------------------- /img/Snipaste_2021-08-03_11-42-58.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x727/SqlKnife_0x727/HEAD/img/Snipaste_2021-08-03_11-42-58.png -------------------------------------------------------------------------------- /img/Snipaste_2021-08-03_11-45-54.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x727/SqlKnife_0x727/HEAD/img/Snipaste_2021-08-03_11-45-54.png -------------------------------------------------------------------------------- /img/Snipaste_2021-08-03_11-46-53.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x727/SqlKnife_0x727/HEAD/img/Snipaste_2021-08-03_11-46-53.png -------------------------------------------------------------------------------- /img/Snipaste_2021-08-05_19-40-49.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x727/SqlKnife_0x727/HEAD/img/Snipaste_2021-08-05_19-40-49.png -------------------------------------------------------------------------------- /sqltool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x727/SqlKnife_0x727/HEAD/sqltool.py --------------------------------------------------------------------------------