2019年7月2日 星期二

[c#]記一次實驗室局域網的ARP欺騙

https://www.cnblogs.com/fantacity/p/4792689.html

安裝
https://www.winpcap.org/install/default.htm


https://drive.google.com/file/d/1QBfoLvjmB49DKAotNP8zzv9E_s3TErJv/view?usp=sharing

含dll
https://drive.google.com/file/d/1bpXn7HyDR7xpuJPdMtgypcU0CL-TKKDx/view?usp=sharing

程式執行時問題




SharpPcap - A Packet Capture Framework for .NET


https://www.codeproject.com/Articles/12458/SharpPcap-A-Packet-Capture-Framework-for-NET#basicCap

https://drive.google.com/file/d/18CmaLM8ibN8NbvV9ssUyLVF2a5bP4aca/view?usp=sharing


以 SharpPcap 實作可收聽封包的 C# 程式

http://likewaylai.blogspot.com/2012/03/sharppcap-c.html

c#编写ARP欺骗,无法加载 DLL“wpcap”: 找不到指定的模块。loadlibrary("wpcap.dll")失败-找不到指定的模块




Arp Spoofing 欺騙攻擊-實作

http://ff320232.blogspot.com/2013/04/arp-spoofing.html

https://www.shs.edu.tw/works/essay/2012/03/2012032809264957.pdf

ARP Spoofing,講解

https://ithelp.ithome.com.tw/articles/10193536

https://docs.google.com/presentation/d/18ieZlqQ7Z3nnysVcfmrCb8AxB3_I8TunpPw4OF2D9v8/edit?usp=sharing


c# 寫的ARP攻擊器和ARP防火牆

https://www.cnblogs.com/zifeiniu/archive/2011/06/16/2083015.html

https://www.twblogs.net/a/5b810ffb2b71772165aad208

https://drive.google.com/file/d/1_0TRqrylHk8V_VCWm9pePRWAQxXmjHyL/view?usp=sharing


C# 獲取 ARP 對映

https://www.itread01.com/content/1545730217.html

https://codeday.me/bug/20180301/138362.html

ARP協議之跨網段和同網段

https://kknews.cc/other/bkp444j.html

https://kknews.cc/zh-tw/tech/p4okplp.html

2019年6月24日 星期一

(SQL)抽獎系統

https://www.fooish.com/sql/select-into.html

隨機抽取
select top 5 * from  [dbo].[Temp2] order by newid()


SELECT table_column1, table_column2, table_column3...
INTO new_table_name [IN another_database]
FROM table_name;
其中 new_table_name 為欲新建的資料表名稱,該資料表會自動建立,且不可與已經存在的資料表名稱相同;而 another_database 為至外部資料庫的路徑。

ps:
結合運用sql join 語法
https://dotblogs.com.tw/caubekimo/2010/07/28/16874

WPF聊天室应用(ASP.NET Core SignalR)

  WPF聊天室应用(ASP.NET Core SignalR) https://www.bilibili.com/video/BV1Q741187Si?p=2 https://www.bilibili.com/video/BV1UV411e75T?from=search...