Compare commits
6 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
6d92032d06 | ||
|
|
925c3fd471 | ||
|
|
21d8da25e3 | ||
|
|
f8ec8de137 | ||
|
|
a3f42ecb3f | ||
|
|
387c12a247 |
11
pentest_tool/Cargo.lock
generated
11
pentest_tool/Cargo.lock
generated
@@ -1273,6 +1273,7 @@ dependencies = [
|
|||||||
"futures-io 0.2.1",
|
"futures-io 0.2.1",
|
||||||
"reqwest",
|
"reqwest",
|
||||||
"rodio",
|
"rodio",
|
||||||
|
"term_size",
|
||||||
"walkdir",
|
"walkdir",
|
||||||
]
|
]
|
||||||
|
|
||||||
@@ -1818,6 +1819,16 @@ dependencies = [
|
|||||||
"windows-sys 0.59.0",
|
"windows-sys 0.59.0",
|
||||||
]
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "term_size"
|
||||||
|
version = "0.3.2"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "1e4129646ca0ed8f45d09b929036bafad5377103edd06e50bf574b353d2b08d9"
|
||||||
|
dependencies = [
|
||||||
|
"libc",
|
||||||
|
"winapi",
|
||||||
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "terminfo"
|
name = "terminfo"
|
||||||
version = "0.8.0"
|
version = "0.8.0"
|
||||||
|
|||||||
@@ -13,4 +13,5 @@ fs_extra = "1.3.0"
|
|||||||
futures-io = { version = "0.2.0-beta" }
|
futures-io = { version = "0.2.0-beta" }
|
||||||
reqwest = {version = "0.12.12", features = ["blocking", "json"]}
|
reqwest = {version = "0.12.12", features = ["blocking", "json"]}
|
||||||
rodio = "0.20.1"
|
rodio = "0.20.1"
|
||||||
|
term_size = "0.3.2"
|
||||||
walkdir = "2.5.0"
|
walkdir = "2.5.0"
|
||||||
|
|||||||
@@ -1,11 +1,16 @@
|
|||||||
|
use std::fs::read_to_string;
|
||||||
|
use std::fs::OpenOptions;
|
||||||
use std::path::PathBuf;
|
use std::path::PathBuf;
|
||||||
use std::process::exit;
|
use std::process::exit;
|
||||||
|
use std::io::Write;
|
||||||
use std::thread::JoinHandle;
|
use std::thread::JoinHandle;
|
||||||
use chrono::Datelike;
|
use chrono::Datelike;
|
||||||
use clearscreen::clear;
|
use clearscreen::clear;
|
||||||
use clearscreen;
|
use clearscreen;
|
||||||
use chrono::Local;
|
use chrono::Local;
|
||||||
use colored::Colorize;
|
use colored::Colorize;
|
||||||
|
use crate::print_error;
|
||||||
|
use crate::print_informational;
|
||||||
use crate::Project;
|
use crate::Project;
|
||||||
use crate::project_controls;
|
use crate::project_controls;
|
||||||
use crate::box_controls;
|
use crate::box_controls;
|
||||||
@@ -18,94 +23,106 @@ use crate::victim_commands;
|
|||||||
use crate::enumeration;
|
use crate::enumeration;
|
||||||
use crate:: tool_controls;
|
use crate:: tool_controls;
|
||||||
use crate::configuration;
|
use crate::configuration;
|
||||||
|
use crate::tableize;
|
||||||
|
|
||||||
|
|
||||||
fn help(command: Option<String>){
|
fn help(command: Option<String>){
|
||||||
if command.is_some(){
|
if command.is_some(){
|
||||||
let help_cmd = command.unwrap();
|
let help_cmd = command.unwrap();
|
||||||
|
let mut lines = Vec::new();
|
||||||
|
lines.push("COMMAND||ALIASES||INFO".to_owned());
|
||||||
match help_cmd.as_str(){
|
match help_cmd.as_str(){
|
||||||
"list projects" | "lp" | "listp" | "list p" => {println!("Command: list projects\nAliases: lp, listp, list p\n\nThis command lists all projects currently tracked by the pentest_tool"); return;},
|
"list projects" | "lp" | "listp" | "list p" => lines.push("list projects||lp, listp, list p||This command lists all projects currently tracked by the pentest_tool".to_owned().to_owned()) ,
|
||||||
"switch project" | "swp" | "switch p" | "switchp" => {println!("Command: switch project\nAliases: swp, switch p, switchp\n\nThis command will switch the active project from the current one to a new on of your choosing. It will prompt you to make a selection."); return;},
|
"switch project" | "swp" | "switch p" | "switchp" => lines.push(" switch project|| swp, switch p, switchp||This command will switch the active project from the current one to a new on of your choosing. It will prompt you to make a selection.".to_owned()) ,
|
||||||
"show active project" | "show active" | "sa" | "show a" => {println!("Command: show active project\nAliases: sa, show a\n\nThis command shows information about the currently active project. NOTE the most useful information is already displayed above the CLI prompt."); return;},
|
"show active project" | "show active" | "sa" | "show a" => lines.push(" show active project|| sa, show a||This command shows information about the currently active project. NOTE the most useful information is already displayed above the CLI prompt.".to_owned()) ,
|
||||||
"create new project" | "cnp" | "new project" | "np" => {println!("Command: create new project\nAliases: cnp, new project, np\n\nThis command creates a new project and default note structure based on pyro's perferred note structure. It will prompt you for any needed information."); return;},
|
"create new project" | "cnp" | "new project" | "np" => lines.push(" create new project|| cnp, new project, np||This command creates a new project and default note structure based on pyro's perferred note structure. It will prompt you for any needed information.".to_owned()) ,
|
||||||
"save projects" | "sp" | "save" | "s" => {println!("Command: save projects\nAliases: sp save\n\nThis command saves all project information to the ~/.config/pyro_pentest_tool/projects.conf file"); return;},
|
"save projects" | "sp" | "save" | "s" => lines.push(" save projects|| sp save||This command saves all project information to the ~/.config/pyro_pentest_tool/projects.conf file".to_owned()) ,
|
||||||
"import project" | "ip" | "import" => {println!("Command: import project\nAliases: ip, import\n\nThis command will impot an existing project and set up a new distrobox for the project if it is a current project."); return;},
|
"import project" | "ip" | "import" => lines.push(" import project|| ip, import||This command will impot an existing project and set up a new distrobox for the project if it is a current project.".to_owned()) ,
|
||||||
"remove project" | "rp" | "remove" | "rmp" => {println!("Command:remove project\nAliases:rp, remove, rmp\n\nThis command removes a project from the list of projects tracked by the pentest_tool, and will destroy its distrobox. It does not remove any directories used or created by the distrobox. Run this after the report is written."); return;},
|
"remove project" | "rp" | "remove" | "rmp" => lines.push("remove project||rp, remove, rmp||This command removes a project from the list of projects tracked by the pentest_tool, and will destroy its distrobox. It does not remove any directories used or created by the distrobox. Run this after the report is written.".to_owned()) ,
|
||||||
"show upcoming projects" | "sup" | "show upcoming" => {println!("Command:show upcoming projects\nAliases:sup, show upcoming\n\nThis command shows a list of upcoming projects. Use this to verify which project you want to promote when the project enters the active phase."); return;},
|
"show upcoming projects" | "sup" | "show upcoming" => lines.push("show upcoming projects||sup, show upcoming||This command shows a list of upcoming projects. Use this to verify which project you want to promote when the project enters the active phase.".to_owned()) ,
|
||||||
"promote project" | "pp" | "promote" => {println!("Command:promote project\nAliases:pp (ha), promote\n\nThis command promotes an upcoming project to a current project. It will copy the folders that were created over to the current project space and set up a new distrobox for the project."); return;},
|
"promote project" | "pp" | "promote" => lines.push("promote project||pp (ha), promote||This command promotes an upcoming project to a current project. It will copy the folders that were created over to the current project space and set up a new distrobox for the project.".to_owned()) ,
|
||||||
"new terminal" | "enter" | "enter terminal" | "nt" | "et" => {println!("Command:new terminal\nAliases:enter, enter terminal, nt, et\n\nThis command spawns a new terminal window in the active project's distrobox. Use this to interact with your project's distrobox."); return;},
|
"new terminal" | "enter" | "enter terminal" | "nt" | "et" => lines.push("new terminal||enter, enter terminal, nt, et||This command spawns a new terminal window in the active project's distrobox. Use this to interact with your project's distrobox.".to_owned()) ,
|
||||||
"inline terminal" | "it" | "enter inline" | "ei" => {println!("Command:inline terminal\nAliases:it enter, inline, ei\n\nThis command spawns a terminal in this window using the current active project's distrobox"); return;},
|
"inline terminal" | "it" | "enter inline" | "ei" => lines.push("inline terminal||it enter, inline, ei||This command spawns a terminal in this window using the current active project's distrobox".to_owned()) ,
|
||||||
"cobalt strike" | "cs" => {println!("Command:cobalt strike\nAliases:cs\n\nThis command opens cobalt strike in the active project's distrobox, and spins it off as a new thread to ensure it doesn't block the rest of this tools operation. NOTE the cobalt strike window will need to be closed before this tool exits sucessfully."); return;},
|
"cobalt strike" | "cs" => lines.push("cobalt strike||cs||This command opens cobalt strike in the active project's distrobox, and spins it off as a new thread to ensure it doesn't block the rest of this tools operation. NOTE the cobalt strike window will need to be closed before this tool exits sucessfully.".to_owned()) ,
|
||||||
"recreate distrobox" | "rdb" | "ndb" | "new distrobox" => {println!("Command:recreate distrobox\nAliases:rdb, ndb, new distrobox\n\nThis command destroyes the existing distrobox for the currently active project, and clones a new one based on the current state of the template distrobox."); return;},
|
"recreate distrobox" | "rdb" | "ndb" | "new distrobox" => lines.push("recreate distrobox||rdb, ndb, new distrobox||This command destroyes the existing distrobox for the currently active project, and clones a new one based on the current state of the template distrobox.".to_owned()) ,
|
||||||
"generate userpass" | "userpass" | "gup" | "up" => {println!("Command:generate userpass\nAliases:userpass, gup, up\n\nThis command generates a userpass file based on the active project's notes. The file will be in the username:password format."); return;},
|
"generate userpass" | "userpass" | "gup" | "up" => lines.push("generate userpass||userpass, gup, up||This command generates a userpass file based on the active project's notes. The file will be in the username:password format.".to_owned()) ,
|
||||||
"inital enum" | "ie" | "enum" => {println!("Command:initial enum\nAliases:ie, enum\n\nThis command runs the initial enum script on a nessus csv and saves the output to the active project's notes in the host_notes.md file."); return;},
|
"inital enum" | "ie" | "enum" => lines.push("initial enum||ie, enum||This command runs the initial enum script on a nessus csv and saves the output to the active project's notes in the host_notes.md file.".to_owned()) ,
|
||||||
"build attack notes" | "ban" | "attack notes" | "hn" => {println!("Command:build attack notes\nAliases:ban, attack notes\n\nThis command builds the active project's attack note based on the active project's host notes (for external tests). It is expected that you'd run the initial enum command, then manually fill out the enumeration talbes with correct service names and ports."); return;},
|
"build attack notes" | "ban" | "attack notes" | "hn" => lines.push("build attack notes||ban, attack notes||This command builds the active project's attack note based on the active project's host notes (for external tests). It is expected that you'd run the initial enum command, then manually fill out the enumeration talbes with correct service names and ports.".to_owned()) ,
|
||||||
"host discovery" | "build host discovery" | "hd" | "bhd" => {println!("Command:host discovery\nAliases:build host discovery, hd, bhd\n\nThis command prints the host discovery ping command for the active project, based on the scope table in the general.md notes file."); return;},
|
"host discovery" | "build host discovery" | "hd" | "bhd" => lines.push("host discovery||build host discovery, hd, bhd||This command prints the host discovery ping command for the active project, based on the scope table in the general.md notes file.".to_owned()) ,
|
||||||
"cobaltstrike port scan" | "cs port scan" | "csps" => {println!("Command:port scan\nAliases:cs port scan, cobaltstrike port scan, csps, ps (tell your cat I said that)\n\nThis command prints the cobalt strike portscan command based on the active project's scope table in the general.md notes file"); return;},
|
"cobaltstrike port scan" | "cs port scan" | "csps" => lines.push("port scan||cs port scan, cobaltstrike port scan, csps, ps (tell your cat I said that)||This command prints the cobalt strike portscan command based on the active project's scope table in the general.md notes file".to_owned()) ,
|
||||||
"parse port scan" | "pps" | "parse scan" => {println!("Command:parse port scan\nAliases:pps, parse scan\n\nThis commmand parses a cobalt strike portscan TSV and saves interesting hoests to files to the active project's files folder. The host files are designated with the service that was detected that might be interesting. Use this to generate target lists for specific protocols."); return;},
|
"parse port scan" | "pps" | "parse scan" => lines.push("parse port scan||pps, parse scan||This commmand parses a cobalt strike portscan TSV and saves interesting hoests to files to the active project's files folder. The host files are designated with the service that was detected that might be interesting. Use this to generate target lists for specific protocols.".to_owned()) ,
|
||||||
"stop boxes" | "stop distroboxes" | "sdb" => {println!("Command:stop boxes\nAliases:stop distroboxes, sdb\n\nThis command stops all distroboxes for the tracked projects. Note if the distrobox isn't running you will see errors in the console, you can safely ignore these."); return;},
|
"stop boxes" | "stop distroboxes" | "sdb" => lines.push("stop boxes||stop distroboxes, sdb||This command stops all distroboxes for the tracked projects. Note if the distrobox isn't running you will see errors in the console, you can safely ignore these.".to_owned()) ,
|
||||||
"password spray" | "pass spray" | "pas" => {println!("Command:password spray\nAliases:pass spray, pas\n\nThis command iterates through the password spray note file and print the command to perform the spray, waiting the proper observation window beteen commands. It prompts you to save if needed. NOTE this will block execution for the rest of the program until it is either finished, or you save and exit the password spray function. I'm working on making this better."); return;},
|
"password spray" | "pass spray" | "pas" => lines.push("password spray||pass spray, pas||This command iterates through the password spray note file and print the command to perform the spray, waiting the proper observation window beteen commands. It prompts you to save if needed. NOTE this will block execution for the rest of the program until it is either finished, or you save and exit the password spray function. I'm working on making this better.".to_owned()) ,
|
||||||
"bloodhound" | "bh" => {println!("Command:bloodhound\nAliases:bh\n\nThis command launches bloodhound in the active project's distrobox. It will automatically start neo4j before staring bloodhound."); return;},
|
"bloodhound" | "bh" => lines.push("bloodhound||bh||This command launches bloodhound in the active project's distrobox. It will automatically start neo4j before staring bloodhound.".to_owned()) ,
|
||||||
"parse gather contacts" | "pgc" | "parse contacts" | "pc" => {println!("Command:parse gather contacts\nAliases:pgc, parse contacts, pc\n\nThis command parses output saved from the gather contacts burpsuite extension."); return;},
|
"parse gather contacts" | "pgc" | "parse contacts" | "pc" => lines.push("parse gather contacts||pgc, parse contacts, pc||This command parses output saved from the gather contacts burpsuite extension.".to_owned()) ,
|
||||||
"prune distroboxes" | "pdb" | "prune" => {println!("Command:prune distroboxes\nAliases:pdb, prune\n\nthis command prunes distroboxes for all projects that are not being tracked by this tool (frees up system storage). This will start all the currently acvtive distorboxes to ensure they don't get pruned, and then will delete all the not-started distrobox volumes and resources."); return;},
|
"prune distroboxes" | "pdb" | "prune" => lines.push("prune distroboxes||pdb, prune||this command prunes distroboxes for all projects that are not being tracked by this tool (frees up system storage). This will start all the currently acvtive distorboxes to ensure they don't get pruned, and then will delete all the not-started distrobox volumes and resources.".to_owned()) ,
|
||||||
"clear" | "clear screen" | "cls" => {println!("Command:clear\nAliases:clear screen, cls\n\nThis command clears the screen of command output."); return},
|
"clear" | "clear screen" | "cls" => lines.push("clear||clear screen, cls||This command clears the screen of command output.".to_owned()) ,
|
||||||
"exit" => {println!("Command:exit\nAliases:(none)\nThis command exits the pentest_tool, it will save all project infomation, and wait for all threads to re-join the main thread before exiting."); return;},
|
"exit" => lines.push("exit||(none)\nThis command exits the pentest_tool, it will save all project infomation, and wait for all threads to re-join the main thread before exiting.".to_owned()) ,
|
||||||
"settings" => {println!("\n\nThe settings file is located at ~/.config/pyro_pentest_tool/conf\n\nThe format is setting_name:setting_value.\n\nNeeded settings are\n project_files - the place to store current project files folders\n\n projtect_notes - the place to store current project notes\n\n tools_folder - the place to store custom tools like those downloaded from github\n\n upcoming_files - the place to store upcoming project files folders\n\n upcoming_notes - The place to store upcoming project note files\n\n box_template - the name of the distrobox you want to clone for project boxes\n\n terminal - the command you use to launch a terminal, while running a specific command: Ex: konsole -e \n\n cracking_rig - the user and host you use for a personal cracking rig in the openssh formating: Ex: pyro@cracking_rig or pyro@192.168.1.101 if you do not have a cracking rig the default is @n\n\n rockyou_location - the location on the cracking rig for the rockyou.txt file default is n\n\n rule_location - the location on the cracking rig for the one rule to rule them all file. Default is n\n\n pass_file - this is the location where you store your standard password spray file. If you do not have a custom one this tool provides one. The default is ~/.config/pyro_pentest_tool/passwordspary.md\n\n fingerprint - this is whether you want fingerprint authentication within your distroboxes, takes y/n\n\n vault_name - the name of your obsidian vault, default is notes\n\n"); return;},
|
"settings" => lines.push("||The settings file is located at ~/.config/pyro_pentest_tool/conf||The format is setting_name:setting_value.||Needed settings are\n project_files - the place to store current project files folders|| projtect_notes - the place to store current project notes|| tools_folder - the place to store custom tools like those downloaded from github|| upcoming_files - the place to store upcoming project files folders|| upcoming_notes - The place to store upcoming project note files|| box_template - the name of the distrobox you want to clone for project boxes|| terminal - the command you use to launch a terminal, while running a specific Ex: konsole -e || cracking_rig - the user and host you use for a personal cracking rig in the openssh formating: Ex: pyro@cracking_rig or pyro@192.168.1.101 if you do not have a cracking rig the default is @n|| rockyou_location - the location on the cracking rig for the rockyou.txt file default is n|| rule_location - the location on the cracking rig for the one rule to rule them all file. Default is n|| pass_file - this is the location where you store your standard password spray file. If you do not have a custom one this tool provides one. The default is ~/.config/pyro_pentest_tool/passwordspary.md|| fingerprint - this is whether you want fingerprint authentication within your distroboxes, takes y/n|| vault_name - the name of your obsidian vault, default is notes||".to_owned()) ,
|
||||||
"parse normal nmap file" | "pnnf" | "parse nmap" | "pn" => {println!("Command:parse normal nmap file\nAliases: pnnf, parse nmap, pn\n\nThis command parses the normal output of an nmap scan (like if you just tee'd or >'d it to a file) and outputs in host:port or int the coablt strike tsv format. It will attempt to find the file within the active project's files folder, and if it can't find the file it will prompt you for input.")},
|
"parse normal nmap file" | "pnnf" | "parse nmap" | "pn" => lines.push("parse normal nmap file|| pnnf, parse nmap, pn||This command parses the normal output of an nmap scan (like if you just tee'd or >'d it to a file) and outputs in host:port or int the coablt strike tsv format. It will attempt to find the file within the active project's files folder, and if it can't find the file it will prompt you for input.".to_owned()),
|
||||||
"sharpersist command" | "spc" | "sharp scheduled task" | "sst" => {println!("Command: sharpersist command\nAliases: spc, sharp scheduled task, sst\n\nThis comand prints the commands to run to use sharpersist.exe to create a scheduled task that runs hourly called FRPersist.")},
|
"sharpersist command" | "spc" | "sharp scheduled task" | "sst" => lines.push(" sharpersist command|| spc, sharp scheduled task, sst||This comand prints the commands to run to use sharpersist.exe to create a scheduled task that runs hourly called FRPersist.".to_owned()),
|
||||||
"port scan" | "ps" | "nmap" | "nmap scan" | "ns" | "nm" => {println!("Command: port scan\nAliases: ps, nmap, nmap scan, ns, nm\n\nThis command runs an nmap scan against the scope in the active projects notes, and saves the output.")},
|
"port scan" | "ps" | "nmap" | "nmap scan" | "ns" | "nm" => lines.push(" port scan|| ps, nmap, nmap scan, ns, nm||This command runs an nmap scan against the scope in the active projects notes, and saves the output.".to_owned()),
|
||||||
"show scope" | "ss" | "show s" | "s s" | "scope" => {println!("Command:show scope\nAliases:ss, show s, s s, scope\n\nThis command displays the current project's scope as just the hosts in the scope table in your notes.")},
|
"show scope" | "ss" | "show s" | "s s" | "scope" => lines.push("show scope||ss, show s, s s, scope||This command displays the current project's scope as just the hosts in the scope table in your notes.".to_owned()),
|
||||||
"port scan command" | "psc" | "nmap command" | "nmc" => {println!("command:port scan command\nAliases:psc,nmap command, nmc\n\nThis command will print the nmap command to manually run a scan to the terminal so you can copy paste it.")},
|
"port scan command" | "psc" | "nmap command" | "nmc" => lines.push("port scan command||psc,nmap command, nmc||This command will print the nmap command to manually run a scan to the terminal so you can copy paste it.".to_owned()),
|
||||||
"update git tools" | "ugt" | "update git" | "ug" => {println!("Command: update git tools\nAliases: update git, ugt, ug\n\nThis command attempts to update the git tools in your tools directory, it will attempt to update every directory as a git project. If the directory is not a git project it should just error out and continue to the next one.")},
|
"update git tools" | "ugt" | "update git" | "ug" => lines.push(" update git tools|| update git, ugt, ug||This command attempts to update the git tools in your tools directory, it will attempt to update every directory as a git project. If the directory is not a git project it should just error out and continue to the next one.".to_owned()),
|
||||||
"dns records" | "dr" => {println!("Command:dnsrecords\nAliases:dr\n\nThis command will run dns recon inside of your distrobox and save the results to your enumeration notes.")},
|
"dns records" | "dr" => lines.push("dnsrecords||dr||This command will run dns recon inside of your distrobox and save the results to your enumeration notes.".to_owned()),
|
||||||
"brute force subdomains"| "bsd" | "gobuster dns" | "gd" => {println!("Command:brute force subdomains\nAliases:bsd,gobuster dns, gd\n\nthis command will run gobuster in the project's distrobox and save the results to your notes.")},
|
"brute force subdomains"| "bsd" | "gobuster dns" | "gd" => lines.push("brute force subdomains||bsd,gobuster dns, gd||this command will run gobuster in the project's distrobox and save the results to your notes.".to_owned()),
|
||||||
"dns enumeration" | "de" | "all dns stuff" | "ads" | "dns stuff" | "ds" => {println!("Command:dns enumeration\nAliases:de, all dns stuff, ads, dns stuff, de\n\nThis command will perform both dns record enumeration with dnsrecon, and subdomain enumeration using gobster inside of your distrobox and save the output to your notes.")},
|
"dns enumeration" | "de" | "all dns stuff" | "ads" | "dns stuff" | "ds" => lines.push("dns enumeration||de, all dns stuff, ads, dns stuff, de||This command will perform both dns record enumeration with dnsrecon, and subdomain enumeration using gobster inside of your distrobox and save the output to your notes.".to_owned()),
|
||||||
"modify tool config" | "mtc" => {println!("Command: modify tool config\nAliases: mtc\n\nThis command lets you modify the tool's configuration.");}
|
"modify tool config" | "mtc" => lines.push("modify tool config|| mtc||This command lets you modify the tool's configuration.".to_owned()),
|
||||||
|
"separate work and personal projects" | "swpp" | "separate projects" | "seppro" => lines.push("separate work and personal||swpp, separate projects, seppro||This command lets you separate work and personal projects into separate config files. This allows you to load personal and work projects separately!".to_owned()),
|
||||||
|
"switch to personal projects" | "switch personal" => lines.push("switch to personal projects||switch personal||This command lets you switch which config file is loaded to the personal config file.".to_owned()),
|
||||||
|
"switch to work projects" | "switch work" => lines.push("switch to work projects||switch work||This command lets you switch to load the work projects.".to_owned()),
|
||||||
_ => ()
|
_ => ()
|
||||||
}
|
}
|
||||||
|
tableize(lines);
|
||||||
|
}
|
||||||
|
else{
|
||||||
|
println!("Welcom to Pyro's pentest command line!");
|
||||||
|
println!("the pentest_tool uses a configuration file to store your settings. This configuration file is located at ~/.config/pyro_pentest_tool/conf.\nYou can modify this file, but do so cautiously, incorrect formatting will cause this program to have a bruh moment.\nThe correct format is setting_name:setting_value\nExample:\nprojecT_files:/var/home/pyro/pentests/current");
|
||||||
|
println!("for help configuring the settings file run help settings");
|
||||||
|
let lines = vec!["command||aliases".to_owned(),
|
||||||
|
"menu||main menu, mm".to_owned(),
|
||||||
|
"list projects||lp, listp, list p".to_owned(),
|
||||||
|
"switch project||sp, switch p, switchp".to_owned(),
|
||||||
|
"show active project||show active, sa, show a".to_owned(),
|
||||||
|
"create new project||cnp, new project, np".to_owned(),
|
||||||
|
"save projects||sp, save, s".to_owned(),
|
||||||
|
"import project||ip, import".to_owned(),
|
||||||
|
"remove project||rp, remove, rmp".to_owned(),
|
||||||
|
"show upcoming project||sup, show upcoming".to_owned(),
|
||||||
|
"promote project||pp, promote".to_owned(),
|
||||||
|
"new terminal||enter, enter terminal, nt, et".to_owned(),
|
||||||
|
"inline terminal||it, enter inline, ei".to_owned(),
|
||||||
|
"cobalt strike||cs".to_owned(),
|
||||||
|
"recreate distrobox||rdb, ndb, new distrobox".to_owned(),
|
||||||
|
"generate userpass||userpass, gup, up".to_owned(),
|
||||||
|
"inital enum||ie, enum".to_owned(),
|
||||||
|
"host discovery ||build host discovery, hd, bhd".to_owned(),
|
||||||
|
"port scan||cs port scan, cobaltstrike port scan, csps, ps".to_owned(),
|
||||||
|
"parse port scan ||pps, parse scan".to_owned(),
|
||||||
|
"stop boxes||stop distroboxes, sdb".to_owned(),
|
||||||
|
"password spray||pass spray, pas".to_owned(),
|
||||||
|
"bloodhound||bh".to_owned(),
|
||||||
|
"parse gather contacts||pgc, parse contacts, pc".to_owned(),
|
||||||
|
"prune distroboxes||pdb, prune".to_owned(),
|
||||||
|
"clear||clear screen, cls".to_owned(),
|
||||||
|
"parse nomral nmap file||pnnf, parse nmap, pn".to_owned(),
|
||||||
|
"show scope||ss, show s, s s, scope".to_owned(),
|
||||||
|
"sharpersist command||spc, sharp scheduled task".to_owned(),
|
||||||
|
"port scan||ps, nmap, nmap scan, ns, nm".to_owned(),
|
||||||
|
"port scan command||psc, nmap command, nmc".to_owned(),
|
||||||
|
"update git tools||ugt, update git, ug".to_owned(),
|
||||||
|
"dns records||dr".to_owned(),
|
||||||
|
"brute force subdomain||bsd, gobuster dns, gd".to_owned(),
|
||||||
|
"dns enumeration||de, all dns stuff, ads, dns stuff, ds".to_owned(),
|
||||||
|
"modify tool config||mtc".to_owned(),
|
||||||
|
"separate work and personal projects||swpp, separate projects, seppro".to_owned(),
|
||||||
|
"switch to personal projects||switch personal".to_owned(),
|
||||||
|
"switch to work projects||switch work".to_owned(),
|
||||||
|
"help||?, -h".to_owned()];
|
||||||
|
println!("available commands:");
|
||||||
|
tableize(lines);
|
||||||
}
|
}
|
||||||
println!("Welcom to Pyro's pentest command line!");
|
|
||||||
println!("the pentest_tool uses a configuration file to store your settings. This configuration file is located at ~/.config/pyro_pentest_tool/conf.\nYou can modify this file, but do so cautiously, incorrect formatting will cause this program to have a bruh moment.\nThe correct format is setting_name:setting_value\nExample:\nprojecT_files:/var/home/pyro/pentests/current");
|
|
||||||
println!("for help configuring the settings file run help settings");
|
|
||||||
println!("available commands: name | aliases | ...");
|
|
||||||
print!("
|
|
||||||
menu | main menu | mm
|
|
||||||
list projects | lp | listp | list p
|
|
||||||
switch project | sp | switch p | switchp
|
|
||||||
show active project | show active | sa | show a
|
|
||||||
create new project | cnp | new project | np
|
|
||||||
save projects | sp | save | s
|
|
||||||
import project | ip | import
|
|
||||||
remove project | rp | remove | rmp
|
|
||||||
show upcoming project | sup | show upcoming
|
|
||||||
promote project | pp | promote
|
|
||||||
new terminal | enter | enter terminal | nt | et
|
|
||||||
inline terminal | it | enter inline | ei
|
|
||||||
cobalt strike | cs
|
|
||||||
recreate distrobox | rdb | ndb | new distrobox
|
|
||||||
generate userpass | userpass | gup | up
|
|
||||||
inital enum | ie | enum
|
|
||||||
host discovery | build host discovery | hd | bhd
|
|
||||||
port scan | cs port scan | cobaltstrike port scan | csps | ps
|
|
||||||
parse port scan | pps | parse scan
|
|
||||||
stop boxes | stop distroboxes | sdb
|
|
||||||
password spray | pass spray | pas
|
|
||||||
bloodhound | bh
|
|
||||||
parse gather contacts | pgc | parse contacts | pc
|
|
||||||
prune distroboxes | pdb | prune
|
|
||||||
clear | clear screen | cls
|
|
||||||
parse nomral nmap file | pnnf | parse nmap | pn
|
|
||||||
show scope | ss | show s | s s | scope
|
|
||||||
sharpersist command | spc | sharp scheduled task
|
|
||||||
port scan | ps | nmap | nmap scan | ns | nm
|
|
||||||
port scan command | psc | nmap command | nmc
|
|
||||||
update git tools | ugt | update git | ug
|
|
||||||
dns records | dr
|
|
||||||
brute force subdomains| bsd | gobuster dns | gd
|
|
||||||
dns enumeration | de | all dns stuff | ads | dns stuff | ds
|
|
||||||
modify tool config | mtc
|
|
||||||
help | ? | -h
|
|
||||||
")
|
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn get_active_project(projects: &Vec<Project>) -> Option<&Project>{
|
pub fn get_active_project(projects: &Vec<Project>) -> Option<&Project>{
|
||||||
@@ -237,6 +254,9 @@ pub fn run_command(cmd: String,
|
|||||||
"dns squatting scan" | "dnstwist" | "dss" => {let twist_handle = enumeration::dns_squatting(&active_project, None, true); return twist_handle},
|
"dns squatting scan" | "dnstwist" | "dss" => {let twist_handle = enumeration::dns_squatting(&active_project, None, true); return twist_handle},
|
||||||
"print report information" | "pri" => {info_controls::print_report_information(&active_project); return None;},
|
"print report information" | "pri" => {info_controls::print_report_information(&active_project); return None;},
|
||||||
"modify tool config" | "mtc" => {configuration::generate_tool_config(&config_path); return None;},
|
"modify tool config" | "mtc" => {configuration::generate_tool_config(&config_path); return None;},
|
||||||
|
"separate work and personal projects" | "swpp" | "separate projects" | "seppro" => {project_controls::separate_personal_work_projects(&config_path); return None;}
|
||||||
|
"switch to personal projects" | "switch personal" => {let mut project_load_res = project_controls::swith_to_personal(&config_path); if project_load_res.is_some(){projects.clear();for project in project_load_res.unwrap(){projects.push(project);}}; return None;},
|
||||||
|
"switch to work projects" | "switch work" => {let mut project_load_res = project_controls::swith_to_work(&config_path); if project_load_res.is_some(){projects.clear();for project in project_load_res.unwrap(){projects.push(project);}}; return None;}
|
||||||
_ => {help(None); println!("\n\n unknown command."); return None;}
|
_ => {help(None); println!("\n\n unknown command."); return None;}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -260,7 +280,7 @@ pub fn cli(interactive: bool,
|
|||||||
upcoming_notes: &PathBuf,
|
upcoming_notes: &PathBuf,
|
||||||
password_spray_file: &PathBuf,
|
password_spray_file: &PathBuf,
|
||||||
fingerprint: bool,
|
fingerprint: bool,
|
||||||
vault_name: String) {
|
vault_name: String,) {
|
||||||
let mut threads = Vec::new();
|
let mut threads = Vec::new();
|
||||||
if interactive{
|
if interactive{
|
||||||
let mut loopize = true;
|
let mut loopize = true;
|
||||||
@@ -333,7 +353,8 @@ for help enter help or ?. for information about a specific command enter help (c
|
|||||||
|
|
||||||
|
|
||||||
", active_project.customer.green(), active_project.project_name.green(), active_project.stage.green(), active_project.files_folder.display().to_string().green(), active_project.notes_folder.display().to_string().green(), active_project.boxname.green(), "coming soon".red());
|
", active_project.customer.green(), active_project.project_name.green(), active_project.stage.green(), active_project.files_folder.display().to_string().green(), active_project.notes_folder.display().to_string().green(), active_project.boxname.green(), "coming soon".red());
|
||||||
let prompt = format!("\n{}:{}\nCommand?", active_project.customer.green(), active_project.project_name.green());
|
println!("{}", config_path.display());
|
||||||
|
let prompt = format!("\n{}:{}\nCommand?", active_project.customer.custom_color((255,165,0)), active_project.project_name.custom_color((255,165,0)));
|
||||||
let command = get_user_input(&prompt);
|
let command = get_user_input(&prompt);
|
||||||
match command.as_str(){
|
match command.as_str(){
|
||||||
"exit" => loopize = false,
|
"exit" => loopize = false,
|
||||||
@@ -341,7 +362,8 @@ for help enter help or ?. for information about a specific command enter help (c
|
|||||||
"print banner" | "banner" => print_banner(banner),
|
"print banner" | "banner" => print_banner(banner),
|
||||||
"clear" | "clear screen" | "cls" => {clear().unwrap(); print_banner(banner);},
|
"clear" | "clear screen" | "cls" => {clear().unwrap(); print_banner(banner);},
|
||||||
"list threads" | "threads" | "lst" => println!("There are {} threads still running.", threads.len()),
|
"list threads" | "threads" | "lst" => println!("There are {} threads still running.", threads.len()),
|
||||||
"info" => println!("{}", current_information),
|
"info" => println!("{}", current_information),
|
||||||
|
"test_table" => {let mut lines = Vec::new(); lines.push("column1||column2||column3||column4".to_owned()); lines.push("thing1||thing2||thing3||thing4".to_owned()); lines.push("ttttttttttttttttthing5||thing6||thing7||thing8".to_owned()); tableize(lines);}
|
||||||
_ => {let thread_option = run_command(command, &mut projects, config_path.clone(), base_files, base_notes, tools_dir, boxtemplate.clone(), terminal.clone(), cracking_rig.clone(), rockyou.clone(), rule.clone(), upcoming_files, upcoming_notes, password_spray_file, fingerprint, vault_name.clone()); if thread_option.is_some(){threads.push(thread_option.unwrap())}},
|
_ => {let thread_option = run_command(command, &mut projects, config_path.clone(), base_files, base_notes, tools_dir, boxtemplate.clone(), terminal.clone(), cracking_rig.clone(), rockyou.clone(), rule.clone(), upcoming_files, upcoming_notes, password_spray_file, fingerprint, vault_name.clone()); if thread_option.is_some(){threads.push(thread_option.unwrap())}},
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -350,6 +372,36 @@ for help enter help or ?. for information about a specific command enter help (c
|
|||||||
box_controls::stop_all_boxes(&projects);
|
box_controls::stop_all_boxes(&projects);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
print_informational("saving workspace projects...");
|
||||||
|
let mut workspace_config_path = config_path.clone();
|
||||||
|
workspace_config_path.pop();
|
||||||
|
let mut project_conf_path = config_path.clone();
|
||||||
|
project_conf_path.pop();
|
||||||
|
project_conf_path.push("projects.conf");
|
||||||
|
if get_user_input("are your work projects currently loaded? (not yoru personal projects...)").to_lowercase().contains("y"){
|
||||||
|
workspace_config_path.push("projects.work");
|
||||||
|
}
|
||||||
|
else{
|
||||||
|
workspace_config_path.push("projects.personal");
|
||||||
|
}
|
||||||
|
let open_res = OpenOptions::new().create(true).write(true).open(workspace_config_path);
|
||||||
|
if open_res.is_err(){
|
||||||
|
print_error("error opeing workspace config file!", open_res.err().unwrap().to_string());
|
||||||
|
}
|
||||||
|
else{
|
||||||
|
let mut workspace_config_file = open_res.unwrap();
|
||||||
|
let projects_read_res = read_to_string(project_conf_path);
|
||||||
|
if projects_read_res.is_ok(){
|
||||||
|
let project_string = projects_read_res.unwrap();
|
||||||
|
let write_res = write!(workspace_config_file, "{}", project_string);
|
||||||
|
if write_res.is_err(){
|
||||||
|
print_error("error writing workspace config file!", write_res.err().unwrap().to_string());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else{
|
||||||
|
print_error("error reading projects config file!", projects_read_res.err().unwrap().to_string());
|
||||||
|
}
|
||||||
|
}
|
||||||
if threads.len() > 0{
|
if threads.len() > 0{
|
||||||
println!("closing threads...");
|
println!("closing threads...");
|
||||||
println!("note this will hang until all threads have completed");
|
println!("note this will hang until all threads have completed");
|
||||||
|
|||||||
@@ -9,6 +9,9 @@ use dns_lookup::lookup_host;
|
|||||||
use crate::get_user_input;
|
use crate::get_user_input;
|
||||||
use crate::Project;
|
use crate::Project;
|
||||||
use crate::open_append;
|
use crate::open_append;
|
||||||
|
use crate::print_error;
|
||||||
|
use crate::print_success;
|
||||||
|
use crate::print_informational;
|
||||||
|
|
||||||
#[allow(unused)]
|
#[allow(unused)]
|
||||||
pub fn run_dns_enumeration(project: &Project, given_domains: Option<&Vec<String>>, standalone: bool) -> Option<JoinHandle<()>>{
|
pub fn run_dns_enumeration(project: &Project, given_domains: Option<&Vec<String>>, standalone: bool) -> Option<JoinHandle<()>>{
|
||||||
@@ -66,6 +69,7 @@ pub fn run_dns_enumeration(project: &Project, given_domains: Option<&Vec<String>
|
|||||||
println!("{}", error.to_string().red());
|
println!("{}", error.to_string().red());
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
print_success("DNS Enumeration Done, Writing to file...");
|
||||||
let output_string = output_string_res.unwrap();
|
let output_string = output_string_res.unwrap();
|
||||||
let lines: Vec<&str> = output_string.split("\n").collect();
|
let lines: Vec<&str> = output_string.split("\n").collect();
|
||||||
let mut out_data = String::new();
|
let mut out_data = String::new();
|
||||||
@@ -110,8 +114,8 @@ pub fn run_dns_enumeration(project: &Project, given_domains: Option<&Vec<String>
|
|||||||
if standalone{
|
if standalone{
|
||||||
out_data.push_str("\n---\n");
|
out_data.push_str("\n---\n");
|
||||||
}
|
}
|
||||||
println!("From DNS Enumeration Thread: Finished gathering data for {} writing to notes...", domain);
|
|
||||||
write!(enumeration_file, "{}", &out_data).unwrap();
|
write!(enumeration_file, "{}", &out_data).unwrap();
|
||||||
|
print_success("DNS Records: Gathered | Notes: Written | DNS Record Thread OUT!");
|
||||||
let remove_res = remove_file("dns_temp.csv");
|
let remove_res = remove_file("dns_temp.csv");
|
||||||
if remove_res.is_err(){
|
if remove_res.is_err(){
|
||||||
println!("From DNS Enumeration Thread: error removing temporay data file!");
|
println!("From DNS Enumeration Thread: error removing temporay data file!");
|
||||||
@@ -129,8 +133,7 @@ pub fn bruteforce_subs(project: &Project, given_domains: Option<&Vec<String>>, g
|
|||||||
let enumeration_file_res = OpenOptions::new().append(true).create(true).open(enumeration_path);
|
let enumeration_file_res = OpenOptions::new().append(true).create(true).open(enumeration_path);
|
||||||
if enumeration_file_res.is_err(){
|
if enumeration_file_res.is_err(){
|
||||||
let error = enumeration_file_res.err().unwrap();
|
let error = enumeration_file_res.err().unwrap();
|
||||||
println!("{}","error opening enumeration notes file!".red());
|
print_error("FROM GOBUSTER THREAD: error opening enumeration notes file!", error.to_string());
|
||||||
println!("{}", error.to_string().red());
|
|
||||||
return None;
|
return None;
|
||||||
}
|
}
|
||||||
let mut enumeration_file = enumeration_file_res.unwrap();
|
let mut enumeration_file = enumeration_file_res.unwrap();
|
||||||
@@ -187,10 +190,10 @@ pub fn bruteforce_subs(project: &Project, given_domains: Option<&Vec<String>>, g
|
|||||||
println!("{}", error.to_string().red());
|
println!("{}", error.to_string().red());
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
println!("sleeping for 10 seconds to allow for sudo password input.");
|
print_informational("sleeping for 10 seconds to allow for sudo password input.");
|
||||||
sleep(Duration::from_secs(10));
|
sleep(Duration::from_secs(10));
|
||||||
let gobuser_output = gobuster_cmd_res.unwrap().stdout;
|
let gobuser_output = gobuster_cmd_res.unwrap().stdout;
|
||||||
println!("From Gobuster Thread: Sudomain enumeration Done!");
|
print_success("Gobuster enumeration Done!");
|
||||||
let gobuster_string = String::from_utf8_lossy(&gobuser_output);
|
let gobuster_string = String::from_utf8_lossy(&gobuser_output);
|
||||||
let mut domain_names = Vec::new();
|
let mut domain_names = Vec::new();
|
||||||
let lines: Vec<&str> = gobuster_string.split("\n").collect();
|
let lines: Vec<&str> = gobuster_string.split("\n").collect();
|
||||||
@@ -224,6 +227,7 @@ pub fn bruteforce_subs(project: &Project, given_domains: Option<&Vec<String>>, g
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
write_res.unwrap();
|
write_res.unwrap();
|
||||||
|
print_success("Subdomains: Bruteforced | Enumeration notes: Written | Gobuster thread out!");
|
||||||
});
|
});
|
||||||
return Some(gobuster_thread);
|
return Some(gobuster_thread);
|
||||||
}
|
}
|
||||||
@@ -285,7 +289,7 @@ pub fn dns_squatting(project: &Project, given_domains: Option<&Vec<String>>, sta
|
|||||||
println!("{}", error.to_string().red());
|
println!("{}", error.to_string().red());
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
println!("sleeping for 10 seconds to allow for sudo password input.");
|
print_informational("sleeping for 10 seconds to get sudo password.");
|
||||||
sleep(Duration::from_secs(10));
|
sleep(Duration::from_secs(10));
|
||||||
let twist_output_vec = twist_output.unwrap().stdout;
|
let twist_output_vec = twist_output.unwrap().stdout;
|
||||||
let output_string = String::from_utf8_lossy(&twist_output_vec);
|
let output_string = String::from_utf8_lossy(&twist_output_vec);
|
||||||
@@ -301,6 +305,7 @@ pub fn dns_squatting(project: &Project, given_domains: Option<&Vec<String>>, sta
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
print_success("Domains: Squatted | Notes: Written | DNSTwist thread OUT!");
|
||||||
return Some(squatting_thread);
|
return Some(squatting_thread);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -326,6 +331,7 @@ pub fn do_all_dns_enumeration(project: &Project) -> Option<JoinHandle<()>>{
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
let wordlist = get_user_input("path to wordlist for sub domain bruteforcing?");
|
let wordlist = get_user_input("path to wordlist for sub domain bruteforcing?");
|
||||||
|
print_informational("target data gathered. Spawning threads to do enumeration...");
|
||||||
let working_project = project.clone();
|
let working_project = project.clone();
|
||||||
let all_dns_handle = spawn(move ||{
|
let all_dns_handle = spawn(move ||{
|
||||||
let mut write_success = true;
|
let mut write_success = true;
|
||||||
@@ -357,6 +363,7 @@ pub fn do_all_dns_enumeration(project: &Project) -> Option<JoinHandle<()>>{
|
|||||||
}
|
}
|
||||||
write!(enumeration_file, "\n---\n").unwrap();
|
write!(enumeration_file, "\n---\n").unwrap();
|
||||||
}
|
}
|
||||||
|
print_success("All DNS Enum threads finished, notes have been written. DNS Enumeration Thread OUT!");
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
return Some(all_dns_handle);
|
return Some(all_dns_handle);
|
||||||
|
|||||||
@@ -1,7 +1,8 @@
|
|||||||
use std::collections::HashMap;
|
use std::collections::HashMap;
|
||||||
use std::fs::{File, create_dir_all, remove_dir_all};
|
use std::fs::{create_dir_all, remove_dir_all, File};
|
||||||
use std::io::Read;
|
use std::io::Read;
|
||||||
use std::io::Write;
|
use std::io::Write;
|
||||||
|
use std::env;
|
||||||
use std::io::copy;
|
use std::io::copy;
|
||||||
use std::process::Command;
|
use std::process::Command;
|
||||||
use std::time::Duration;
|
use std::time::Duration;
|
||||||
@@ -11,7 +12,7 @@ use std::thread;
|
|||||||
use std::process::exit;
|
use std::process::exit;
|
||||||
use colored::Colorize;
|
use colored::Colorize;
|
||||||
|
|
||||||
use crate::get_user_input;
|
use crate::{get_user_input, print_informational, print_success};
|
||||||
|
|
||||||
#[allow(unused)]
|
#[allow(unused)]
|
||||||
pub fn install(config_path: &PathBuf){
|
pub fn install(config_path: &PathBuf){
|
||||||
@@ -221,7 +222,7 @@ vault_name:{}"
|
|||||||
exit(1);
|
exit(1);
|
||||||
}
|
}
|
||||||
let mut project_conf_file = project_conf_res.unwrap();
|
let mut project_conf_file = project_conf_res.unwrap();
|
||||||
let project_write_res = write!(project_conf_file, "customer:name:notes:files:active:time:box_name:stage\ndefault:default:{}:{}:yes:{}:current", ¤t_notes.display(), ¤t_projects.display(), &template_box_name);
|
let project_write_res = write!(project_conf_file, "Projects Config File");
|
||||||
if project_write_res.is_err(){
|
if project_write_res.is_err(){
|
||||||
println!("error writing project config file.");
|
println!("error writing project config file.");
|
||||||
exit(1);
|
exit(1);
|
||||||
@@ -270,6 +271,35 @@ vault_name:{}"
|
|||||||
exit(1);
|
exit(1);
|
||||||
}
|
}
|
||||||
password_write_res.unwrap();
|
password_write_res.unwrap();
|
||||||
println!("install completed successfully!");
|
let current_path_res = env::current_exe();
|
||||||
println!("re-run this to launch!");
|
let mut copied_to_path = false;
|
||||||
|
if current_path_res.is_ok(){
|
||||||
|
let current_path = current_path_res.unwrap();
|
||||||
|
let mut new_path = PathBuf::from("/usr/bin/pentest_tool");
|
||||||
|
print_informational("We ar going to try and copy this executable to a location on your $PATH");
|
||||||
|
print_informational("the default location is /usr/bin/pentest_tool");
|
||||||
|
if get_user_input("is this ok?").contains("n"){
|
||||||
|
new_path.clear();
|
||||||
|
new_path.push(get_user_input("ooof, ok. Please enter where you'd like to save it on your $PATH"));
|
||||||
|
if !new_path.display().to_string().contains("pentest_tool"){
|
||||||
|
new_path.push("pentest_tool");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
let copy_cmd_res = Command::new("sudo").arg("cp").arg(current_path.display().to_string()).arg(new_path.display().to_string()).status();
|
||||||
|
if copy_cmd_res.is_ok(){
|
||||||
|
let copy_cmd_status = copy_cmd_res.unwrap();
|
||||||
|
if copy_cmd_status.success(){
|
||||||
|
copied_to_path = true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if !copied_to_path{
|
||||||
|
print_informational("we could not copy this executable to your path!");
|
||||||
|
print_informational("please copy this file to somewhere on your $PATH.");
|
||||||
|
print_informational("for example `cp pentest_tool /usr/bin/pentest_tool");
|
||||||
|
print_success("otherwise this tool is ready to go, you would just need to launch it from this folder.");
|
||||||
|
}
|
||||||
|
else{
|
||||||
|
print_success("install completed successfully!");
|
||||||
|
}
|
||||||
}
|
}
|
||||||
@@ -1,3 +1,4 @@
|
|||||||
|
use std::collections::HashMap;
|
||||||
use std::{io::stdin, path::PathBuf, process::Command};
|
use std::{io::stdin, path::PathBuf, process::Command};
|
||||||
use directories::UserDirs;
|
use directories::UserDirs;
|
||||||
use std::process::exit;
|
use std::process::exit;
|
||||||
@@ -29,8 +30,102 @@ mod enumeration;
|
|||||||
mod tool_controls;
|
mod tool_controls;
|
||||||
mod configuration;
|
mod configuration;
|
||||||
|
|
||||||
|
pub fn print_error(message: &str ,error: String){
|
||||||
|
println!("{}", message.red());
|
||||||
|
println!("{}", error.red());
|
||||||
|
}
|
||||||
|
|
||||||
|
pub fn print_success<T>(message: T) where T: AsRef<str> {
|
||||||
|
println!("{}", message.as_ref().green());
|
||||||
|
}
|
||||||
|
|
||||||
|
pub fn print_informational<T>(message: T) where T: AsRef<str>{
|
||||||
|
println!("{}", message.as_ref().custom_color((255,165,0)));
|
||||||
|
}
|
||||||
|
|
||||||
|
pub fn tableize(given_lines: Vec<String>) {
|
||||||
|
let column_count = given_lines[0].split("||").collect::<Vec<&str>>().len();
|
||||||
|
// the following code just adds a junk line in at index 1 because that gets eaten for some reason...
|
||||||
|
// I want to try to figure out why its getten eaten, but just needed to get it working for now.
|
||||||
|
let mut lines = Vec::new();
|
||||||
|
let mut junk_line = format!("{}", "junk||".repeat(column_count));
|
||||||
|
junk_line.pop();
|
||||||
|
junk_line.pop();
|
||||||
|
for line in given_lines{
|
||||||
|
lines.push(line);
|
||||||
|
}
|
||||||
|
lines.insert(1,junk_line);
|
||||||
|
// end of junk line logic.
|
||||||
|
let (terminal_width, _terminal_height) = term_size::dimensions().unwrap();
|
||||||
|
let mut column_sizes:HashMap<usize, usize> = HashMap::new();
|
||||||
|
for column_number in 0..column_count{
|
||||||
|
column_sizes.insert(column_number, 0);
|
||||||
|
}
|
||||||
|
let mut longest_column = 0;
|
||||||
|
for line in &lines{
|
||||||
|
let cells: Vec<&str> = line.split("||").collect();
|
||||||
|
let mut current_cell: usize = 0;
|
||||||
|
for cell in cells{
|
||||||
|
let cell_length = cell.len() + 2;
|
||||||
|
if column_sizes[¤t_cell] < cell_length{
|
||||||
|
column_sizes.insert(current_cell, cell_length);
|
||||||
|
}
|
||||||
|
if cell_length > longest_column{
|
||||||
|
longest_column = current_cell;
|
||||||
|
}
|
||||||
|
current_cell += 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
let longest_line = (column_count*2) - 1;
|
||||||
|
if longest_line > terminal_width{
|
||||||
|
let difference = longest_line - terminal_width - 3;
|
||||||
|
column_sizes.insert(longest_column, column_sizes[&longest_column] - difference);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
let mut header = String::new();
|
||||||
|
let mut outdata = String::new();
|
||||||
|
let mut count = 0;
|
||||||
|
let mut separater = String::new();
|
||||||
|
let ending = format!("{}\n", "|".green());
|
||||||
|
for line in lines{
|
||||||
|
count += 1;
|
||||||
|
//println!("{}", line);
|
||||||
|
let mut add_ending = false;
|
||||||
|
let data_vec: Vec<&str> = line.split("||").collect();
|
||||||
|
let mut column_numbers: Vec<&usize> = column_sizes.keys().collect();
|
||||||
|
column_numbers.sort_by(|a, b| a.cmp(b));
|
||||||
|
for column in column_numbers{
|
||||||
|
/*if data_vec[*column].len() > column_sizes[&longest_column]{
|
||||||
|
let split_data_vec = data_vec[*column].split_at(column_sizes[&longest_column]);
|
||||||
|
}*/
|
||||||
|
let padding = column_sizes[column] - data_vec[*column].len();
|
||||||
|
if count == 1{
|
||||||
|
let formatted_cell = format!("{} {}{}", "|".green(), data_vec[*column].bold().green(), " ".repeat(padding));
|
||||||
|
header.push_str(&formatted_cell);
|
||||||
|
}
|
||||||
|
else if count == 2 {
|
||||||
|
let formatted_cell = format!("{} {} ", "|".green(), "-".repeat(column_sizes[column] - 1).green());
|
||||||
|
separater.push_str(&formatted_cell);
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
|
||||||
|
let formatted_cell = format!("{} {}{}", "|".green(), data_vec[*column], " ".repeat(padding));
|
||||||
|
outdata.push_str(&formatted_cell);
|
||||||
|
add_ending = true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if add_ending{
|
||||||
|
outdata.push_str(&ending)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
outdata.push_str(&separater);
|
||||||
|
outdata.push_str(&ending);
|
||||||
|
let print_output = format!("{}{}{}{}{}", header, ending, separater, ending, outdata);
|
||||||
|
println!("{}", print_output);
|
||||||
|
}
|
||||||
|
|
||||||
pub fn open_overwrite(path: &PathBuf) -> Option<File>{
|
pub fn open_overwrite(path: &PathBuf) -> Option<File>{
|
||||||
let file_create_res = fs::OpenOptions::new().create(true).write(true).open(path);
|
let file_create_res = fs::OpenOptions::new().create(true).write(true).truncate(true).open(path);
|
||||||
if file_create_res.is_err(){
|
if file_create_res.is_err(){
|
||||||
let error = file_create_res.err().unwrap();
|
let error = file_create_res.err().unwrap();
|
||||||
println!("{} {} {}","error opening".red(), path.display().to_string().red(), " file".red());
|
println!("{} {} {}","error opening".red(), path.display().to_string().red(), " file".red());
|
||||||
@@ -171,6 +266,6 @@ fn main() {
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
let projects = projects_res.unwrap();
|
let projects = projects_res.unwrap();
|
||||||
let _continue = get_user_input("press enter to load command line interface.");
|
let _continue = get_user_input("press enter to load Command Line Interface");
|
||||||
cli::cli(true, projects, config_path, &project_base_folder, &project_base_notes, &tools_folder, box_template, terminal_command, cracking_rig, rockyou, rule, &upcoming_files, &upcoming_notes, &pass_spray_file, fingerprint, vault_name);
|
cli::cli(true, projects, config_path, &project_base_folder, &project_base_notes, &tools_folder, box_template, terminal_command, cracking_rig, rockyou, rule, &upcoming_files, &upcoming_notes, &pass_spray_file, fingerprint, vault_name);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -2,6 +2,7 @@ use std::path::PathBuf;
|
|||||||
use std::thread::JoinHandle;
|
use std::thread::JoinHandle;
|
||||||
use clearscreen::clear;
|
use clearscreen::clear;
|
||||||
use clearscreen;
|
use clearscreen;
|
||||||
|
use colored::Colorize;
|
||||||
use crate::get_user_input;
|
use crate::get_user_input;
|
||||||
use crate::Project;
|
use crate::Project;
|
||||||
use crate::cli;
|
use crate::cli;
|
||||||
@@ -66,6 +67,9 @@ pub fn main_menu(projects: &mut Vec<Project>,
|
|||||||
clear().expect("error clearing screen");
|
clear().expect("error clearing screen");
|
||||||
print!("
|
print!("
|
||||||
{}
|
{}
|
||||||
|
{}
|
||||||
|
|
||||||
|
\n", banner.custom_color((255,165,0)), "
|
||||||
___ ___ _ ___ ___
|
___ ___ _ ___ ___
|
||||||
| \\/ | (_) | \\/ | _
|
| \\/ | (_) | \\/ | _
|
||||||
| . . | __ _ _ _ __ | . . | ___ _ __ _ _(_)
|
| . . | __ _ _ _ __ | . . | ___ _ __ _ _(_)
|
||||||
@@ -102,7 +106,7 @@ ___ ___ _ ___ ___
|
|||||||
28.) enter external only menu
|
28.) enter external only menu
|
||||||
29.) enter internal only menu
|
29.) enter internal only menu
|
||||||
30.) exit menu
|
30.) exit menu
|
||||||
\n", banner);
|
".custom_color((255,165,0)));
|
||||||
match get_user_input("selection?").as_str(){
|
match get_user_input("selection?").as_str(){
|
||||||
"1" => {let thread_option = cli::run_command("show active project".to_owned(), projects, config_path.clone(), base_files, base_notes, tools_dir, boxtemplate.clone(), terminal.to_owned(), cracking_rig.to_owned(), rockyou.to_owned(), rule.to_owned(), upcoming_files, upcoming_notes, password_spray_file, fingerprint, vault_name.to_owned()); if thread_option.is_some(){threads.push(thread_option.unwrap());}},
|
"1" => {let thread_option = cli::run_command("show active project".to_owned(), projects, config_path.clone(), base_files, base_notes, tools_dir, boxtemplate.clone(), terminal.to_owned(), cracking_rig.to_owned(), rockyou.to_owned(), rule.to_owned(), upcoming_files, upcoming_notes, password_spray_file, fingerprint, vault_name.to_owned()); if thread_option.is_some(){threads.push(thread_option.unwrap());}},
|
||||||
"2" => {let thread_option = cli::run_command("list projects".to_owned(), projects, config_path.clone(), base_files, base_notes, tools_dir, boxtemplate.clone(), terminal.to_owned(), cracking_rig.to_owned(), rockyou.to_owned(), rule.to_owned(), upcoming_files, upcoming_notes, password_spray_file, fingerprint, vault_name.to_owned()); if thread_option.is_some(){threads.push(thread_option.unwrap());}},
|
"2" => {let thread_option = cli::run_command("list projects".to_owned(), projects, config_path.clone(), base_files, base_notes, tools_dir, boxtemplate.clone(), terminal.to_owned(), cracking_rig.to_owned(), rockyou.to_owned(), rule.to_owned(), upcoming_files, upcoming_notes, password_spray_file, fingerprint, vault_name.to_owned()); if thread_option.is_some(){threads.push(thread_option.unwrap());}},
|
||||||
@@ -134,7 +138,7 @@ ___ ___ _ ___ ___
|
|||||||
"28" => {let threads_option = external_menu(banner, projects, config_path.clone(), base_files, base_notes, tools_dir, boxtemplate.clone(), terminal.clone(), cracking_rig.clone(), rockyou.clone(), rule.clone(), upcoming_files, upcoming_notes, password_spray_file, fingerprint, vault_name.clone()); if threads_option.is_some(){for thread in threads_option.unwrap(){threads.push(thread)}}},
|
"28" => {let threads_option = external_menu(banner, projects, config_path.clone(), base_files, base_notes, tools_dir, boxtemplate.clone(), terminal.clone(), cracking_rig.clone(), rockyou.clone(), rule.clone(), upcoming_files, upcoming_notes, password_spray_file, fingerprint, vault_name.clone()); if threads_option.is_some(){for thread in threads_option.unwrap(){threads.push(thread)}}},
|
||||||
"29" => {let threads_option = internal_menu(banner, projects, config_path.clone(), base_files, base_notes, tools_dir, boxtemplate.clone(), terminal.clone(), cracking_rig.clone(), rockyou.clone(), rule.clone(), upcoming_files, upcoming_notes, password_spray_file, fingerprint, vault_name.clone()); if threads_option.is_some(){for thread in threads_option.unwrap(){threads.push(thread)}}},
|
"29" => {let threads_option = internal_menu(banner, projects, config_path.clone(), base_files, base_notes, tools_dir, boxtemplate.clone(), terminal.clone(), cracking_rig.clone(), rockyou.clone(), rule.clone(), upcoming_files, upcoming_notes, password_spray_file, fingerprint, vault_name.clone()); if threads_option.is_some(){for thread in threads_option.unwrap(){threads.push(thread)}}},
|
||||||
"30" => loopize = false,
|
"30" => loopize = false,
|
||||||
_ => println!("unknown selection, try again!"),
|
_ => println!("{}","unknown selection, try again!".red()),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if threads.len() > 0{
|
if threads.len() > 0{
|
||||||
@@ -166,7 +170,9 @@ ___ ___ _ ___ ___
|
|||||||
let _enter_to_clear = get_user_input("press enter to display external project menu.");
|
let _enter_to_clear = get_user_input("press enter to display external project menu.");
|
||||||
clear().expect("error clearing screen");
|
clear().expect("error clearing screen");
|
||||||
print!("
|
print!("
|
||||||
{}
|
{}
|
||||||
|
{}
|
||||||
|
\n", banner.custom_color((255,165,0)), "
|
||||||
_____ _ _ ___ ___
|
_____ _ _ ___ ___
|
||||||
| ___| | | | | | \\/ | _
|
| ___| | | | | | \\/ | _
|
||||||
| |____ _| |_ ___ _ __ _ __ __ _| | | . . | ___ _ __ _ _(_)
|
| |____ _| |_ ___ _ __ _ __ __ _| | | . . | ___ _ __ _ _(_)
|
||||||
@@ -196,7 +202,7 @@ ___ ___ _ ___ ___
|
|||||||
21.) Brute force Subdomains
|
21.) Brute force Subdomains
|
||||||
22.) Do all DNS Enumeration
|
22.) Do all DNS Enumeration
|
||||||
23.) exit menu
|
23.) exit menu
|
||||||
\n", banner);
|
".custom_color((255,165,0)));
|
||||||
match get_user_input("selection?").as_str(){
|
match get_user_input("selection?").as_str(){
|
||||||
"1" => {let thread_option = cli::run_command("show active project".to_owned(), projects, config_path.clone(), base_files, base_notes, tools_dir, boxtemplate.clone(), terminal.to_owned(), cracking_rig.to_owned(), rockyou.to_owned(), rule.to_owned(), upcoming_files, upcoming_notes, password_spray_file, fingerprint, vault_name.to_owned()); if thread_option.is_some(){threads.push(thread_option.unwrap());}},
|
"1" => {let thread_option = cli::run_command("show active project".to_owned(), projects, config_path.clone(), base_files, base_notes, tools_dir, boxtemplate.clone(), terminal.to_owned(), cracking_rig.to_owned(), rockyou.to_owned(), rule.to_owned(), upcoming_files, upcoming_notes, password_spray_file, fingerprint, vault_name.to_owned()); if thread_option.is_some(){threads.push(thread_option.unwrap());}},
|
||||||
"2" => {let thread_option = cli::run_command("list projects".to_owned(), projects, config_path.clone(), base_files, base_notes, tools_dir, boxtemplate.clone(), terminal.to_owned(), cracking_rig.to_owned(), rockyou.to_owned(), rule.to_owned(), upcoming_files, upcoming_notes, password_spray_file, fingerprint, vault_name.to_owned()); if thread_option.is_some(){threads.push(thread_option.unwrap());}},
|
"2" => {let thread_option = cli::run_command("list projects".to_owned(), projects, config_path.clone(), base_files, base_notes, tools_dir, boxtemplate.clone(), terminal.to_owned(), cracking_rig.to_owned(), rockyou.to_owned(), rule.to_owned(), upcoming_files, upcoming_notes, password_spray_file, fingerprint, vault_name.to_owned()); if thread_option.is_some(){threads.push(thread_option.unwrap());}},
|
||||||
@@ -221,7 +227,7 @@ ___ ___ _ ___ ___
|
|||||||
"21" => {let thread_option = cli::run_command("brute force subdomains".to_owned(), projects, config_path.clone(), base_files, base_notes, tools_dir, boxtemplate.clone(), terminal.to_owned(), cracking_rig.to_owned(), rockyou.to_owned(), rule.to_owned(), upcoming_files, upcoming_notes, password_spray_file, fingerprint, vault_name.to_owned()); if thread_option.is_some(){threads.push(thread_option.unwrap());}},
|
"21" => {let thread_option = cli::run_command("brute force subdomains".to_owned(), projects, config_path.clone(), base_files, base_notes, tools_dir, boxtemplate.clone(), terminal.to_owned(), cracking_rig.to_owned(), rockyou.to_owned(), rule.to_owned(), upcoming_files, upcoming_notes, password_spray_file, fingerprint, vault_name.to_owned()); if thread_option.is_some(){threads.push(thread_option.unwrap());}},
|
||||||
"22" => {let thread_option = cli::run_command("dns enumeration".to_owned(), projects, config_path.clone(), base_files, base_notes, tools_dir, boxtemplate.clone(), terminal.to_owned(), cracking_rig.to_owned(), rockyou.to_owned(), rule.to_owned(), upcoming_files, upcoming_notes, password_spray_file, fingerprint, vault_name.to_owned()); if thread_option.is_some(){threads.push(thread_option.unwrap());}},
|
"22" => {let thread_option = cli::run_command("dns enumeration".to_owned(), projects, config_path.clone(), base_files, base_notes, tools_dir, boxtemplate.clone(), terminal.to_owned(), cracking_rig.to_owned(), rockyou.to_owned(), rule.to_owned(), upcoming_files, upcoming_notes, password_spray_file, fingerprint, vault_name.to_owned()); if thread_option.is_some(){threads.push(thread_option.unwrap());}},
|
||||||
"23" => loopize = false,
|
"23" => loopize = false,
|
||||||
_ => println!("unknown selection, try again!"),
|
_ => println!("{}", "unknown selection, try again!".red()),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if threads.len() > 0{
|
if threads.len() > 0{
|
||||||
@@ -255,7 +261,9 @@ ___ ___ _ ___ ___
|
|||||||
let _enter_to_clear = get_user_input("press enter to display internal project menu.");
|
let _enter_to_clear = get_user_input("press enter to display internal project menu.");
|
||||||
clear().expect("error clearing screen");
|
clear().expect("error clearing screen");
|
||||||
print!("
|
print!("
|
||||||
{}
|
{}
|
||||||
|
{}
|
||||||
|
\n", banner.custom_color((255,165,0)), "
|
||||||
_____ _ _ ___ ___
|
_____ _ _ ___ ___
|
||||||
|_ _| | | | | | \\/ | _
|
|_ _| | | | | | \\/ | _
|
||||||
| | _ __ | |_ ___ _ __ _ __ __ _| | | . . | ___ _ __ _ _(_)
|
| | _ __ | |_ ___ _ __ _ __ __ _| | | . . | ___ _ __ _ _(_)
|
||||||
@@ -284,7 +292,7 @@ ___ ___ _ ___ ___
|
|||||||
20.) open bloodhound in the current project's distrobox
|
20.) open bloodhound in the current project's distrobox
|
||||||
21.) prune unused distroboxes (free up system storage)
|
21.) prune unused distroboxes (free up system storage)
|
||||||
22.) exit menu
|
22.) exit menu
|
||||||
\n", banner);
|
".custom_color((255,165,0)));
|
||||||
match get_user_input("selection?").as_str(){
|
match get_user_input("selection?").as_str(){
|
||||||
"1" => {let thread_option = cli::run_command("show active project".to_owned(), projects, config_path.clone(), base_files, base_notes, tools_dir, boxtemplate.clone(), terminal.to_owned(), cracking_rig.to_owned(), rockyou.to_owned(), rule.to_owned(), upcoming_files, upcoming_notes, password_spray_file, fingerprint, vault_name.to_owned()); if thread_option.is_some(){threads.push(thread_option.unwrap());}},
|
"1" => {let thread_option = cli::run_command("show active project".to_owned(), projects, config_path.clone(), base_files, base_notes, tools_dir, boxtemplate.clone(), terminal.to_owned(), cracking_rig.to_owned(), rockyou.to_owned(), rule.to_owned(), upcoming_files, upcoming_notes, password_spray_file, fingerprint, vault_name.to_owned()); if thread_option.is_some(){threads.push(thread_option.unwrap());}},
|
||||||
"2" => {let thread_option = cli::run_command("list projects".to_owned(), projects, config_path.clone(), base_files, base_notes, tools_dir, boxtemplate.clone(), terminal.to_owned(), cracking_rig.to_owned(), rockyou.to_owned(), rule.to_owned(), upcoming_files, upcoming_notes, password_spray_file, fingerprint, vault_name.to_owned()); if thread_option.is_some(){threads.push(thread_option.unwrap());}},
|
"2" => {let thread_option = cli::run_command("list projects".to_owned(), projects, config_path.clone(), base_files, base_notes, tools_dir, boxtemplate.clone(), terminal.to_owned(), cracking_rig.to_owned(), rockyou.to_owned(), rule.to_owned(), upcoming_files, upcoming_notes, password_spray_file, fingerprint, vault_name.to_owned()); if thread_option.is_some(){threads.push(thread_option.unwrap());}},
|
||||||
@@ -308,7 +316,7 @@ ___ ___ _ ___ ___
|
|||||||
"20" => {let thread_option = cli::run_command("bloodhound".to_owned(), projects, config_path.clone(), base_files, base_notes, tools_dir, boxtemplate.clone(), terminal.to_owned(), cracking_rig.to_owned(), rockyou.to_owned(), rule.to_owned(), upcoming_files, upcoming_notes, password_spray_file, fingerprint, vault_name.to_owned()); if thread_option.is_some(){threads.push(thread_option.unwrap());}},
|
"20" => {let thread_option = cli::run_command("bloodhound".to_owned(), projects, config_path.clone(), base_files, base_notes, tools_dir, boxtemplate.clone(), terminal.to_owned(), cracking_rig.to_owned(), rockyou.to_owned(), rule.to_owned(), upcoming_files, upcoming_notes, password_spray_file, fingerprint, vault_name.to_owned()); if thread_option.is_some(){threads.push(thread_option.unwrap());}},
|
||||||
"21" => {let thread_option = cli::run_command("prune distroboxes".to_owned(), projects, config_path.clone(), base_files, base_notes, tools_dir, boxtemplate.clone(), terminal.to_owned(), cracking_rig.to_owned(), rockyou.to_owned(), rule.to_owned(), upcoming_files, upcoming_notes, password_spray_file, fingerprint, vault_name.to_owned()); if thread_option.is_some(){threads.push(thread_option.unwrap());}},
|
"21" => {let thread_option = cli::run_command("prune distroboxes".to_owned(), projects, config_path.clone(), base_files, base_notes, tools_dir, boxtemplate.clone(), terminal.to_owned(), cracking_rig.to_owned(), rockyou.to_owned(), rule.to_owned(), upcoming_files, upcoming_notes, password_spray_file, fingerprint, vault_name.to_owned()); if thread_option.is_some(){threads.push(thread_option.unwrap());}},
|
||||||
"22" => loopize = false,
|
"22" => loopize = false,
|
||||||
_ => println!("unknown selection, try again!"),
|
_ => println!("{}", "unknown selection, try again!".red()),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if threads.len() > 0{
|
if threads.len() > 0{
|
||||||
|
|||||||
@@ -8,7 +8,7 @@ use std::thread::{sleep, spawn, JoinHandle};
|
|||||||
use std::time::Duration;
|
use std::time::Duration;
|
||||||
use colored::Colorize;
|
use colored::Colorize;
|
||||||
use walkdir::WalkDir;
|
use walkdir::WalkDir;
|
||||||
use crate::get_user_input;
|
use crate::{get_user_input, print_error, print_informational, print_success};
|
||||||
use crate::Project;
|
use crate::Project;
|
||||||
use crate::open_overwrite;
|
use crate::open_overwrite;
|
||||||
use crate::open_append;
|
use crate::open_append;
|
||||||
@@ -196,7 +196,7 @@ pub fn build_cmd_for_host_discovery(project: &Project){
|
|||||||
let general_note_string = read_to_string(general_note_path);
|
let general_note_string = read_to_string(general_note_path);
|
||||||
let mut _note_string = String::new();
|
let mut _note_string = String::new();
|
||||||
match general_note_string{
|
match general_note_string{
|
||||||
Err(error) => {println!("error reading file to string!! {}", error); return;},
|
Err(error) => {println!("{} {}", "error reading file to string!!".green(), error.to_string().green()); return;},
|
||||||
_=> _note_string = general_note_string.unwrap()
|
_=> _note_string = general_note_string.unwrap()
|
||||||
}
|
}
|
||||||
let lines: Vec<&str> = _note_string.split("\n").collect();
|
let lines: Vec<&str> = _note_string.split("\n").collect();
|
||||||
@@ -235,7 +235,7 @@ pub fn build_cmd_for_host_discovery(project: &Project){
|
|||||||
final_command.push_str(">> ping_only_replies.txt &");
|
final_command.push_str(">> ping_only_replies.txt &");
|
||||||
}
|
}
|
||||||
final_command.pop();
|
final_command.pop();
|
||||||
println!("{}", final_command);
|
print_success(final_command);
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn parse_csportscan(project: &Project){
|
pub fn parse_csportscan(project: &Project){
|
||||||
@@ -318,7 +318,7 @@ pub fn parse_csportscan(project: &Project){
|
|||||||
outfile.clear();
|
outfile.clear();
|
||||||
outfile.push(get_user_input("ok, please enter the full path to the folder you want to save them to."));
|
outfile.push(get_user_input("ok, please enter the full path to the folder you want to save them to."));
|
||||||
}
|
}
|
||||||
print!("
|
let host_number_results = format!("
|
||||||
{} Windows hosts found!
|
{} Windows hosts found!
|
||||||
{} SSH hosts found!
|
{} SSH hosts found!
|
||||||
{} FTP hosts found!
|
{} FTP hosts found!
|
||||||
@@ -328,7 +328,8 @@ pub fn parse_csportscan(project: &Project){
|
|||||||
{} RDP hosts found!
|
{} RDP hosts found!
|
||||||
{} untagged hosts found!
|
{} untagged hosts found!
|
||||||
", windows_hosts.len(), ssh_hosts.len(), ftp_hosts.len(), telnet_hosts.len(), snmp_hosts.len(), dns_hosts.len(), rdp_hosts.len(), unknown_ports.len());
|
", windows_hosts.len(), ssh_hosts.len(), ftp_hosts.len(), telnet_hosts.len(), snmp_hosts.len(), dns_hosts.len(), rdp_hosts.len(), unknown_ports.len());
|
||||||
println!("lines parsed! creating output files...");
|
print_success(host_number_results);
|
||||||
|
print_informational("data gathered, writing to notes...");
|
||||||
outfile.push("windows_hosts.txt");
|
outfile.push("windows_hosts.txt");
|
||||||
let file_option = open_overwrite(&outfile);
|
let file_option = open_overwrite(&outfile);
|
||||||
if file_option.is_some(){
|
if file_option.is_some(){
|
||||||
@@ -342,6 +343,7 @@ pub fn parse_csportscan(project: &Project){
|
|||||||
}
|
}
|
||||||
else{
|
else{
|
||||||
write_res.unwrap();
|
write_res.unwrap();
|
||||||
|
print_success("windows hosts file written!");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -359,6 +361,7 @@ pub fn parse_csportscan(project: &Project){
|
|||||||
}
|
}
|
||||||
else{
|
else{
|
||||||
write_res.unwrap();
|
write_res.unwrap();
|
||||||
|
print_success("ssh hosts file written!");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -376,6 +379,7 @@ pub fn parse_csportscan(project: &Project){
|
|||||||
}
|
}
|
||||||
else{
|
else{
|
||||||
write_res.unwrap();
|
write_res.unwrap();
|
||||||
|
print_success("telnet hosts file written!");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -393,6 +397,7 @@ pub fn parse_csportscan(project: &Project){
|
|||||||
}
|
}
|
||||||
else{
|
else{
|
||||||
write_res.unwrap();
|
write_res.unwrap();
|
||||||
|
print_success("fpt hosts file written!");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -410,6 +415,7 @@ pub fn parse_csportscan(project: &Project){
|
|||||||
}
|
}
|
||||||
else{
|
else{
|
||||||
write_res.unwrap();
|
write_res.unwrap();
|
||||||
|
print_success("snmp hosts file written!")
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -427,6 +433,7 @@ pub fn parse_csportscan(project: &Project){
|
|||||||
}
|
}
|
||||||
else{
|
else{
|
||||||
write_res.unwrap();
|
write_res.unwrap();
|
||||||
|
print_success("dns hosts file written!")
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -444,6 +451,7 @@ pub fn parse_csportscan(project: &Project){
|
|||||||
}
|
}
|
||||||
else{
|
else{
|
||||||
write_res.unwrap();
|
write_res.unwrap();
|
||||||
|
print_success("rdp hosts file written!");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -461,10 +469,11 @@ pub fn parse_csportscan(project: &Project){
|
|||||||
}
|
}
|
||||||
else{
|
else{
|
||||||
write_res.unwrap();
|
write_res.unwrap();
|
||||||
|
print_success("web hosts file written!");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
println!("interesting ports have been written to... writing untagged port files...");
|
print_informational("tagged port files have been written to, saving untagged ports...");
|
||||||
outfile.pop();
|
outfile.pop();
|
||||||
outfile.push("untagged ports");
|
outfile.push("untagged ports");
|
||||||
if !outfile.exists(){
|
if !outfile.exists(){
|
||||||
@@ -476,6 +485,7 @@ pub fn parse_csportscan(project: &Project){
|
|||||||
}
|
}
|
||||||
else{
|
else{
|
||||||
untagged_res.unwrap();
|
untagged_res.unwrap();
|
||||||
|
print_success("untagged port file written!");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
for line in unknown_ports{
|
for line in unknown_ports{
|
||||||
@@ -496,7 +506,7 @@ pub fn parse_csportscan(project: &Project){
|
|||||||
}
|
}
|
||||||
outfile.pop();
|
outfile.pop();
|
||||||
}
|
}
|
||||||
println!("DONE all files saved to {}", outfile.display());
|
print_success(format!("DONE all files saved to {}", outfile.display()));
|
||||||
println!("note if no hosts were found for a protocol their files will be empty.");
|
println!("note if no hosts were found for a protocol their files will be empty.");
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -526,7 +536,7 @@ pub fn run_nmap_portscan(project: &Project) -> Option<JoinHandle<()>>{
|
|||||||
return None;
|
return None;
|
||||||
}
|
}
|
||||||
let mut targets = targets_res.unwrap();
|
let mut targets = targets_res.unwrap();
|
||||||
println!("Got targets from scope!");
|
print_success("Got targets from scope!");
|
||||||
for target in &targets{
|
for target in &targets{
|
||||||
println!("{}", target);
|
println!("{}", target);
|
||||||
}
|
}
|
||||||
@@ -579,7 +589,11 @@ pub fn run_nmap_portscan(project: &Project) -> Option<JoinHandle<()>>{
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
let proxy = get_user_input("will you be using proxychains for this scan?").to_lowercase().contains("y");
|
let proxy = get_user_input("will you be using proxychains for this scan?").to_lowercase().contains("y");
|
||||||
println!("sweet we have what we need!");
|
print_success("sweet we have what we need!");
|
||||||
|
print_informational("Targets:");
|
||||||
|
for target in &targets{
|
||||||
|
print_success(format!("{}", target));
|
||||||
|
}
|
||||||
println!("building portscan command...");
|
println!("building portscan command...");
|
||||||
let working_project = project.clone();
|
let working_project = project.clone();
|
||||||
let mut save_path = project.files_folder.clone();
|
let mut save_path = project.files_folder.clone();
|
||||||
@@ -591,7 +605,6 @@ pub fn run_nmap_portscan(project: &Project) -> Option<JoinHandle<()>>{
|
|||||||
save_path.push("services.tsv");
|
save_path.push("services.tsv");
|
||||||
let mut enumeration_notes_path = project.notes_folder.clone();
|
let mut enumeration_notes_path = project.notes_folder.clone();
|
||||||
enumeration_notes_path.push("enumeration.md");
|
enumeration_notes_path.push("enumeration.md");
|
||||||
println!("{}", save_path.display());
|
|
||||||
let mut nmap_output = Vec::new();
|
let mut nmap_output = Vec::new();
|
||||||
let nmap_thread = spawn(move || {
|
let nmap_thread = spawn(move || {
|
||||||
if proxy{
|
if proxy{
|
||||||
@@ -644,6 +657,7 @@ pub fn run_nmap_portscan(project: &Project) -> Option<JoinHandle<()>>{
|
|||||||
if nmap_log_file.is_some(){
|
if nmap_log_file.is_some(){
|
||||||
let mut nmap_log_file = nmap_log_file.unwrap();
|
let mut nmap_log_file = nmap_log_file.unwrap();
|
||||||
write!(nmap_log_file, "{}", nmap_output_string).unwrap();
|
write!(nmap_log_file, "{}", nmap_output_string).unwrap();
|
||||||
|
print_success("nmap log file written!");
|
||||||
}
|
}
|
||||||
let mut host_ports = Vec::new();
|
let mut host_ports = Vec::new();
|
||||||
let host_sections: Vec<&str> = nmap_output_string.split("Nmap scan report ").collect();
|
let host_sections: Vec<&str> = nmap_output_string.split("Nmap scan report ").collect();
|
||||||
@@ -690,8 +704,7 @@ pub fn run_nmap_portscan(project: &Project) -> Option<JoinHandle<()>>{
|
|||||||
let mut services_file = services_file_open_res.unwrap();
|
let mut services_file = services_file_open_res.unwrap();
|
||||||
let enumeration_open_res = open_append(&enumeration_notes_path);
|
let enumeration_open_res = open_append(&enumeration_notes_path);
|
||||||
if enumeration_open_res.is_none(){
|
if enumeration_open_res.is_none(){
|
||||||
println!("error opening enumeration notes file!");
|
print_error("error opening enumeration notes file!", "".to_owned());
|
||||||
println!("scan data will not be saved to enumeration notes!");
|
|
||||||
}
|
}
|
||||||
let services_write_res = write!(services_file, "host\tport\tbanner\tnotes\n");
|
let services_write_res = write!(services_file, "host\tport\tbanner\tnotes\n");
|
||||||
if services_write_res.is_err(){
|
if services_write_res.is_err(){
|
||||||
@@ -707,10 +720,10 @@ pub fn run_nmap_portscan(project: &Project) -> Option<JoinHandle<()>>{
|
|||||||
let mut host_all_ports: HashMap<String, Vec<String>> = HashMap::new();
|
let mut host_all_ports: HashMap<String, Vec<String>> = HashMap::new();
|
||||||
for host in &host_ports{
|
for host in &host_ports{
|
||||||
write!(services_file, "{}\n", host).unwrap();
|
write!(services_file, "{}\n", host).unwrap();
|
||||||
let host_data: Vec<&str> = host.split_whitespace().collect();
|
let host_data: Vec<&str> = host.split("\t").collect();
|
||||||
let address = host_data[0].to_owned();
|
let address = host_data[0].to_owned();
|
||||||
let port = host_data[1].to_owned();
|
let port = host_data[1].to_owned();
|
||||||
let service = host_data[2..].join(" ");
|
let service = host_data[2].to_owned();
|
||||||
if host_all_ports.contains_key(&address){
|
if host_all_ports.contains_key(&address){
|
||||||
host_all_ports.get_mut(&address).unwrap().push(format!("{}:{}", port, service));
|
host_all_ports.get_mut(&address).unwrap().push(format!("{}:{}", port, service));
|
||||||
}
|
}
|
||||||
@@ -726,17 +739,16 @@ pub fn run_nmap_portscan(project: &Project) -> Option<JoinHandle<()>>{
|
|||||||
for host in host_all_ports.keys(){
|
for host in host_all_ports.keys(){
|
||||||
write!(enumeration_file, "## {}\n| HOST | PORT | SERVICE |\n| ---- | ---- | ------- |\n", host).unwrap();
|
write!(enumeration_file, "## {}\n| HOST | PORT | SERVICE |\n| ---- | ---- | ------- |\n", host).unwrap();
|
||||||
for port_entry in &host_all_ports[host]{
|
for port_entry in &host_all_ports[host]{
|
||||||
println!("{}", port_entry);
|
|
||||||
let parts: Vec<&str> = port_entry.split(":").collect();
|
let parts: Vec<&str> = port_entry.split(":").collect();
|
||||||
let port = parts[0];
|
let port = parts[0];
|
||||||
let services = parts[1];
|
let services = parts[1];
|
||||||
write!(enumeration_file, "| {} | {} |\n", port, services).unwrap();
|
write!(enumeration_file, "| {} | {} | {} |\n", host, port, services).unwrap();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
write!(enumeration_file, "---\n").unwrap();
|
write!(enumeration_file, "\n---\n").unwrap();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
println!("FROM NMAP THREAD: Parsing done! You're scan results are saved in cobalt strike services.tsv format at {}", save_path.display());
|
print_success(format!("FROM NMAP THREAD: Parsing done! You're scan results are saved in cobalt strike services.tsv format at {}", save_path.display()));
|
||||||
});
|
});
|
||||||
sleep(Duration::from_secs(10));
|
sleep(Duration::from_secs(10));
|
||||||
return Some(nmap_thread);
|
return Some(nmap_thread);
|
||||||
@@ -823,9 +835,9 @@ pub fn build_nmap_command(project: &Project){
|
|||||||
let targets_string = targets.join(" ");
|
let targets_string = targets.join(" ");
|
||||||
println!("\nYour portscan command is:");
|
println!("\nYour portscan command is:");
|
||||||
if get_user_input("will you be using proxychains for this scan?").to_lowercase().contains("y"){
|
if get_user_input("will you be using proxychains for this scan?").to_lowercase().contains("y"){
|
||||||
println!("\n\nproxychains nmap -sT -p {} {} -Pn | tee {}", ports_string, targets_string, save_path.display());
|
print_success(format!("\n\nproxychains nmap -sT -p {} {} -Pn | tee {}", ports_string, targets_string, save_path.display()));
|
||||||
}
|
}
|
||||||
else{
|
else{
|
||||||
println!("nmap -p {} {} -Pn | tee {}", ports_string, targets_string, save_path.display());
|
print_success(format!("nmap -p {} {} -Pn | tee {}", ports_string, targets_string, save_path.display()));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -1,5 +1,6 @@
|
|||||||
use std::env;
|
use std::env;
|
||||||
use std::fs;
|
use std::fs;
|
||||||
|
use std::fs::read_to_string;
|
||||||
use std::io::stdin;
|
use std::io::stdin;
|
||||||
use std::io::Write;
|
use std::io::Write;
|
||||||
use std::path::PathBuf;
|
use std::path::PathBuf;
|
||||||
@@ -11,8 +12,12 @@ use std::str::FromStr;
|
|||||||
use colored::Colorize;
|
use colored::Colorize;
|
||||||
|
|
||||||
use crate::get_user_input;
|
use crate::get_user_input;
|
||||||
|
use crate::open_overwrite;
|
||||||
|
use crate::tableize;
|
||||||
use crate::Project;
|
use crate::Project;
|
||||||
use crate::box_controls::make_box;
|
use crate::box_controls::make_box;
|
||||||
|
use crate::print_success;
|
||||||
|
use crate::print_error;
|
||||||
|
|
||||||
pub fn
|
pub fn
|
||||||
switch_project(projects: &mut Vec<Project>){
|
switch_project(projects: &mut Vec<Project>){
|
||||||
@@ -29,19 +34,19 @@ switch_project(projects: &mut Vec<Project>){
|
|||||||
for project in projects{
|
for project in projects{
|
||||||
if project.id == new_id{
|
if project.id == new_id{
|
||||||
project.active = true;
|
project.active = true;
|
||||||
println!("project found switching to {} {}", project.customer, project.project_name);
|
print_success(format!("project found switching to {} {}", project.customer, project.project_name));
|
||||||
env::set_var("CURRENT_PROJECT_BOX", project.boxname.clone());
|
env::set_var("CURRENT_PROJECT_BOX", project.boxname.clone());
|
||||||
}
|
}
|
||||||
else if project.id != new_id{
|
else if project.id != new_id{
|
||||||
project.active = false;
|
project.active = false;
|
||||||
}
|
}
|
||||||
else{
|
else{
|
||||||
println!("error unknown project id");
|
print_error("error selecting new project", String::from("unknown project id selected."));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else{
|
else{
|
||||||
println!("error we need user input here dummy!");
|
print_error("error selecting new project", String::from("we need input here dummy!"));
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
@@ -51,8 +56,14 @@ pub fn save_projects(projects: &Vec<Project>, config_path: &PathBuf){
|
|||||||
let mut active_set = false;
|
let mut active_set = false;
|
||||||
save_file_path.pop();
|
save_file_path.pop();
|
||||||
save_file_path.push("projects.conf");
|
save_file_path.push("projects.conf");
|
||||||
let mut save_file = fs::File::create(save_file_path).expect("error creating save_file");
|
let save_file_res = fs::File::create(save_file_path);
|
||||||
save_file.write_all(b"customer:name:notes:files:active:time:box_name:stage\n").expect("error writing first line to file");
|
if save_file_res.is_err(){
|
||||||
|
let error = save_file_res.err().unwrap().to_string();
|
||||||
|
print_error("error creating save file.", error);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
let mut save_file = save_file_res.unwrap();
|
||||||
|
save_file.write_all(b"Current Loaded Projects Config File\n").expect("error writing first line to file");
|
||||||
for project in projects{
|
for project in projects{
|
||||||
let default = format!{"{}:{}:{}:{}:", project.customer, project.project_name, project.notes_folder.display(), project.files_folder.display()};
|
let default = format!{"{}:{}:{}:{}:", project.customer, project.project_name, project.notes_folder.display(), project.files_folder.display()};
|
||||||
let mut _outline = String::new();
|
let mut _outline = String::new();
|
||||||
@@ -66,7 +77,13 @@ pub fn save_projects(projects: &Vec<Project>, config_path: &PathBuf){
|
|||||||
else{
|
else{
|
||||||
_outline = format!("{}no:{}:{}\n", default, project.boxname, project.stage);
|
_outline = format!("{}no:{}:{}\n", default, project.boxname, project.stage);
|
||||||
}
|
}
|
||||||
save_file.write_all(_outline.as_bytes()).expect("error writing outline");
|
let write_res = save_file.write_all(_outline.as_bytes());
|
||||||
|
if write_res.is_err(){
|
||||||
|
let error = write_res.err().unwrap().to_string();
|
||||||
|
print_error("error saving projects.conf file!", error);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
write_res.unwrap();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -319,37 +336,40 @@ pub fn get_projects(config_path: &PathBuf, show: bool) -> Option<Vec<Project>>{
|
|||||||
let mut first = 0;
|
let mut first = 0;
|
||||||
let mut already_active = false;
|
let mut already_active = false;
|
||||||
for line in project_lines{
|
for line in project_lines{
|
||||||
|
//println!("{}", line);
|
||||||
first = first + 1;
|
first = first + 1;
|
||||||
if first != 1{
|
if first != 1{
|
||||||
if line.len() > 1{
|
if line.len() > 1{
|
||||||
let settings: Vec<&str> = line.split(":").collect();
|
let settings: Vec<&str> = line.split(":").collect();
|
||||||
//debug config file...
|
if settings.len() > 5{
|
||||||
/*let mut count = 0;
|
// debug config file...
|
||||||
for settin in &settings{
|
/*let mut count = 0;
|
||||||
println!("{}: {}", count, settin);
|
for settin in &settings{
|
||||||
count = count + 1;
|
println!("{}: {}", count, settin);
|
||||||
}*/
|
count = count + 1;
|
||||||
let customer = settings[0].to_owned();
|
}*/
|
||||||
let project = settings[1].to_owned();
|
let customer = settings[0].to_owned();
|
||||||
let notes_string = settings[2].to_owned();
|
let project = settings[1].to_owned();
|
||||||
let folder_string = settings[3].to_owned();
|
let notes_string = settings[2].to_owned();
|
||||||
let notes_folder = PathBuf::from_str(¬es_string.trim_end()).expect("error reading notes string");
|
let folder_string = settings[3].to_owned();
|
||||||
let project_folder = PathBuf::from_str(&folder_string.trim_end()).expect("error reading folding sering");
|
let notes_folder = PathBuf::from_str(¬es_string.trim_end()).expect("error reading notes string");
|
||||||
let mut active = false;
|
let project_folder = PathBuf::from_str(&folder_string.trim_end()).expect("error reading folding sering");
|
||||||
let boxname = settings[5].to_owned();
|
let mut active = false;
|
||||||
if settings[4] == "yes"{
|
let boxname = settings[5].to_owned();
|
||||||
if already_active == false{
|
if settings[4] == "yes"{
|
||||||
env::set_var("CURRENT_PROJECT_BOX", boxname.clone());
|
if already_active == false{
|
||||||
already_active = true;
|
env::set_var("CURRENT_PROJECT_BOX", boxname.clone());
|
||||||
active = true;
|
already_active = true;
|
||||||
|
active = true;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
let project_stage = settings[6].to_owned();
|
||||||
|
let new_project = Project{customer: customer, project_name: project, files_folder: project_folder, notes_folder: notes_folder, active: active, id: first, boxname: boxname, stage: project_stage};
|
||||||
|
if show{
|
||||||
|
println!("{} {} {}", &new_project.customer, &new_project.project_name, "LOADED!".green());
|
||||||
|
}
|
||||||
|
projects.push(new_project);
|
||||||
}
|
}
|
||||||
let project_stage = settings[6].to_owned();
|
|
||||||
let new_project = Project{customer: customer, project_name: project, files_folder: project_folder, notes_folder: notes_folder, active: active, id: first, boxname: boxname, stage: project_stage};
|
|
||||||
if show{
|
|
||||||
println!("{} {} {}", &new_project.customer, &new_project.project_name, "LOADED!".green());
|
|
||||||
}
|
|
||||||
projects.push(new_project);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -357,11 +377,14 @@ pub fn get_projects(config_path: &PathBuf, show: bool) -> Option<Vec<Project>>{
|
|||||||
}
|
}
|
||||||
|
|
||||||
pub fn print_upcoming_projects(projects: &Vec<Project>){
|
pub fn print_upcoming_projects(projects: &Vec<Project>){
|
||||||
|
let mut lines = vec![String::from("CUSTOMER||PROJECT")];
|
||||||
for project in projects{
|
for project in projects{
|
||||||
if project.stage.contains("upcoming"){
|
if project.stage.contains("upcoming"){
|
||||||
println!("{}:{}", project.customer, project.project_name);
|
let new_line = format!("{}||{}", project.customer, project.project_name);
|
||||||
|
lines.push(new_line);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
tableize(lines);
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn promote_project(projects: &mut Vec<Project>, config_path: &PathBuf, project_dir: &PathBuf, notes_dir: &PathBuf, tools_dir: &PathBuf, boxtemplate: &String, fingerprint: bool){
|
pub fn promote_project(projects: &mut Vec<Project>, config_path: &PathBuf, project_dir: &PathBuf, notes_dir: &PathBuf, tools_dir: &PathBuf, boxtemplate: &String, fingerprint: bool){
|
||||||
@@ -418,7 +441,7 @@ pub fn promote_project(projects: &mut Vec<Project>, config_path: &PathBuf, proje
|
|||||||
println!("failed to copy the project folder, try to move it manually!");
|
println!("failed to copy the project folder, try to move it manually!");
|
||||||
}
|
}
|
||||||
if note_move_success.success(){
|
if note_move_success.success(){
|
||||||
println!("we copied the notes folder correctly!!");
|
print_success("we copied the notes folder correctly!!");
|
||||||
let mut remove_folder = PathBuf::new();
|
let mut remove_folder = PathBuf::new();
|
||||||
remove_folder.push(&project.files_folder);
|
remove_folder.push(&project.files_folder);
|
||||||
remove_folder.pop();
|
remove_folder.pop();
|
||||||
@@ -465,11 +488,144 @@ pub fn promote_project(projects: &mut Vec<Project>, config_path: &PathBuf, proje
|
|||||||
projects.clear();
|
projects.clear();
|
||||||
projects.append(&mut projects_to_save);
|
projects.append(&mut projects_to_save);
|
||||||
save_projects(&projects_to_save, config_path);
|
save_projects(&projects_to_save, config_path);
|
||||||
|
print_success("project promoted successfully!");
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn list_projects(projects: &Vec<Project>){
|
pub fn list_projects(projects: &Vec<Project>){
|
||||||
println!("+++++++++++++++++++++");
|
let mut lines = vec!["customer||project||stage".to_owned()];
|
||||||
for project in projects{
|
for project in projects{
|
||||||
println!("++Customer: {}|Project name: {}|Stage: {}++",project.customer ,project.project_name, project.stage)}
|
let new_line = format!("{}||{}||{}", project.customer, project.project_name, project.stage);
|
||||||
println!("++++++++++++++++++++")
|
lines.push(new_line);
|
||||||
|
}
|
||||||
|
tableize(lines);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
pub fn separate_personal_work_projects(config_path: &PathBuf){
|
||||||
|
let mut projects_conf_path = config_path.clone();
|
||||||
|
projects_conf_path.pop();
|
||||||
|
projects_conf_path.push("projects.conf");
|
||||||
|
let mut working_conf_path = config_path.clone();
|
||||||
|
working_conf_path.pop();
|
||||||
|
working_conf_path.push("projects.work");
|
||||||
|
let mut personal_conf_path = config_path.clone();
|
||||||
|
personal_conf_path.pop();
|
||||||
|
personal_conf_path.push("projects.personal");
|
||||||
|
println!("{}", projects_conf_path.display());
|
||||||
|
let project_read_res = read_to_string(&projects_conf_path);
|
||||||
|
if project_read_res.is_err(){
|
||||||
|
print_error("error reading current projects config file!", project_read_res.err().unwrap().to_string());
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
let project_string = project_read_res.unwrap();
|
||||||
|
let project_lines: Vec<&str> = project_string.split("\n").collect();
|
||||||
|
let mut personal_projects = Vec::new();
|
||||||
|
let mut work_projects = Vec::new();
|
||||||
|
let mut default = String::new();
|
||||||
|
for line in project_lines{
|
||||||
|
let words: Vec<&str> = line.split(":").collect();
|
||||||
|
if words.len() > 3{
|
||||||
|
if words[0].contains("default"){
|
||||||
|
default = line.to_owned();
|
||||||
|
}
|
||||||
|
else{
|
||||||
|
println!("{} {}", words[0], words[1]);
|
||||||
|
if get_user_input("should this project be added to your personal projects config files?").to_lowercase().contains("y"){
|
||||||
|
personal_projects.push(line.to_owned());
|
||||||
|
print_success(format!("{}:{} {}",words[0], words[1], "successfully added to personal config!"));
|
||||||
|
if get_user_input("Do you also want to keep it in your work projects config?").to_lowercase().contains("y"){
|
||||||
|
work_projects.push(line.to_owned());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else{
|
||||||
|
work_projects.push(line.to_owned());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
let work_config_open_res = fs::OpenOptions::new().create(true).write(true).open(working_conf_path);
|
||||||
|
if work_config_open_res.is_err(){
|
||||||
|
print_error("error opening work projects config file!", work_config_open_res.err().unwrap().to_string());
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
let person_config_open_res = fs::OpenOptions::new().create(true).write(true).open(personal_conf_path);
|
||||||
|
if person_config_open_res.is_err(){
|
||||||
|
print_error("error opening personal config file!", person_config_open_res.err().unwrap().to_string());
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
let mut work_config_file = work_config_open_res.unwrap();
|
||||||
|
let mut personal_config_file = person_config_open_res.unwrap();
|
||||||
|
let work_write_success = write!(work_config_file, "Work Config File\n");
|
||||||
|
let personal_write_success = write!(personal_config_file, "Personal Config File\n");
|
||||||
|
if work_write_success.is_err(){
|
||||||
|
print_error("error writing to work config file!", work_write_success.err().unwrap().to_string());
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
else{
|
||||||
|
work_write_success.unwrap();
|
||||||
|
}
|
||||||
|
if personal_write_success.is_err(){
|
||||||
|
print_error("error writing personal config file!", personal_write_success.err().unwrap().to_string());
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
else{
|
||||||
|
personal_write_success.unwrap();
|
||||||
|
}
|
||||||
|
write!(personal_config_file, "{}\n", default).unwrap();
|
||||||
|
write!(work_config_file, "{}\n", default).unwrap();
|
||||||
|
for project in work_projects{
|
||||||
|
write!(work_config_file, "{}\n", project).unwrap();
|
||||||
|
}
|
||||||
|
for project in personal_projects{
|
||||||
|
write!(personal_config_file, "{}\n", project).unwrap();
|
||||||
|
}
|
||||||
|
print_success("projects separated successfully!");
|
||||||
|
}
|
||||||
|
|
||||||
|
pub fn swith_to_personal(config: &PathBuf) -> Option<Vec<Project>>{
|
||||||
|
let mut projects_path = config.clone();
|
||||||
|
projects_path.pop();
|
||||||
|
let mut personal_projects = config.clone();
|
||||||
|
personal_projects.pop();
|
||||||
|
projects_path.push("projects.conf");
|
||||||
|
personal_projects.push("projects.personal");
|
||||||
|
let personal_projects_read_res = read_to_string(&personal_projects);
|
||||||
|
if personal_projects_read_res.is_err(){
|
||||||
|
print_error("error reading personal projects!", personal_projects_read_res.err().unwrap().to_string());
|
||||||
|
return None;
|
||||||
|
}
|
||||||
|
let person_projects_string = personal_projects_read_res.unwrap();
|
||||||
|
let open_res = open_overwrite(&projects_path);
|
||||||
|
if open_res.is_none(){
|
||||||
|
print_error("error opening projects.conf file!", "".to_string());
|
||||||
|
return None;
|
||||||
|
}
|
||||||
|
let mut project_conf = open_res.unwrap();
|
||||||
|
write!(project_conf, "{}", person_projects_string).unwrap();
|
||||||
|
let new_projects = get_projects(config, true);
|
||||||
|
return new_projects;
|
||||||
|
}
|
||||||
|
|
||||||
|
pub fn swith_to_work(config: &PathBuf) -> Option<Vec<Project>>{
|
||||||
|
let mut projects_path = config.clone();
|
||||||
|
projects_path.pop();
|
||||||
|
let mut work_projects = config.clone();
|
||||||
|
work_projects.pop();
|
||||||
|
projects_path.push("projects.conf");
|
||||||
|
work_projects.push("projects.work");
|
||||||
|
let work_projects_read_res = read_to_string(work_projects);
|
||||||
|
if work_projects_read_res.is_err(){
|
||||||
|
print_error("error reading personal projects!", work_projects_read_res.err().unwrap().to_string());
|
||||||
|
return None;
|
||||||
|
}
|
||||||
|
let work_projects_string = work_projects_read_res.unwrap();
|
||||||
|
let open_res = open_overwrite(&projects_path);
|
||||||
|
if open_res.is_none(){
|
||||||
|
print_error("", "error opening projects.conf file!".to_string());
|
||||||
|
return None;
|
||||||
|
}
|
||||||
|
let mut project_conf = open_res.unwrap();
|
||||||
|
write!(project_conf, "{}", work_projects_string).unwrap();
|
||||||
|
let new_projects = get_projects(config, true);
|
||||||
|
return new_projects;
|
||||||
}
|
}
|
||||||
@@ -2,6 +2,7 @@ use std::{env::set_current_dir, path::PathBuf};
|
|||||||
use std::process::Command;
|
use std::process::Command;
|
||||||
use colored::Colorize;
|
use colored::Colorize;
|
||||||
use walkdir::WalkDir;
|
use walkdir::WalkDir;
|
||||||
|
use crate::print_success;
|
||||||
|
|
||||||
|
|
||||||
pub fn update_git_tools(tools_dir: &PathBuf){
|
pub fn update_git_tools(tools_dir: &PathBuf){
|
||||||
@@ -34,7 +35,7 @@ pub fn update_git_tools(tools_dir: &PathBuf){
|
|||||||
else{
|
else{
|
||||||
let git_command = git_command_res.unwrap();
|
let git_command = git_command_res.unwrap();
|
||||||
if git_command.success(){
|
if git_command.success(){
|
||||||
println!("successfully updated {}", folder.display());
|
print_success(format!("successfully updated {}", folder.display()));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,6 +1,8 @@
|
|||||||
use std::path::PathBuf;
|
use std::path::PathBuf;
|
||||||
|
use colored::Colorize;
|
||||||
use walkdir::WalkDir;
|
use walkdir::WalkDir;
|
||||||
use crate::get_user_input;
|
use crate::get_user_input;
|
||||||
|
use crate::print_success;
|
||||||
|
|
||||||
pub fn sharp_persist_command(tools_dir: &PathBuf){
|
pub fn sharp_persist_command(tools_dir: &PathBuf){
|
||||||
let filename = "SharPersist.exe";
|
let filename = "SharPersist.exe";
|
||||||
@@ -20,13 +22,13 @@ pub fn sharp_persist_command(tools_dir: &PathBuf){
|
|||||||
"1" => println!("execute-assembly {} -t schtask -c \"{}\" -n FRPersist -m add -o hourly", binary_path, beacon_path),
|
"1" => println!("execute-assembly {} -t schtask -c \"{}\" -n FRPersist -m add -o hourly", binary_path, beacon_path),
|
||||||
"2" => println!("inlineExecute-Assembly --dotnetassembly {} --assemblyargs -t schtask -c \"{}\" -n FRPersist -m add -o hourly --etw --amsi", binary_path, beacon_path),
|
"2" => println!("inlineExecute-Assembly --dotnetassembly {} --assemblyargs -t schtask -c \"{}\" -n FRPersist -m add -o hourly --etw --amsi", binary_path, beacon_path),
|
||||||
"3" => println!("upload {}\n\nrun .\\SharPersist.exe -t schtask -c \"{}\" -n FRPersist -m add -o hourly", binary_path, beacon_path),
|
"3" => println!("upload {}\n\nrun .\\SharPersist.exe -t schtask -c \"{}\" -n FRPersist -m add -o hourly", binary_path, beacon_path),
|
||||||
_ => println!("unknown selection")
|
_ => println!("{}","unknown selection".red())
|
||||||
}
|
}
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
let file_to_run = get_user_input("path to the file you want to run for persistence?");
|
let file_to_run = get_user_input("path to the file you want to run for persistence?");
|
||||||
println!("ok then, upload the following file to the machine");
|
print_success("ok then, upload the following file to the machine");
|
||||||
println!("{}", binary_path);
|
print_success(format!("{}", binary_path));
|
||||||
println!("C:\\path\\to\\your\\sharpersist.exe -t schtask -c \"{}\" -n FRPersist -m add -o hourly", file_to_run);
|
print_success(format!("C:\\path\\to\\your\\sharpersist.exe -t schtask -c \"{}\" -n FRPersist -m add -o hourly", file_to_run));
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
Reference in New Issue
Block a user