[pssword]John the Ripper (JTR) 密碼破解簡單使用教學

參考網址:james

官方網站:https://www.openwall.com/john/

 

M2Y5WVU4nQNK6
M2AERmE1jWn2E
M2dkTuewmYzJY
M2GMcSXbX0v6E

首先將上述的密文存成一個檔案 test01.txt
接下來請執行 ./john -si test01.txt 這個指令吧

破解完成,可執行 john –show test01.txt 看看解出的明文是啥囉!

解碼模式一(簡單模式)
輸入指令john -si test01.txt

解碼模式二(字典模式)
輸入指令john -w:j2.txt test01.txt

解碼模式三(窮舉模式)
輸入指令john -i test01.txt

顯示結果
輸入指令john -show 01.txt後,就會顯示如上圖所示的結果

 

暴力破解MD5

john --incremental --format=md5crypt test01.txt

 

使用教學
https://home.gamer.com.tw/creationDetail.php?sn=3668124

模式列舉

發表於 軟體使用 | 發表迴響

[pdf]tcpdf使用

參考網址:https://tcpdf.org/examples/

Cell($w, $h=0, $txt='', $border=0, $ln=0, $align='', $fill=0, $link='', $stretch=0, $ignore_min_height=false, $calign='T', $valign='M')

MultiCell($w, $h, $txt, $border=0, $align='J', $fill=0, $ln=1, $x='', $y='', $reseth=true, $stretch=0, $ishtml=false, $autopadding=true, $maxh=0)

 

https://www.tad0616.net/modules/tad_book3/page.php?tbdsn=806

各種參數:

  1. 「$w」寬
  2. 「$h」最小高度
  3. 「$border」框線:「0,1,T,R,B,L」
  4. 「$ln」下一個元件的位置:「0(預設)右邊;1下行最左邊;2目前元件下方」
  5. 「$align」對齊方向:「L,C,R,J」
  6. 「$fill」是否填色:「true為不透明;false透明」
  7. 「$link」加入連結
  8. 「$stretch」延伸:0不延伸;1字大於格寬才縮放文字;2一律縮放文字到格寬;3字大於格寬才縮放字距;4一律縮放字距到格寬、「$ignore_min_height」自動忽略最小高度
  9. 「$calign」格內對齊:「T格上,C格中,B格下,A字上,L字底,D字下」
  10. 「$valign」垂直對齊:「T,C,B」
  11. 「$reseth」若true會重設最後一格的高度
  12. 「$autopadding」自動調整內距
  13. 「$x、$y」左上角起始位置
  14. 「$ishtml」請設為false
  15. 「$maxh」高度上限(需>$h)
  16. 「$fitcell」自動縮放字大小到格內
  17. 「$html」內容(屬性一定要用雙引號)

 

TCPDF class 函式說明

https://tcpdf.org/docs/srcdoc/TCPDF/class-TCPDF/

SetMargins( $left, $top, $right = -1, $keepmargins = false )

發表於 程式設計 | 發表迴響

sfs3 學務系統已停止營運

參考網址:http://sfsun.k12cc.tw/

多年前用的學務系統,借由開放使用的程式碼,陪我走過學習php程式設計的日子。如今已暫停營運了,在這個參考網址還可以下載保留的程式碼,下載備用吧!

發表於 程式設計, 軟體使用 | 發表迴響

windows server 安裝 WSL2

參考網址:microsoft

Windows 子系統 Linux 版可在 Windows Server 2019 (版本 1709) 和更新版本上安裝。

發表於 Windows系統 | 發表迴響

[5a88]5a88無法APE

問題:無法tnr控制學生端進入PE狀態,下指令後學生端重新開機,卻直接進windows10
程式追蹤:先將bin\SendTag.bat最後第三行的shutdown REM,看看學生端電腦是否有ape.txt檔案。

 

執行以下程式,看看是否能建立ape.txt
 

REM 1_ip 2_PW 3_SU 4_mac 5_group 6_sendCMD 7_data1 8_data2

REM .\pstools\psexec.exe -accepteula -u %3 -p %2 \\%1 -c .\bin\SendTag.bat %6
.\pstools\psexec.exe -accepteula -u administrator -p btw@xxxx \\192.168.1.12 -c .\bin\SendTag.bat ape

pause

 

原來問題出在DATA磁碟的名稱,之前的系統用DATA,後來用 data ,大小寫有差。
找到 if %%F==data (set dataVolume=%%D)
再加一行 if %%F==DATA (set dataVolume=%%D) 讓大寫的DATA也可以接受,程式就可以正常了。

@echo off
REM made by ng344@tn.edu.tw 20200413

REM 找出使用中的磁碟代號
wmic logicaldisk get caption,volumename,drivetype > %temp%\wmicUseDisk.txt

REM 找出data槽或除c槽外的本機磁碟
set dataVolume=
set UseVolumeNoC=
for /f "skip=1 tokens=1-3 delims= " %%D in ('type %temp%\wmicUseDisk.txt') do (
	if %%E==3 (
		if %%F==data (set dataVolume=%%D)
		if not %%D==C: (set UseVolumeNoC=!UseVolumeNoC! %%D)
	)
)
REM 設定第一個使用的磁碟(非C)
set UseVolumeNoC1=%UseVolumeNoC:~1,2%

if defined dataVolume (fsutil.exe file createnew %dataVolume%\%1.txt 0 >nul) else (
if defined UseVolumeNoC1 (fsutil.exe file createnew %UseVolumeNoC1%\%1.txt 0 >nul) else (
echo 發生錯誤,無實體磁碟可以傳遞標籤,請洽系統管理員。 & goto end
))

shutdown /r /f /t 0
:end
exit


 

 

發表於 Windows系統 | 發表迴響

Send Anywhere免傳輸線!手機電腦互傳照片影片音樂,打開網頁立即傳。

參考網址:

痞凱踏踏

Send Anywhere

發表於 ANDROID, Windows系統 | 發表迴響

[ubuntu]安裝squid

參考網址:CSDN

發表於 Linux系統 | 發表迴響

Stream Recorder

參考網址:https://www.hlsloader.com/index.html

Chrome Extension for downloading streaming videos
 

琅琊榜之風起長林
https://chinaq.tv/nirvana-in-fire-2/5.html#1

發表於 軟體使用 | 發表迴響

network_traffic_view網路流量監視軟體

參考網址:http://www.nirsoft.net/utils/network_traffic_view.html

發表於 軟體使用 | 發表迴響

以指令修改調整螢幕解析度設定

參考網址:https://tonysnote.whybut.com/2017/04/blog-post.html?m=1

 

 

NirCmd v2.86
Copyright (c) 2003 – 2019 Nir Sofer
有許多功能

Set the display mode to 800x600x24bit colors nircmd.exe setdisplay 800 600 24
Mute the system volume nircmd.exe mutesysvolume 1
Unmute the system volume nircmd.exe mutesysvolume 0

 

 

 

發表於 Windows系統 | 發表迴響