Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- target = args[0];
- moneyThresh = args[1];
- securityThresh = args[2];
- if (fileExists("BruteSSH.exe", "home")) {
- brutessh(target);
- ftpcrack(target);
- }
- nuke(target);
- while (true) {
- if (getServerSecurityLevel(target) > securityThresh) {
- //If the server's security level is above our threshold, weaken it
- weaken(target);
- } else if (getServerMoneyAvailable(target) < moneyThresh) {
- //If the server's money is less than our threshold, grow it
- grow(target);
- } else {
- //Otherwise, hack it
- hack(target);
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement