User Tools

Site Tools

memo:index

Memo



2024-12-17 DEF CON 29 Car Hacking Village - Compromising the Tesla Model X keyless entry

  • 本次演講涵蓋了 Tesla Model X 免鑰匙進入系統的實用安全評估。我們將介紹系統的內部工作原理,包括密鑰卡、車身控制模組和配對協議。此外,我們還詳細介紹了我們的逆向工程技術並記錄了幾個安全問題。密鑰卡韌體更新機制和密鑰卡配對協議中已發現的問題使我們能夠繞過所有已實施的加密安全措施。我們的概念驗證攻擊可以在幾分鐘內解鎖並啟動 Model X。 Tesla 使用 OTA 更新修復了金鑰卡韌體更新機制中的漏洞。

→ Read more...

2024/12/17 08:40 · jethro



2024-12-11 C#: Disable resizing of a Windows Forms form

→ Read more...

2024/12/11 14:19 · jethro



2024-12-11 C#: Count the number of selected rows in a DataGridView

→ Read more...

2024/12/11 09:46 · jethro



2024-12-11 C#: DatagridView Select last row

  • I have some trouble with setting the last row in my datagridview selected. I select the last row this way:
    if (grid.Rows.Count > 0)
    {
        try
        {
            grid.Rows[grid.Rows.Count - 1].Selected = true;
            grid.CurrentCell = grid.Rows[grid.Rows.Count - 1].Cells[1]
        }
        catch (IndexOutOfRangeException)
        { }
        catch (ArgumentOutOfRangeException)
        { }
    }
  • When I execute this code I get an exception:
    • IndexOutOfRangeException occurred: Index-1 does not have a value.
  • When I debug the Rowscollection and the corresponding Cells collection I see both collections are filled. The index also exists of the Rows and Cells collection.
  • I have no clue what I am doing wrong here. Someone who can help me out here? Thnx

→ Read more...

2024/12/11 09:26 · jethro

7484 person(s) visited this page until now.

Permalink memo/index.txt · Last modified: 2019/11/12 14:09 by jethro

oeffentlich