2024-01-05 23:40:55 +00:00
# 514 - Pentesting Rsh
2022-04-28 16:01:33 +00:00
< details >
2024-01-05 23:40:55 +00:00
< summary > < strong > AWSハッキングをゼロからヒーローまで学ぶには< / strong > < a href = "https://training.hacktricks.xyz/courses/arte" > < strong > htARTE (HackTricks AWS Red Team Expert)< / strong > < / a > < strong > をご覧ください!< / strong > < / summary >
2022-04-28 16:01:33 +00:00
2024-01-05 23:40:55 +00:00
HackTricksをサポートする他の方法:
2022-04-28 16:01:33 +00:00
2024-01-05 23:40:55 +00:00
* **HackTricksにあなたの会社を広告したい場合**や**HackTricksをPDFでダウンロードしたい場合**は、[**サブスクリプションプラン**](https://github.com/sponsors/carlospolop)をチェックしてください!
* [**公式PEASS & HackTricksグッズ** ](https://peass.creator-spring.com )を入手する
* [**The PEASS Family** ](https://opensea.io/collection/the-peass-family )を発見し、独占的な[**NFTs**](https://opensea.io/collection/the-peass-family)のコレクションをご覧ください
* 💬 [**Discordグループ** ](https://discord.gg/hRep4RUj7f )や[**テレグラムグループ**](https://t.me/peass)に**参加する**か、**Twitter** 🐦 [**@carlospolopm** ](https://twitter.com/carlospolopm )を**フォローしてください。**
* **HackTricks**の[**GitHubリポジトリ**](https://github.com/carlospolop/hacktricks)や[**HackTricks Cloud**](https://github.com/carlospolop/hacktricks-cloud)にPRを提出して、あなたのハッキングテクニックを共有してください。
2022-04-28 16:01:33 +00:00
< / details >
2023-07-07 23:42:27 +00:00
## 基本情報
2020-07-15 15:43:14 +00:00
2024-01-05 23:40:55 +00:00
**Rsh**は**.rhosts**ファイルと**/etc/hosts.equiv**を認証に使用します。これらの方法は、IPアドレスとDNS( ドメインネームシステム) に依存して認証を行っていました。しかし、特に攻撃者がローカルネットワーク上にいる場合、IPアドレスのなりすましは比較的簡単です。
2020-07-15 15:43:14 +00:00
2024-01-05 23:40:55 +00:00
さらに、**.rhosts**ファイルはユーザーのホームディレクトリに保存されており、通常はNFS( ネットワークファイルシステム) ボリュームに格納されていました。( こちらから: [https://www.ssh.com/ssh/rsh](https://www.ssh.com/ssh/rsh))。
2020-07-15 15:43:14 +00:00
2024-01-05 23:40:55 +00:00
**デフォルトポート**: 514
2020-07-15 15:43:14 +00:00
2023-07-07 23:42:27 +00:00
## ログイン
2021-10-18 11:21:18 +00:00
```
2020-07-15 15:43:14 +00:00
rsh < IP > < Command >
rsh < IP > -l domain\user < Command >
rsh domain/user@< IP > < Command >
rsh domain\\user@< IP > < Command >
```
2023-07-07 23:42:27 +00:00
### [**ブルートフォース**](../generic-methodologies-and-resources/brute-force.md#rsh)
2022-04-28 16:01:33 +00:00
< details >
2024-01-05 23:40:55 +00:00
< summary > < strong > AWSハッキングをゼロからヒーローまで学ぶには< / strong > < a href = "https://training.hacktricks.xyz/courses/arte" > < strong > htARTE (HackTricks AWS Red Team Expert)< / strong > < / a > < strong > をご覧ください!< / strong > < / summary >
2022-04-28 16:01:33 +00:00
2024-01-05 23:40:55 +00:00
HackTricksをサポートする他の方法:
2022-04-28 16:01:33 +00:00
2024-01-05 23:40:55 +00:00
* **HackTricksにあなたの会社を広告したい**、または**HackTricksをPDFでダウンロードしたい**場合は、[**サブスクリプションプラン**](https://github.com/sponsors/carlospolop)をチェックしてください!
* [**公式PEASS & HackTricksグッズ** ](https://peass.creator-spring.com )を手に入れましょう。
* [**The PEASS Family** ](https://opensea.io/collection/the-peass-family )を発見し、独占的な[**NFTs**](https://opensea.io/collection/the-peass-family)のコレクションをご覧ください。
* 💬 [**Discordグループ** ](https://discord.gg/hRep4RUj7f )や[**テレグラムグループ**](https://t.me/peass)に**参加する**か、**Twitter** 🐦 [**@carlospolopm** ](https://twitter.com/carlospolopm )を**フォロー**してください。
* [**HackTricks** ](https://github.com/carlospolop/hacktricks )と[**HackTricks Cloud**](https://github.com/carlospolop/hacktricks-cloud)のgithubリポジトリにPRを提出して、あなたのハッキングのコツを**共有してください**。
2022-04-28 16:01:33 +00:00
< / details >