bitburner-src/markdown/bitburner.ns.brutessh.md

47 lines
731 B
Markdown
Raw Normal View History

2021-10-30 12:34:14 -04:00
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
[Home](./index.md) &gt; [bitburner](./bitburner.md) &gt; [NS](./bitburner.ns.md) &gt; [brutessh](./bitburner.ns.brutessh.md)
## NS.brutessh() method
Runs BruteSSH.exe on a server.
2021-10-30 12:34:14 -04:00
<b>Signature:</b>
```typescript
2021-10-30 15:46:34 -04:00
brutessh(host: string): void;
2021-10-30 12:34:14 -04:00
```
## Parameters
| Parameter | Type | Description |
| --- | --- | --- |
2021-10-30 15:46:34 -04:00
| host | string | Hostname of the target server. |
2021-10-30 12:34:14 -04:00
<b>Returns:</b>
void
## Remarks
2021-10-30 15:46:34 -04:00
RAM cost: 0.05 GB
2021-10-30 12:34:14 -04:00
Runs the BruteSSH.exe program on the target server. BruteSSH.exe must exist on your home computer.
2022-01-08 13:25:06 -05:00
## Example 1
2021-10-30 12:34:14 -04:00
2021-10-30 15:46:34 -04:00
```ts
2022-01-08 13:25:06 -05:00
// NS1:
2021-10-30 12:34:14 -04:00
brutessh("foodnstuff");
```
2022-01-08 13:25:06 -05:00
## Example 2
```ts
// NS2:
ns.brutessh("foodnstuff");
```