Get System Information of a Remote Machine (Using Java)

前端 未结 7 1763
天命终不由人
天命终不由人 2020-12-21 13:52

As the question\'s title says, I want to get the system information (like OS name, version, etc.) of a remote system using Java. But before anyone answers this question, I j

7条回答
  •  死守一世寂寞
    2020-12-21 14:12

    You either need help from the remote system (i.e. an application running there that announces the data - which web browsers do, but only to the servers they visit) or access to low-level network APIs that allow a technique called OS fingerprinting. However, Java's network APIs are not low-level enough for that.

提交回复
热议问题