システム侵入テスト中に、セキュリティ エンジニアは標準ユーザーとして Linux ホスト上のシェルにアクセスすることに成功し、特権レベルを昇格したいと考えています。 この目標を達成するために使用できる、Linux エクスプロイト後の有効な方法は次のうちどれですか?
正解:A
sudo vim -c '!sh' is a valid Linux post-exploitation method to elevate privilege levels. This method takes advantage of the sudo command, which allows users to execute commands with elevated privileges, and the escape string "!sh" invokes a shell with root privileges.