mirror of
https://github.com/EFForg/rayhunter.git
synced 2026-07-27 17:38:10 -07:00
Remove mentions of tplink-start-telnet and orbic-start-telnet
This commit is contained in:
committed by
Will Greenberg
parent
516e878661
commit
2a8fee25f9
+2
-2
@@ -30,7 +30,7 @@ According to [FCC ID 2APQU-K779HSDL](https://fcc.report/FCC-ID/2APQU-K779HSDL),
|
|||||||
Connect to the hotspot's network using WiFi or USB tethering and run:
|
Connect to the hotspot's network using WiFi or USB tethering and run:
|
||||||
|
|
||||||
```sh
|
```sh
|
||||||
./installer orbic-network --admin-password 'mypassword'
|
./installer orbic --admin-password 'mypassword'
|
||||||
```
|
```
|
||||||
|
|
||||||
The password (in place of `mypassword`) is under the battery.
|
The password (in place of `mypassword`) is under the battery.
|
||||||
@@ -38,5 +38,5 @@ The password (in place of `mypassword`) is under the battery.
|
|||||||
## Obtaining a shell
|
## Obtaining a shell
|
||||||
|
|
||||||
```sh
|
```sh
|
||||||
./installer util orbic-start-telnet
|
./installer util orbic-shell
|
||||||
```
|
```
|
||||||
|
|||||||
+1
-3
@@ -40,9 +40,7 @@ installation routines.
|
|||||||
## Obtaining a shell
|
## Obtaining a shell
|
||||||
|
|
||||||
After running the installer, there will not be a rootshell and ADB will not be
|
After running the installer, there will not be a rootshell and ADB will not be
|
||||||
enabled. Instead you can use `./installer util orbic-start-telnet` and connect
|
enabled. Instead you can use `./installer util orbic-shell`.
|
||||||
to the hotspot using `nc 192.168.1.1 24`. On Windows you might not have `nc`
|
|
||||||
and will have to use WSL for that.
|
|
||||||
|
|
||||||
If you are using an installer prior to 0.7.0 or `orbic-usb` explicitly, you can
|
If you are using an installer prior to 0.7.0 or `orbic-usb` explicitly, you can
|
||||||
obtain a root shell by running `adb shell` or `./installer util shell`. Then,
|
obtain a root shell by running `adb shell` or `./installer util shell`. Then,
|
||||||
|
|||||||
+3
-4
@@ -42,11 +42,10 @@ Follow the [release installation guide](./installing-from-release.md). Substitut
|
|||||||
|
|
||||||
## Obtaining a shell
|
## Obtaining a shell
|
||||||
|
|
||||||
Unlike on Orbic, the installer will not enable ADB. Instead, you can obtain a root shell with the following command:
|
You can obtain a root shell with the following command:
|
||||||
|
|
||||||
```sh
|
```sh
|
||||||
./installer util tplink-start-telnet
|
./installer util tplink-shell
|
||||||
telnet 192.168.0.1
|
|
||||||
```
|
```
|
||||||
|
|
||||||
## Display states
|
## Display states
|
||||||
@@ -70,7 +69,7 @@ On hardware revisions starting with v4.0, the installer will modify settings to
|
|||||||
add two port triggers. You can look at `Settings > NAT Settings > Port
|
add two port triggers. You can look at `Settings > NAT Settings > Port
|
||||||
Triggers` in TP-Link's admin UI to see them.
|
Triggers` in TP-Link's admin UI to see them.
|
||||||
|
|
||||||
1. One port trigger "rayhunter-root" to launch the telnet shell. This is only needed for installation, and can be removed after upgrade. You can reinstall it using `./installer util tplink-start-telnet`.
|
1. One port trigger "rayhunter-root" to launch the telnet shell. This is only needed for installation, and can be removed after upgrade. You can reinstall it using `./installer util tplink-shell`.
|
||||||
2. One port trigger "rayhunter-daemon" to auto-start Rayhunter on boot. If you remove this, Rayhunter will have to be started manually from shell.
|
2. One port trigger "rayhunter-daemon" to auto-start Rayhunter on boot. If you remove this, Rayhunter will have to be started manually from shell.
|
||||||
|
|
||||||
## Other links
|
## Other links
|
||||||
|
|||||||
@@ -90,7 +90,7 @@ pub async fn install() -> Result<()> {
|
|||||||
|
|
||||||
pub async fn shell() -> Result<()> {
|
pub async fn shell() -> Result<()> {
|
||||||
println!(
|
println!(
|
||||||
"WARNING: The orbic USB installer is likely to go away in a future version of Rayhunter. Consider using ./installer util orbic-start-telnet instead."
|
"WARNING: The orbic USB installer is not recommended for most usecases. Consider using ./installer util orbic-shell instead, unless you want ADB access for other purposes."
|
||||||
);
|
);
|
||||||
|
|
||||||
println!("opening shell");
|
println!("opening shell");
|
||||||
|
|||||||
Reference in New Issue
Block a user