
### Bitburner
Collection of Bitburner scipts
[](https://git.zakscode.com/ztimson/bitburner/tags)
[](https://git.zakscode.com/ztimson/bitburner/pulls)
[](https://git.zakscode.com/ztimson/bitburner/issues)
---
---
## Table of Contents
- [Bitburner](#top)
- [About](#about)
- [Built With](#built-with)
- [Quick Start](#qiuck-start)
- [Scripts](#scripts)
- [banner.js](#banner)
- [botnet-manager.js (WIP)](#botnet)
- [connect.js](#connect)
- [copy.js](#copy)
- [crawler.js](#crawler)
- [find-target.js](#find-target)
- [hacknet-manager.js](#hacknet)
- [miner.js](#miner)
- [network-graph.js](#network-graph)
- [rm.js](#rm)
- [rootkit.js](#rootkit)
- [server-manager.js](#server-manager)
- [update.js](#update)
- [License](#license)
## About
A collection of scripts & information pertaining to the [open source](https://github.com/danielyxie/bitburner) game [Bitburner](https://danielyxie.github.io/bitburner/)
### Built with
[](https://javascript.com/)
## Quick Start
```bash
# Download the update script in-game & run it
wget https://gitlab.zakscode.com/ztimson/Bitburner/-/raw/develop/scripts/update.js scripts/update.js
run scripts/update.js # Repeat to pull the latest
# View the network
run scripts/network-graph.js --verbose
run scripts/netowkr-graph.js -v --filter CSEC # Find path to a specific device
# Start the node manager in auto-mode
run scripts/node-manager.js -a
# Chain the crawler & rootkit to root all devices on the network
run scripts/crawler.js --not-rooted /scripts/rootkit.js {{TARGET}}
# Find the most profitable server & use the crawler to deploy miners on the network targeting it
run scripts/find-target.js # Output: n00dles
run scriipts/crawler.js --rooted --remote-exec /scripts/miner.js n00dles
# Install backdoor on CSEC
run scripts/rootkit.js CSEC
run scripts/connect.js CSEC
backdoor
```
## Scripts