├── .github └── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── functions ├── helpmenu.js ├── process.js └── request.js ├── illustration.png ├── index.js ├── initials ├── banner.js └── input.js ├── logo.png ├── package-lock.json ├── package.json ├── pull_request_template.md └── tests └── domains.txt /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Bug report 3 | about: Create a report to help us improve 4 | title: '' 5 | labels: '' 6 | assignees: '' 7 | 8 | --- 9 | 10 | **Describe the bug** 11 | A clear and concise description of what the bug is. 12 | 13 | **To Reproduce** 14 | Steps to reproduce the behavior: 15 | 1. Go to '...' 16 | 2. Click on '....' 17 | 3. Scroll down to '....' 18 | 4. See error 19 | 20 | **Expected behavior** 21 | A clear and concise description of what you expected to happen. 22 | 23 | **Screenshots** 24 | If applicable, add screenshots to help explain your problem. 25 | 26 | **Desktop (please complete the following information):** 27 | - OS: [e.g. iOS] 28 | - Browser [e.g. chrome, safari] 29 | - Version [e.g. 22] 30 | 31 | **Smartphone (please complete the following information):** 32 | - Device: [e.g. iPhone6] 33 | - OS: [e.g. iOS8.1] 34 | - Browser [e.g. stock browser, safari] 35 | - Version [e.g. 22] 36 | 37 | **Additional context** 38 | Add any other context about the problem here. 39 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Feature request 3 | about: Suggest an idea for this project 4 | title: '' 5 | labels: '' 6 | assignees: '' 7 | 8 | --- 9 | 10 | **Is your feature request related to a problem? Please describe.** 11 | A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] 12 | 13 | **Describe the solution you'd like** 14 | A clear and concise description of what you want to happen. 15 | 16 | **Describe alternatives you've considered** 17 | A clear and concise description of any alternative solutions or features you've considered. 18 | 19 | **Additional context** 20 | Add any other context or screenshots about the feature request here. 21 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- 1 | # Contributor Covenant Code of Conduct 2 | 3 | ## Our Pledge 4 | 5 | We as members, contributors, and leaders pledge to make participation in our 6 | community a harassment-free experience for everyone, regardless of age, body 7 | size, visible or invisible disability, ethnicity, sex characteristics, gender 8 | identity and expression, level of experience, education, socio-economic status, 9 | nationality, personal appearance, race, religion, or sexual identity 10 | and orientation. 11 | 12 | We pledge to act and interact in ways that contribute to an open, welcoming, 13 | diverse, inclusive, and healthy community. 14 | 15 | ## Our Standards 16 | 17 | Examples of behavior that contributes to a positive environment for our 18 | community include: 19 | 20 | * Demonstrating empathy and kindness toward other people 21 | * Being respectful of differing opinions, viewpoints, and experiences 22 | * Giving and gracefully accepting constructive feedback 23 | * Accepting responsibility and apologizing to those affected by our mistakes, 24 | and learning from the experience 25 | * Focusing on what is best not just for us as individuals, but for the 26 | overall community 27 | 28 | Examples of unacceptable behavior include: 29 | 30 | * The use of sexualized language or imagery, and sexual attention or 31 | advances of any kind 32 | * Trolling, insulting or derogatory comments, and personal or political attacks 33 | * Public or private harassment 34 | * Publishing others' private information, such as a physical or email 35 | address, without their explicit permission 36 | * Other conduct which could reasonably be considered inappropriate in a 37 | professional setting 38 | 39 | ## Enforcement Responsibilities 40 | 41 | Community leaders are responsible for clarifying and enforcing our standards of 42 | acceptable behavior and will take appropriate and fair corrective action in 43 | response to any behavior that they deem inappropriate, threatening, offensive, 44 | or harmful. 45 | 46 | Community leaders have the right and responsibility to remove, edit, or reject 47 | comments, commits, code, wiki edits, issues, and other contributions that are 48 | not aligned to this Code of Conduct, and will communicate reasons for moderation 49 | decisions when appropriate. 50 | 51 | ## Scope 52 | 53 | This Code of Conduct applies within all community spaces, and also applies when 54 | an individual is officially representing the community in public spaces. 55 | Examples of representing our community include using an official e-mail address, 56 | posting via an official social media account, or acting as an appointed 57 | representative at an online or offline event. 58 | 59 | ## Enforcement 60 | 61 | Instances of abusive, harassing, or otherwise unacceptable behavior may be 62 | reported to the community leaders responsible for enforcement at 63 | 0x9778@protonmail.com. 64 | All complaints will be reviewed and investigated promptly and fairly. 65 | 66 | All community leaders are obligated to respect the privacy and security of the 67 | reporter of any incident. 68 | 69 | ## Enforcement Guidelines 70 | 71 | Community leaders will follow these Community Impact Guidelines in determining 72 | the consequences for any action they deem in violation of this Code of Conduct: 73 | 74 | ### 1. Correction 75 | 76 | **Community Impact**: Use of inappropriate language or other behavior deemed 77 | unprofessional or unwelcome in the community. 78 | 79 | **Consequence**: A private, written warning from community leaders, providing 80 | clarity around the nature of the violation and an explanation of why the 81 | behavior was inappropriate. A public apology may be requested. 82 | 83 | ### 2. Warning 84 | 85 | **Community Impact**: A violation through a single incident or series 86 | of actions. 87 | 88 | **Consequence**: A warning with consequences for continued behavior. No 89 | interaction with the people involved, including unsolicited interaction with 90 | those enforcing the Code of Conduct, for a specified period of time. This 91 | includes avoiding interactions in community spaces as well as external channels 92 | like social media. Violating these terms may lead to a temporary or 93 | permanent ban. 94 | 95 | ### 3. Temporary Ban 96 | 97 | **Community Impact**: A serious violation of community standards, including 98 | sustained inappropriate behavior. 99 | 100 | **Consequence**: A temporary ban from any sort of interaction or public 101 | communication with the community for a specified period of time. No public or 102 | private interaction with the people involved, including unsolicited interaction 103 | with those enforcing the Code of Conduct, is allowed during this period. 104 | Violating these terms may lead to a permanent ban. 105 | 106 | ### 4. Permanent Ban 107 | 108 | **Community Impact**: Demonstrating a pattern of violation of community 109 | standards, including sustained inappropriate behavior, harassment of an 110 | individual, or aggression toward or disparagement of classes of individuals. 111 | 112 | **Consequence**: A permanent ban from any sort of public interaction within 113 | the community. 114 | 115 | ## Attribution 116 | 117 | This Code of Conduct is adapted from the [Contributor Covenant][homepage], 118 | version 2.0, available at 119 | https://www.contributor-covenant.org/version/2/0/code_of_conduct.html. 120 | 121 | Community Impact Guidelines were inspired by [Mozilla's code of conduct 122 | enforcement ladder](https://github.com/mozilla/diversity). 123 | 124 | [homepage]: https://www.contributor-covenant.org 125 | 126 | For answers to common questions about this code of conduct, see the FAQ at 127 | https://www.contributor-covenant.org/faq. Translations are available at 128 | https://www.contributor-covenant.org/translations. 129 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | Wlling to Contribute? 2 | You can make a contribution to this repo by creating a pull request! Make sure you include the following details: 3 | 4 | Feature introduced 5 | What does the feature do? 6 | List of External Modules/Packages if used 7 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2021 Umair 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 |

2 | logo 3 |
4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 |

14 | 15 |

16 | About Archer 17 |

18 | 19 |

20 | output 21 |

22 | 23 |

24 | Archer is an cross-platform tool developed using Nodejs which focuses on the reconnaissance phase of a penetration test. Got a bunch of links that you wanna check? Archer makes it easy for you to check the response codes of all the links and even query them so that you know which link is still alive and which isn't. 25 |

26 | 27 |

28 | Support 29 |

30 | 31 | | Windows | Linux | Mac | Termux | 32 | | ------- | ----- | --- | ------ | 33 | | ✔ | ✔ | ✔ | ✔ | 34 | 35 | ✔ - Tested
36 | ❔ - Not tested
37 | 38 |

39 | Installation 40 |

41 | 42 |

43 | Windows 44 |

45 | 46 |

47 | Note:
48 |

52 | 53 | ```sh 54 | cd Archer 55 | npm i 56 | npm run help 57 | ``` 58 |

59 | 60 |

61 | Linux / Termux 62 |

63 | 64 |

65 | 66 | ```sh 67 | sudo apt update -y && sudo apt upgrade -y 68 | sudo apt install nodejs -y 69 | sudo apt install git -y 70 | git clone https://github.com/umair9747/Archer 71 | cd Archer 72 | npm i 73 | npm run help 74 | ``` 75 |

76 | 77 |

78 | Usage 79 |

80 | 81 |

82 | 83 | ```sh 84 | Archer V1.0 85 | Usage: node index.js [filename] [statuscodetoquery] [outputtype] 86 | 87 | FILENAME -- 88 | Specifies the file name containing the domain list along with its full location 89 | Note: Make sure the data is stored in txt format 90 | Example: /home/user/Desktop/file.txt 91 | 92 | STATUS CODE TO QUERY -- 93 | Specifies the status codes you would like to be displayed 94 | Example: 200/404/302/any 95 | 96 | OUTPUT TYPE -- 97 | Specifies the format for the output which will be displayed 98 | Example: string/json 99 | 100 | EXAMPLE USAGE -- 101 | node index.js /home/user/Desktop/domains.txt 200 string 102 | ``` 103 | NOTE: All flags are mandatory. Make sure that the links you provide have http:// or https:// added else Archer would return a "domain doesn't exist" error. 104 |

105 | 106 |

107 | Reach Out! 108 |

109 | 110 |

111 | You can contact me through the following handles: 112 |

118 |

119 | 120 |

121 | Wlling to Contribute? 122 |

123 | 124 |

125 | You can make a contribution to this repo by creating a pull request! Make sure you include the following details: 126 |

131 |

132 | 133 |

134 | Past Contributors 135 |

136 | 137 |

138 | 139 |

140 | -------------------------------------------------------------------------------- /functions/helpmenu.js: -------------------------------------------------------------------------------- 1 | const align = require("align-text"); 2 | const chalk = require("chalk"); 3 | 4 | function menu() { 5 | console.log(align(chalk.yellow("Archer V1.0"), 5)); 6 | console.log( 7 | align( 8 | chalk.yellow( 9 | "Usage: node index.js [filename] [statuscodetoquery] [outputtype]" 10 | ), 11 | 5 12 | ) 13 | ); 14 | 15 | console.log(""); 16 | console.log(align(chalk.green("FILENAME --"), 5)); 17 | console.log( 18 | align( 19 | chalk.blue( 20 | "Specifies the file name containing the domain list along with its full location" 21 | ), 22 | 5 23 | ) 24 | ); 25 | console.log( 26 | align(chalk.blue("Note: Make sure the data is stored in txt format"), 5) 27 | ); 28 | console.log(align(chalk.magenta("Example: /home/user/Desktop/file.txt"), 5)); 29 | 30 | console.log(""); 31 | console.log(align(chalk.green("STATUS CODE TO QUERY --"), 5)); 32 | console.log( 33 | align( 34 | chalk.blue("Specifies the status codes you would like to be displayed"), 35 | 5 36 | ) 37 | ); 38 | console.log(align(chalk.magenta("Example: 200/404/302/all"), 5)); 39 | 40 | console.log(""); 41 | console.log(align(chalk.green("OUTPUT TYPE --"), 5)); 42 | console.log( 43 | align( 44 | chalk.blue("Specifies the format for the output which will be displayed"), 45 | 5 46 | ) 47 | ); 48 | console.log(align(chalk.magenta("Example: string/json"), 5)); 49 | 50 | console.log(""); 51 | console.log(align(chalk.green("EXAMPLE USAGE -- "), 5)); 52 | console.log( 53 | align( 54 | chalk.magenta( 55 | "node index.js /home/user/Desktop/domains.txt 200 string" 56 | ), 57 | 5 58 | ) 59 | ); 60 | } 61 | 62 | module.exports = { menu }; 63 | -------------------------------------------------------------------------------- /functions/process.js: -------------------------------------------------------------------------------- 1 | const getinput = require("../initials/input"); 2 | const help = require("../functions/helpmenu"); 3 | const align = require("align-text"); 4 | const request = require("../functions/request"); 5 | const chalk = require("chalk"); 6 | 7 | function process() { 8 | const input = getinput.input(); 9 | 10 | if (!input[0]) 11 | console.log( 12 | align( 13 | chalk.red( 14 | "Please provide the minimum number of arguments to run this program!" 15 | ), 16 | 5 17 | ) 18 | ); 19 | else if (input[0] === "--help" || input[0] === "-h") help.menu(); 20 | else { 21 | if (input.length < 3) console.log(""); 22 | const [filename, statuscodetoquery, outputtype] = input.slice(0, 3); 23 | request.processTargets(filename, statuscodetoquery, outputtype); 24 | } 25 | } 26 | 27 | module.exports = { process }; 28 | -------------------------------------------------------------------------------- /functions/request.js: -------------------------------------------------------------------------------- 1 | const align = require("align-text"); 2 | const str2json = require("string-to-json"); 3 | const chalk = require("chalk"); 4 | 5 | // avoid importing modules inside functions - it's better to not repeat the code unnecessarily 6 | const createInterface = require("readline").createInterface; 7 | const createReadStream = require("fs").createReadStream; 8 | const request = require("request"); 9 | 10 | 11 | const statusCodePrint = async (statuscode, response, line) => { 12 | const op = `[+] ${line}: `; 13 | 14 | // about switch: see comment at line 78 15 | switch (statuscode) { 16 | case "200": 17 | console.log(align(chalk.green(op) + response.statusCode, 5)); 18 | break; 19 | case "404": 20 | console.log(align(chalk.red(op) + response.statusCode, 5)); 21 | break; 22 | default: 23 | console.log(align(chalk.yellow(op) + response.statusCode, 5)); 24 | } 25 | }; 26 | 27 | const requestOutputProcess = (line, error, response, statuscode) => { 28 | let output = { 29 | target: line, 30 | response, 31 | }; 32 | 33 | if (error) output.response = "Error: domain doesn't exist"; 34 | // since the two conditions give the same result, it's simpler to make them only one with the "||" (or) operator 35 | else if (response.statusCode.toString() === statuscode || statuscode === "any") 36 | output.response = response.statusCode; 37 | 38 | return str2json.convert(output); 39 | }; 40 | 41 | function processStringOutput(file, statuscode) { 42 | const lineReader = createInterface({ 43 | input: createReadStream(file), 44 | }); 45 | 46 | lineReader.on("line", (line) => { 47 | const op = `[+] ${line}:`; 48 | request(line, (error, response) => { 49 | if (error) { 50 | console.log(align(`${chalk.red(op)} Error: domain doesn't exist`, 5)); 51 | } else { 52 | if (response.statusCode == statuscode) { 53 | statusCodePrint(statuscode, response, line); 54 | } else if (statuscode == "any") { 55 | statusCodePrint(response.statusCode.toString(), response, line); 56 | } 57 | } 58 | }); 59 | }); 60 | } 61 | 62 | function processJSONOutput(file, statuscode) { 63 | const lineReader = createInterface({ 64 | input: createReadStream(file), 65 | }); 66 | 67 | lineReader.on("line", (line) => { 68 | request(line, (error, response) => 69 | console.log(requestOutputProcess(line, error, response, statuscode)) 70 | ); 71 | }); 72 | } 73 | 74 | // instead of putting all the stuff in one function, I separated the code into multiple functions 75 | // that have their own purposes and they can be reused later in other places 76 | function processTargets(file, statuscode, output) { 77 | console.log(align(chalk.blue("Archer is starting...\n"), 5)); 78 | // switch is a more clean way to test the value of something, especially to avoid if, else if, else 79 | switch (output) { 80 | case "string": 81 | return processStringOutput(file, statuscode); 82 | case "json": 83 | return processJSONOutput(file, statuscode); 84 | default: 85 | console.log( 86 | align( 87 | chalk.red( 88 | "Please make sure you are using the correct arguments!\n \ 89 | Refer to the help menu (--help or -h) for more details" 90 | ), 91 | 5 92 | ) 93 | ); 94 | } 95 | } 96 | 97 | module.exports = { processTargets }; 98 | -------------------------------------------------------------------------------- /illustration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umair9747/Archer/45f1045aec09bf1d241b28e90bcec51f95eda75b/illustration.png -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- 1 | const banner = require('./initials/banner'); 2 | const input = require('./functions/process'); 3 | 4 | banner.data() 5 | setTimeout(input.process, 10); 6 | -------------------------------------------------------------------------------- /initials/banner.js: -------------------------------------------------------------------------------- 1 | //Import starts 2 | // vars are unscoped, better use const instead 3 | const figlet = require("figlet"); 4 | const align = require("align-text"); 5 | const chalk = require("chalk"); 6 | //Import ends 7 | 8 | function data() { 9 | figlet("-ARCHER->", (err, data) => { 10 | if (err) { 11 | console.log("Something went wrong..."); 12 | console.dir(err); 13 | return; 14 | } 15 | console.log(align(chalk.green(data), 12)); 16 | console.log( 17 | align(chalk.green("A Tool to Check for Response Status Codes"), 15) 18 | ); 19 | console.log(align(chalk.green("Developed by Umair Nehri (0x9747)\n"), 32)); 20 | console.log( 21 | align( 22 | chalk.blue( 23 | '"It is sometimes an appropriate response to reality to go insane." ~Philip K.' 24 | ), 25 | 4 26 | ) 27 | ); 28 | console.log(""); 29 | console.log( 30 | align( 31 | chalk.green( 32 | "[Use --help or -h flag for getting information about command usage]" 33 | ), 34 | 6 35 | ) 36 | ); 37 | 38 | console.log(""); 39 | }); 40 | } 41 | 42 | module.exports = { data }; 43 | -------------------------------------------------------------------------------- /initials/input.js: -------------------------------------------------------------------------------- 1 | // Instead of using a classic function we here use an arrow one. Since the function is one line, brackets are not required. 2 | const input = () => process.argv.slice(2); 3 | 4 | module.exports = { input }; 5 | -------------------------------------------------------------------------------- /logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umair9747/Archer/45f1045aec09bf1d241b28e90bcec51f95eda75b/logo.png -------------------------------------------------------------------------------- /package-lock.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "archer", 3 | "version": "1.0.0", 4 | "lockfileVersion": 2, 5 | "requires": true, 6 | "packages": { 7 | "": { 8 | "name": "archer", 9 | "version": "1.0.0", 10 | "license": "ISC", 11 | "dependencies": { 12 | "align-text": "^1.0.2", 13 | "chalk": "^4.1.2", 14 | "colors": "^1.4.0", 15 | "figlet": "^1.5.2", 16 | "readline": "^1.3.0", 17 | "request": "^2.88.2", 18 | "string-to-json": "^0.1.0" 19 | } 20 | }, 21 | "node_modules/ajv": { 22 | "version": "6.12.6", 23 | "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", 24 | "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", 25 | "dependencies": { 26 | "fast-deep-equal": "^3.1.1", 27 | "fast-json-stable-stringify": "^2.0.0", 28 | "json-schema-traverse": "^0.4.1", 29 | "uri-js": "^4.2.2" 30 | }, 31 | "funding": { 32 | "type": "github", 33 | "url": "https://github.com/sponsors/epoberezkin" 34 | } 35 | }, 36 | "node_modules/align-text": { 37 | "version": "1.0.2", 38 | "resolved": "https://registry.npmjs.org/align-text/-/align-text-1.0.2.tgz", 39 | "integrity": "sha512-uBPDs72zrRTdiTBY0YjBbuBOdXtRyT4qsKPb4bL4O7vH4utz/7KjwTJVsVbdThxMbVzkRGAfk8Ml3xoMvXSEYw==", 40 | "dependencies": { 41 | "kind-of": "^5.0.2", 42 | "longest": "^2.0.1", 43 | "repeat-string": "^1.6.1" 44 | }, 45 | "engines": { 46 | "node": ">=0.10.0" 47 | } 48 | }, 49 | "node_modules/ansi-styles": { 50 | "version": "4.3.0", 51 | "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", 52 | "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", 53 | "dependencies": { 54 | "color-convert": "^2.0.1" 55 | }, 56 | "engines": { 57 | "node": ">=8" 58 | }, 59 | "funding": { 60 | "url": "https://github.com/chalk/ansi-styles?sponsor=1" 61 | } 62 | }, 63 | "node_modules/asn1": { 64 | "version": "0.2.4", 65 | "resolved": "https://registry.npmjs.org/asn1/-/asn1-0.2.4.tgz", 66 | "integrity": "sha512-jxwzQpLQjSmWXgwaCZE9Nz+glAG01yF1QnWgbhGwHI5A6FRIEY6IVqtHhIepHqI7/kyEyQEagBC5mBEFlIYvdg==", 67 | "dependencies": { 68 | "safer-buffer": "~2.1.0" 69 | } 70 | }, 71 | "node_modules/assert-plus": { 72 | "version": "1.0.0", 73 | "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz", 74 | "integrity": "sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU=", 75 | "engines": { 76 | "node": ">=0.8" 77 | } 78 | }, 79 | "node_modules/asynckit": { 80 | "version": "0.4.0", 81 | "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", 82 | "integrity": "sha1-x57Zf380y48robyXkLzDZkdLS3k=" 83 | }, 84 | "node_modules/aws-sign2": { 85 | "version": "0.7.0", 86 | "resolved": "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.7.0.tgz", 87 | "integrity": "sha1-tG6JCTSpWR8tL2+G1+ap8bP+dqg=", 88 | "engines": { 89 | "node": "*" 90 | } 91 | }, 92 | "node_modules/aws4": { 93 | "version": "1.11.0", 94 | "resolved": "https://registry.npmjs.org/aws4/-/aws4-1.11.0.tgz", 95 | "integrity": "sha512-xh1Rl34h6Fi1DC2WWKfxUTVqRsNnr6LsKz2+hfwDxQJWmrx8+c7ylaqBMcHfl1U1r2dsifOvKX3LQuLNZ+XSvA==" 96 | }, 97 | "node_modules/bcrypt-pbkdf": { 98 | "version": "1.0.2", 99 | "resolved": "https://registry.npmjs.org/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz", 100 | "integrity": "sha1-pDAdOJtqQ/m2f/PKEaP2Y342Dp4=", 101 | "dependencies": { 102 | "tweetnacl": "^0.14.3" 103 | } 104 | }, 105 | "node_modules/caseless": { 106 | "version": "0.12.0", 107 | "resolved": "https://registry.npmjs.org/caseless/-/caseless-0.12.0.tgz", 108 | "integrity": "sha1-G2gcIf+EAzyCZUMJBolCDRhxUdw=" 109 | }, 110 | "node_modules/chalk": { 111 | "version": "4.1.2", 112 | "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", 113 | "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", 114 | "dependencies": { 115 | "ansi-styles": "^4.1.0", 116 | "supports-color": "^7.1.0" 117 | }, 118 | "engines": { 119 | "node": ">=10" 120 | }, 121 | "funding": { 122 | "url": "https://github.com/chalk/chalk?sponsor=1" 123 | } 124 | }, 125 | "node_modules/color-convert": { 126 | "version": "2.0.1", 127 | "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", 128 | "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", 129 | "dependencies": { 130 | "color-name": "~1.1.4" 131 | }, 132 | "engines": { 133 | "node": ">=7.0.0" 134 | } 135 | }, 136 | "node_modules/color-name": { 137 | "version": "1.1.4", 138 | "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", 139 | "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" 140 | }, 141 | "node_modules/colors": { 142 | "version": "1.4.0", 143 | "resolved": "https://registry.npmjs.org/colors/-/colors-1.4.0.tgz", 144 | "integrity": "sha512-a+UqTh4kgZg/SlGvfbzDHpgRu7AAQOmmqRHJnxhRZICKFUT91brVhNNt58CMWU9PsBbv3PDCZUHbVxuDiH2mtA==", 145 | "engines": { 146 | "node": ">=0.1.90" 147 | } 148 | }, 149 | "node_modules/combined-stream": { 150 | "version": "1.0.8", 151 | "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", 152 | "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", 153 | "dependencies": { 154 | "delayed-stream": "~1.0.0" 155 | }, 156 | "engines": { 157 | "node": ">= 0.8" 158 | } 159 | }, 160 | "node_modules/core-util-is": { 161 | "version": "1.0.2", 162 | "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz", 163 | "integrity": "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=" 164 | }, 165 | "node_modules/dashdash": { 166 | "version": "1.14.1", 167 | "resolved": "https://registry.npmjs.org/dashdash/-/dashdash-1.14.1.tgz", 168 | "integrity": "sha1-hTz6D3y+L+1d4gMmuN1YEDX24vA=", 169 | "dependencies": { 170 | "assert-plus": "^1.0.0" 171 | }, 172 | "engines": { 173 | "node": ">=0.10" 174 | } 175 | }, 176 | "node_modules/delayed-stream": { 177 | "version": "1.0.0", 178 | "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", 179 | "integrity": "sha1-3zrhmayt+31ECqrgsp4icrJOxhk=", 180 | "engines": { 181 | "node": ">=0.4.0" 182 | } 183 | }, 184 | "node_modules/ecc-jsbn": { 185 | "version": "0.1.2", 186 | "resolved": "https://registry.npmjs.org/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz", 187 | "integrity": "sha1-OoOpBOVDUyh4dMVkt1SThoSamMk=", 188 | "dependencies": { 189 | "jsbn": "~0.1.0", 190 | "safer-buffer": "^2.1.0" 191 | } 192 | }, 193 | "node_modules/extend": { 194 | "version": "3.0.2", 195 | "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz", 196 | "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==" 197 | }, 198 | "node_modules/extsprintf": { 199 | "version": "1.3.0", 200 | "resolved": "https://registry.npmjs.org/extsprintf/-/extsprintf-1.3.0.tgz", 201 | "integrity": "sha1-lpGEQOMEGnpBT4xS48V06zw+HgU=", 202 | "engines": [ 203 | "node >=0.6.0" 204 | ] 205 | }, 206 | "node_modules/fast-deep-equal": { 207 | "version": "3.1.3", 208 | "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", 209 | "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==" 210 | }, 211 | "node_modules/fast-json-stable-stringify": { 212 | "version": "2.1.0", 213 | "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", 214 | "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==" 215 | }, 216 | "node_modules/figlet": { 217 | "version": "1.5.2", 218 | "resolved": "https://registry.npmjs.org/figlet/-/figlet-1.5.2.tgz", 219 | "integrity": "sha512-WOn21V8AhyE1QqVfPIVxe3tupJacq1xGkPTB4iagT6o+P2cAgEOOwIxMftr4+ZCTI6d551ij9j61DFr0nsP2uQ==", 220 | "engines": { 221 | "node": ">= 0.4.0" 222 | } 223 | }, 224 | "node_modules/forever-agent": { 225 | "version": "0.6.1", 226 | "resolved": "https://registry.npmjs.org/forever-agent/-/forever-agent-0.6.1.tgz", 227 | "integrity": "sha1-+8cfDEGt6zf5bFd60e1C2P2sypE=", 228 | "engines": { 229 | "node": "*" 230 | } 231 | }, 232 | "node_modules/form-data": { 233 | "version": "2.3.3", 234 | "resolved": "https://registry.npmjs.org/form-data/-/form-data-2.3.3.tgz", 235 | "integrity": "sha512-1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ==", 236 | "dependencies": { 237 | "asynckit": "^0.4.0", 238 | "combined-stream": "^1.0.6", 239 | "mime-types": "^2.1.12" 240 | }, 241 | "engines": { 242 | "node": ">= 0.12" 243 | } 244 | }, 245 | "node_modules/getpass": { 246 | "version": "0.1.7", 247 | "resolved": "https://registry.npmjs.org/getpass/-/getpass-0.1.7.tgz", 248 | "integrity": "sha1-Xv+OPmhNVprkyysSgmBOi6YhSfo=", 249 | "dependencies": { 250 | "assert-plus": "^1.0.0" 251 | } 252 | }, 253 | "node_modules/har-schema": { 254 | "version": "2.0.0", 255 | "resolved": "https://registry.npmjs.org/har-schema/-/har-schema-2.0.0.tgz", 256 | "integrity": "sha1-qUwiJOvKwEeCoNkDVSHyRzW37JI=", 257 | "engines": { 258 | "node": ">=4" 259 | } 260 | }, 261 | "node_modules/har-validator": { 262 | "version": "5.1.5", 263 | "resolved": "https://registry.npmjs.org/har-validator/-/har-validator-5.1.5.tgz", 264 | "integrity": "sha512-nmT2T0lljbxdQZfspsno9hgrG3Uir6Ks5afism62poxqBM6sDnMEuPmzTq8XN0OEwqKLLdh1jQI3qyE66Nzb3w==", 265 | "deprecated": "this library is no longer supported", 266 | "dependencies": { 267 | "ajv": "^6.12.3", 268 | "har-schema": "^2.0.0" 269 | }, 270 | "engines": { 271 | "node": ">=6" 272 | } 273 | }, 274 | "node_modules/has-flag": { 275 | "version": "4.0.0", 276 | "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", 277 | "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", 278 | "engines": { 279 | "node": ">=8" 280 | } 281 | }, 282 | "node_modules/http-signature": { 283 | "version": "1.2.0", 284 | "resolved": "https://registry.npmjs.org/http-signature/-/http-signature-1.2.0.tgz", 285 | "integrity": "sha1-muzZJRFHcvPZW2WmCruPfBj7rOE=", 286 | "dependencies": { 287 | "assert-plus": "^1.0.0", 288 | "jsprim": "^1.2.2", 289 | "sshpk": "^1.7.0" 290 | }, 291 | "engines": { 292 | "node": ">=0.8", 293 | "npm": ">=1.3.7" 294 | } 295 | }, 296 | "node_modules/is-typedarray": { 297 | "version": "1.0.0", 298 | "resolved": "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz", 299 | "integrity": "sha1-5HnICFjfDBsR3dppQPlgEfzaSpo=" 300 | }, 301 | "node_modules/isstream": { 302 | "version": "0.1.2", 303 | "resolved": "https://registry.npmjs.org/isstream/-/isstream-0.1.2.tgz", 304 | "integrity": "sha1-R+Y/evVa+m+S4VAOaQ64uFKcCZo=" 305 | }, 306 | "node_modules/jsbn": { 307 | "version": "0.1.1", 308 | "resolved": "https://registry.npmjs.org/jsbn/-/jsbn-0.1.1.tgz", 309 | "integrity": "sha1-peZUwuWi3rXyAdls77yoDA7y9RM=" 310 | }, 311 | "node_modules/json-schema": { 312 | "version": "0.2.3", 313 | "resolved": "https://registry.npmjs.org/json-schema/-/json-schema-0.2.3.tgz", 314 | "integrity": "sha1-tIDIkuWaLwWVTOcnvT8qTogvnhM=" 315 | }, 316 | "node_modules/json-schema-traverse": { 317 | "version": "0.4.1", 318 | "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", 319 | "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==" 320 | }, 321 | "node_modules/json-stringify-safe": { 322 | "version": "5.0.1", 323 | "resolved": "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz", 324 | "integrity": "sha1-Epai1Y/UXxmg9s4B1lcB4sc1tus=" 325 | }, 326 | "node_modules/jsprim": { 327 | "version": "1.4.1", 328 | "resolved": "https://registry.npmjs.org/jsprim/-/jsprim-1.4.1.tgz", 329 | "integrity": "sha1-MT5mvB5cwG5Di8G3SZwuXFastqI=", 330 | "engines": [ 331 | "node >=0.6.0" 332 | ], 333 | "dependencies": { 334 | "assert-plus": "1.0.0", 335 | "extsprintf": "1.3.0", 336 | "json-schema": "0.2.3", 337 | "verror": "1.10.0" 338 | } 339 | }, 340 | "node_modules/kind-of": { 341 | "version": "5.1.0", 342 | "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz", 343 | "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==", 344 | "engines": { 345 | "node": ">=0.10.0" 346 | } 347 | }, 348 | "node_modules/longest": { 349 | "version": "2.0.1", 350 | "resolved": "https://registry.npmjs.org/longest/-/longest-2.0.1.tgz", 351 | "integrity": "sha1-eB4YMpaqlPbU2RbcM10NF676I/g=", 352 | "engines": { 353 | "node": ">=0.10.0" 354 | } 355 | }, 356 | "node_modules/mime-db": { 357 | "version": "1.47.0", 358 | "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.47.0.tgz", 359 | "integrity": "sha512-QBmA/G2y+IfeS4oktet3qRZ+P5kPhCKRXxXnQEudYqUaEioAU1/Lq2us3D/t1Jfo4hE9REQPrbB7K5sOczJVIw==", 360 | "engines": { 361 | "node": ">= 0.6" 362 | } 363 | }, 364 | "node_modules/mime-types": { 365 | "version": "2.1.30", 366 | "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.30.tgz", 367 | "integrity": "sha512-crmjA4bLtR8m9qLpHvgxSChT+XoSlZi8J4n/aIdn3z92e/U47Z0V/yl+Wh9W046GgFVAmoNR/fmdbZYcSSIUeg==", 368 | "dependencies": { 369 | "mime-db": "1.47.0" 370 | }, 371 | "engines": { 372 | "node": ">= 0.6" 373 | } 374 | }, 375 | "node_modules/oauth-sign": { 376 | "version": "0.9.0", 377 | "resolved": "https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.9.0.tgz", 378 | "integrity": "sha512-fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ==", 379 | "engines": { 380 | "node": "*" 381 | } 382 | }, 383 | "node_modules/performance-now": { 384 | "version": "2.1.0", 385 | "resolved": "https://registry.npmjs.org/performance-now/-/performance-now-2.1.0.tgz", 386 | "integrity": "sha1-Ywn04OX6kT7BxpMHrjZLSzd8nns=" 387 | }, 388 | "node_modules/psl": { 389 | "version": "1.8.0", 390 | "resolved": "https://registry.npmjs.org/psl/-/psl-1.8.0.tgz", 391 | "integrity": "sha512-RIdOzyoavK+hA18OGGWDqUTsCLhtA7IcZ/6NCs4fFJaHBDab+pDDmDIByWFRQJq2Cd7r1OoQxBGKOaztq+hjIQ==" 392 | }, 393 | "node_modules/punycode": { 394 | "version": "2.1.1", 395 | "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz", 396 | "integrity": "sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==", 397 | "engines": { 398 | "node": ">=6" 399 | } 400 | }, 401 | "node_modules/qs": { 402 | "version": "6.5.2", 403 | "resolved": "https://registry.npmjs.org/qs/-/qs-6.5.2.tgz", 404 | "integrity": "sha512-N5ZAX4/LxJmF+7wN74pUD6qAh9/wnvdQcjq9TZjevvXzSUo7bfmw91saqMjzGS2xq91/odN2dW/WOl7qQHNDGA==", 405 | "engines": { 406 | "node": ">=0.6" 407 | } 408 | }, 409 | "node_modules/readline": { 410 | "version": "1.3.0", 411 | "resolved": "https://registry.npmjs.org/readline/-/readline-1.3.0.tgz", 412 | "integrity": "sha1-xYDXfvLPyHUrEySYBg3JeTp6wBw=" 413 | }, 414 | "node_modules/repeat-string": { 415 | "version": "1.6.1", 416 | "resolved": "https://registry.npmjs.org/repeat-string/-/repeat-string-1.6.1.tgz", 417 | "integrity": "sha1-jcrkcOHIirwtYA//Sndihtp15jc=", 418 | "engines": { 419 | "node": ">=0.10" 420 | } 421 | }, 422 | "node_modules/request": { 423 | "version": "2.88.2", 424 | "resolved": "https://registry.npmjs.org/request/-/request-2.88.2.tgz", 425 | "integrity": "sha512-MsvtOrfG9ZcrOwAW+Qi+F6HbD0CWXEh9ou77uOb7FM2WPhwT7smM833PzanhJLsgXjN89Ir6V2PczXNnMpwKhw==", 426 | "deprecated": "request has been deprecated, see https://github.com/request/request/issues/3142", 427 | "dependencies": { 428 | "aws-sign2": "~0.7.0", 429 | "aws4": "^1.8.0", 430 | "caseless": "~0.12.0", 431 | "combined-stream": "~1.0.6", 432 | "extend": "~3.0.2", 433 | "forever-agent": "~0.6.1", 434 | "form-data": "~2.3.2", 435 | "har-validator": "~5.1.3", 436 | "http-signature": "~1.2.0", 437 | "is-typedarray": "~1.0.0", 438 | "isstream": "~0.1.2", 439 | "json-stringify-safe": "~5.0.1", 440 | "mime-types": "~2.1.19", 441 | "oauth-sign": "~0.9.0", 442 | "performance-now": "^2.1.0", 443 | "qs": "~6.5.2", 444 | "safe-buffer": "^5.1.2", 445 | "tough-cookie": "~2.5.0", 446 | "tunnel-agent": "^0.6.0", 447 | "uuid": "^3.3.2" 448 | }, 449 | "engines": { 450 | "node": ">= 6" 451 | } 452 | }, 453 | "node_modules/safe-buffer": { 454 | "version": "5.2.1", 455 | "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", 456 | "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", 457 | "funding": [ 458 | { 459 | "type": "github", 460 | "url": "https://github.com/sponsors/feross" 461 | }, 462 | { 463 | "type": "patreon", 464 | "url": "https://www.patreon.com/feross" 465 | }, 466 | { 467 | "type": "consulting", 468 | "url": "https://feross.org/support" 469 | } 470 | ] 471 | }, 472 | "node_modules/safer-buffer": { 473 | "version": "2.1.2", 474 | "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", 475 | "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==" 476 | }, 477 | "node_modules/sshpk": { 478 | "version": "1.16.1", 479 | "resolved": "https://registry.npmjs.org/sshpk/-/sshpk-1.16.1.tgz", 480 | "integrity": "sha512-HXXqVUq7+pcKeLqqZj6mHFUMvXtOJt1uoUx09pFW6011inTMxqI8BA8PM95myrIyyKwdnzjdFjLiE6KBPVtJIg==", 481 | "dependencies": { 482 | "asn1": "~0.2.3", 483 | "assert-plus": "^1.0.0", 484 | "bcrypt-pbkdf": "^1.0.0", 485 | "dashdash": "^1.12.0", 486 | "ecc-jsbn": "~0.1.1", 487 | "getpass": "^0.1.1", 488 | "jsbn": "~0.1.0", 489 | "safer-buffer": "^2.0.2", 490 | "tweetnacl": "~0.14.0" 491 | }, 492 | "bin": { 493 | "sshpk-conv": "bin/sshpk-conv", 494 | "sshpk-sign": "bin/sshpk-sign", 495 | "sshpk-verify": "bin/sshpk-verify" 496 | }, 497 | "engines": { 498 | "node": ">=0.10.0" 499 | } 500 | }, 501 | "node_modules/string-to-json": { 502 | "version": "0.1.0", 503 | "resolved": "https://registry.npmjs.org/string-to-json/-/string-to-json-0.1.0.tgz", 504 | "integrity": "sha1-whD3OP0GiVRuxXIHTvJR3SpQ8UE=", 505 | "dependencies": { 506 | "underscore-x": ">= 0.1.0" 507 | }, 508 | "engines": { 509 | "node": "*" 510 | } 511 | }, 512 | "node_modules/supports-color": { 513 | "version": "7.2.0", 514 | "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", 515 | "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", 516 | "dependencies": { 517 | "has-flag": "^4.0.0" 518 | }, 519 | "engines": { 520 | "node": ">=8" 521 | } 522 | }, 523 | "node_modules/tough-cookie": { 524 | "version": "2.5.0", 525 | "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.5.0.tgz", 526 | "integrity": "sha512-nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX/qboeycw6iO8JwVv2+g==", 527 | "dependencies": { 528 | "psl": "^1.1.28", 529 | "punycode": "^2.1.1" 530 | }, 531 | "engines": { 532 | "node": ">=0.8" 533 | } 534 | }, 535 | "node_modules/tunnel-agent": { 536 | "version": "0.6.0", 537 | "resolved": "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz", 538 | "integrity": "sha1-J6XeoGs2sEoKmWZ3SykIaPD8QP0=", 539 | "dependencies": { 540 | "safe-buffer": "^5.0.1" 541 | }, 542 | "engines": { 543 | "node": "*" 544 | } 545 | }, 546 | "node_modules/tweetnacl": { 547 | "version": "0.14.5", 548 | "resolved": "https://registry.npmjs.org/tweetnacl/-/tweetnacl-0.14.5.tgz", 549 | "integrity": "sha1-WuaBd/GS1EViadEIr6k/+HQ/T2Q=" 550 | }, 551 | "node_modules/underscore": { 552 | "version": "1.13.1", 553 | "resolved": "https://registry.npmjs.org/underscore/-/underscore-1.13.1.tgz", 554 | "integrity": "sha512-hzSoAVtJF+3ZtiFX0VgfFPHEDRm7Y/QPjGyNo4TVdnDTdft3tr8hEkD25a1jC+TjTuE7tkHGKkhwCgs9dgBB2g==" 555 | }, 556 | "node_modules/underscore-x": { 557 | "version": "0.1.0", 558 | "resolved": "https://registry.npmjs.org/underscore-x/-/underscore-x-0.1.0.tgz", 559 | "integrity": "sha1-hCCLC46Eh/QpoYpa5g1/Tnmc6m4=", 560 | "dependencies": { 561 | "underscore": ">= 1.4.4" 562 | }, 563 | "engines": { 564 | "node": "*" 565 | } 566 | }, 567 | "node_modules/uri-js": { 568 | "version": "4.4.1", 569 | "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", 570 | "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", 571 | "dependencies": { 572 | "punycode": "^2.1.0" 573 | } 574 | }, 575 | "node_modules/uuid": { 576 | "version": "3.4.0", 577 | "resolved": "https://registry.npmjs.org/uuid/-/uuid-3.4.0.tgz", 578 | "integrity": "sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==", 579 | "bin": { 580 | "uuid": "bin/uuid" 581 | } 582 | }, 583 | "node_modules/verror": { 584 | "version": "1.10.0", 585 | "resolved": "https://registry.npmjs.org/verror/-/verror-1.10.0.tgz", 586 | "integrity": "sha1-OhBcoXBTr1XW4nDB+CiGguGNpAA=", 587 | "engines": [ 588 | "node >=0.6.0" 589 | ], 590 | "dependencies": { 591 | "assert-plus": "^1.0.0", 592 | "core-util-is": "1.0.2", 593 | "extsprintf": "^1.2.0" 594 | } 595 | } 596 | }, 597 | "dependencies": { 598 | "ajv": { 599 | "version": "6.12.6", 600 | "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", 601 | "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", 602 | "requires": { 603 | "fast-deep-equal": "^3.1.1", 604 | "fast-json-stable-stringify": "^2.0.0", 605 | "json-schema-traverse": "^0.4.1", 606 | "uri-js": "^4.2.2" 607 | } 608 | }, 609 | "align-text": { 610 | "version": "1.0.2", 611 | "resolved": "https://registry.npmjs.org/align-text/-/align-text-1.0.2.tgz", 612 | "integrity": "sha512-uBPDs72zrRTdiTBY0YjBbuBOdXtRyT4qsKPb4bL4O7vH4utz/7KjwTJVsVbdThxMbVzkRGAfk8Ml3xoMvXSEYw==", 613 | "requires": { 614 | "kind-of": "^5.0.2", 615 | "longest": "^2.0.1", 616 | "repeat-string": "^1.6.1" 617 | } 618 | }, 619 | "ansi-styles": { 620 | "version": "4.3.0", 621 | "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", 622 | "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", 623 | "requires": { 624 | "color-convert": "^2.0.1" 625 | } 626 | }, 627 | "asn1": { 628 | "version": "0.2.4", 629 | "resolved": "https://registry.npmjs.org/asn1/-/asn1-0.2.4.tgz", 630 | "integrity": "sha512-jxwzQpLQjSmWXgwaCZE9Nz+glAG01yF1QnWgbhGwHI5A6FRIEY6IVqtHhIepHqI7/kyEyQEagBC5mBEFlIYvdg==", 631 | "requires": { 632 | "safer-buffer": "~2.1.0" 633 | } 634 | }, 635 | "assert-plus": { 636 | "version": "1.0.0", 637 | "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz", 638 | "integrity": "sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU=" 639 | }, 640 | "asynckit": { 641 | "version": "0.4.0", 642 | "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", 643 | "integrity": "sha1-x57Zf380y48robyXkLzDZkdLS3k=" 644 | }, 645 | "aws-sign2": { 646 | "version": "0.7.0", 647 | "resolved": "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.7.0.tgz", 648 | "integrity": "sha1-tG6JCTSpWR8tL2+G1+ap8bP+dqg=" 649 | }, 650 | "aws4": { 651 | "version": "1.11.0", 652 | "resolved": "https://registry.npmjs.org/aws4/-/aws4-1.11.0.tgz", 653 | "integrity": "sha512-xh1Rl34h6Fi1DC2WWKfxUTVqRsNnr6LsKz2+hfwDxQJWmrx8+c7ylaqBMcHfl1U1r2dsifOvKX3LQuLNZ+XSvA==" 654 | }, 655 | "bcrypt-pbkdf": { 656 | "version": "1.0.2", 657 | "resolved": "https://registry.npmjs.org/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz", 658 | "integrity": "sha1-pDAdOJtqQ/m2f/PKEaP2Y342Dp4=", 659 | "requires": { 660 | "tweetnacl": "^0.14.3" 661 | } 662 | }, 663 | "caseless": { 664 | "version": "0.12.0", 665 | "resolved": "https://registry.npmjs.org/caseless/-/caseless-0.12.0.tgz", 666 | "integrity": "sha1-G2gcIf+EAzyCZUMJBolCDRhxUdw=" 667 | }, 668 | "chalk": { 669 | "version": "4.1.2", 670 | "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", 671 | "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", 672 | "requires": { 673 | "ansi-styles": "^4.1.0", 674 | "supports-color": "^7.1.0" 675 | } 676 | }, 677 | "color-convert": { 678 | "version": "2.0.1", 679 | "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", 680 | "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", 681 | "requires": { 682 | "color-name": "~1.1.4" 683 | } 684 | }, 685 | "color-name": { 686 | "version": "1.1.4", 687 | "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", 688 | "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" 689 | }, 690 | "colors": { 691 | "version": "1.4.0", 692 | "resolved": "https://registry.npmjs.org/colors/-/colors-1.4.0.tgz", 693 | "integrity": "sha512-a+UqTh4kgZg/SlGvfbzDHpgRu7AAQOmmqRHJnxhRZICKFUT91brVhNNt58CMWU9PsBbv3PDCZUHbVxuDiH2mtA==" 694 | }, 695 | "combined-stream": { 696 | "version": "1.0.8", 697 | "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", 698 | "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", 699 | "requires": { 700 | "delayed-stream": "~1.0.0" 701 | } 702 | }, 703 | "core-util-is": { 704 | "version": "1.0.2", 705 | "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz", 706 | "integrity": "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=" 707 | }, 708 | "dashdash": { 709 | "version": "1.14.1", 710 | "resolved": "https://registry.npmjs.org/dashdash/-/dashdash-1.14.1.tgz", 711 | "integrity": "sha1-hTz6D3y+L+1d4gMmuN1YEDX24vA=", 712 | "requires": { 713 | "assert-plus": "^1.0.0" 714 | } 715 | }, 716 | "delayed-stream": { 717 | "version": "1.0.0", 718 | "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", 719 | "integrity": "sha1-3zrhmayt+31ECqrgsp4icrJOxhk=" 720 | }, 721 | "ecc-jsbn": { 722 | "version": "0.1.2", 723 | "resolved": "https://registry.npmjs.org/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz", 724 | "integrity": "sha1-OoOpBOVDUyh4dMVkt1SThoSamMk=", 725 | "requires": { 726 | "jsbn": "~0.1.0", 727 | "safer-buffer": "^2.1.0" 728 | } 729 | }, 730 | "extend": { 731 | "version": "3.0.2", 732 | "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz", 733 | "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==" 734 | }, 735 | "extsprintf": { 736 | "version": "1.3.0", 737 | "resolved": "https://registry.npmjs.org/extsprintf/-/extsprintf-1.3.0.tgz", 738 | "integrity": "sha1-lpGEQOMEGnpBT4xS48V06zw+HgU=" 739 | }, 740 | "fast-deep-equal": { 741 | "version": "3.1.3", 742 | "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", 743 | "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==" 744 | }, 745 | "fast-json-stable-stringify": { 746 | "version": "2.1.0", 747 | "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", 748 | "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==" 749 | }, 750 | "figlet": { 751 | "version": "1.5.2", 752 | "resolved": "https://registry.npmjs.org/figlet/-/figlet-1.5.2.tgz", 753 | "integrity": "sha512-WOn21V8AhyE1QqVfPIVxe3tupJacq1xGkPTB4iagT6o+P2cAgEOOwIxMftr4+ZCTI6d551ij9j61DFr0nsP2uQ==" 754 | }, 755 | "forever-agent": { 756 | "version": "0.6.1", 757 | "resolved": "https://registry.npmjs.org/forever-agent/-/forever-agent-0.6.1.tgz", 758 | "integrity": "sha1-+8cfDEGt6zf5bFd60e1C2P2sypE=" 759 | }, 760 | "form-data": { 761 | "version": "2.3.3", 762 | "resolved": "https://registry.npmjs.org/form-data/-/form-data-2.3.3.tgz", 763 | "integrity": "sha512-1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ==", 764 | "requires": { 765 | "asynckit": "^0.4.0", 766 | "combined-stream": "^1.0.6", 767 | "mime-types": "^2.1.12" 768 | } 769 | }, 770 | "getpass": { 771 | "version": "0.1.7", 772 | "resolved": "https://registry.npmjs.org/getpass/-/getpass-0.1.7.tgz", 773 | "integrity": "sha1-Xv+OPmhNVprkyysSgmBOi6YhSfo=", 774 | "requires": { 775 | "assert-plus": "^1.0.0" 776 | } 777 | }, 778 | "har-schema": { 779 | "version": "2.0.0", 780 | "resolved": "https://registry.npmjs.org/har-schema/-/har-schema-2.0.0.tgz", 781 | "integrity": "sha1-qUwiJOvKwEeCoNkDVSHyRzW37JI=" 782 | }, 783 | "har-validator": { 784 | "version": "5.1.5", 785 | "resolved": "https://registry.npmjs.org/har-validator/-/har-validator-5.1.5.tgz", 786 | "integrity": "sha512-nmT2T0lljbxdQZfspsno9hgrG3Uir6Ks5afism62poxqBM6sDnMEuPmzTq8XN0OEwqKLLdh1jQI3qyE66Nzb3w==", 787 | "requires": { 788 | "ajv": "^6.12.3", 789 | "har-schema": "^2.0.0" 790 | } 791 | }, 792 | "has-flag": { 793 | "version": "4.0.0", 794 | "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", 795 | "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" 796 | }, 797 | "http-signature": { 798 | "version": "1.2.0", 799 | "resolved": "https://registry.npmjs.org/http-signature/-/http-signature-1.2.0.tgz", 800 | "integrity": "sha1-muzZJRFHcvPZW2WmCruPfBj7rOE=", 801 | "requires": { 802 | "assert-plus": "^1.0.0", 803 | "jsprim": "^1.2.2", 804 | "sshpk": "^1.7.0" 805 | } 806 | }, 807 | "is-typedarray": { 808 | "version": "1.0.0", 809 | "resolved": "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz", 810 | "integrity": "sha1-5HnICFjfDBsR3dppQPlgEfzaSpo=" 811 | }, 812 | "isstream": { 813 | "version": "0.1.2", 814 | "resolved": "https://registry.npmjs.org/isstream/-/isstream-0.1.2.tgz", 815 | "integrity": "sha1-R+Y/evVa+m+S4VAOaQ64uFKcCZo=" 816 | }, 817 | "jsbn": { 818 | "version": "0.1.1", 819 | "resolved": "https://registry.npmjs.org/jsbn/-/jsbn-0.1.1.tgz", 820 | "integrity": "sha1-peZUwuWi3rXyAdls77yoDA7y9RM=" 821 | }, 822 | "json-schema": { 823 | "version": "0.2.3", 824 | "resolved": "https://registry.npmjs.org/json-schema/-/json-schema-0.2.3.tgz", 825 | "integrity": "sha1-tIDIkuWaLwWVTOcnvT8qTogvnhM=" 826 | }, 827 | "json-schema-traverse": { 828 | "version": "0.4.1", 829 | "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", 830 | "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==" 831 | }, 832 | "json-stringify-safe": { 833 | "version": "5.0.1", 834 | "resolved": "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz", 835 | "integrity": "sha1-Epai1Y/UXxmg9s4B1lcB4sc1tus=" 836 | }, 837 | "jsprim": { 838 | "version": "1.4.1", 839 | "resolved": "https://registry.npmjs.org/jsprim/-/jsprim-1.4.1.tgz", 840 | "integrity": "sha1-MT5mvB5cwG5Di8G3SZwuXFastqI=", 841 | "requires": { 842 | "assert-plus": "1.0.0", 843 | "extsprintf": "1.3.0", 844 | "json-schema": "0.2.3", 845 | "verror": "1.10.0" 846 | } 847 | }, 848 | "kind-of": { 849 | "version": "5.1.0", 850 | "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz", 851 | "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==" 852 | }, 853 | "longest": { 854 | "version": "2.0.1", 855 | "resolved": "https://registry.npmjs.org/longest/-/longest-2.0.1.tgz", 856 | "integrity": "sha1-eB4YMpaqlPbU2RbcM10NF676I/g=" 857 | }, 858 | "mime-db": { 859 | "version": "1.47.0", 860 | "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.47.0.tgz", 861 | "integrity": "sha512-QBmA/G2y+IfeS4oktet3qRZ+P5kPhCKRXxXnQEudYqUaEioAU1/Lq2us3D/t1Jfo4hE9REQPrbB7K5sOczJVIw==" 862 | }, 863 | "mime-types": { 864 | "version": "2.1.30", 865 | "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.30.tgz", 866 | "integrity": "sha512-crmjA4bLtR8m9qLpHvgxSChT+XoSlZi8J4n/aIdn3z92e/U47Z0V/yl+Wh9W046GgFVAmoNR/fmdbZYcSSIUeg==", 867 | "requires": { 868 | "mime-db": "1.47.0" 869 | } 870 | }, 871 | "oauth-sign": { 872 | "version": "0.9.0", 873 | "resolved": "https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.9.0.tgz", 874 | "integrity": "sha512-fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ==" 875 | }, 876 | "performance-now": { 877 | "version": "2.1.0", 878 | "resolved": "https://registry.npmjs.org/performance-now/-/performance-now-2.1.0.tgz", 879 | "integrity": "sha1-Ywn04OX6kT7BxpMHrjZLSzd8nns=" 880 | }, 881 | "psl": { 882 | "version": "1.8.0", 883 | "resolved": "https://registry.npmjs.org/psl/-/psl-1.8.0.tgz", 884 | "integrity": "sha512-RIdOzyoavK+hA18OGGWDqUTsCLhtA7IcZ/6NCs4fFJaHBDab+pDDmDIByWFRQJq2Cd7r1OoQxBGKOaztq+hjIQ==" 885 | }, 886 | "punycode": { 887 | "version": "2.1.1", 888 | "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz", 889 | "integrity": "sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==" 890 | }, 891 | "qs": { 892 | "version": "6.5.2", 893 | "resolved": "https://registry.npmjs.org/qs/-/qs-6.5.2.tgz", 894 | "integrity": "sha512-N5ZAX4/LxJmF+7wN74pUD6qAh9/wnvdQcjq9TZjevvXzSUo7bfmw91saqMjzGS2xq91/odN2dW/WOl7qQHNDGA==" 895 | }, 896 | "readline": { 897 | "version": "1.3.0", 898 | "resolved": "https://registry.npmjs.org/readline/-/readline-1.3.0.tgz", 899 | "integrity": "sha1-xYDXfvLPyHUrEySYBg3JeTp6wBw=" 900 | }, 901 | "repeat-string": { 902 | "version": "1.6.1", 903 | "resolved": "https://registry.npmjs.org/repeat-string/-/repeat-string-1.6.1.tgz", 904 | "integrity": "sha1-jcrkcOHIirwtYA//Sndihtp15jc=" 905 | }, 906 | "request": { 907 | "version": "2.88.2", 908 | "resolved": "https://registry.npmjs.org/request/-/request-2.88.2.tgz", 909 | "integrity": "sha512-MsvtOrfG9ZcrOwAW+Qi+F6HbD0CWXEh9ou77uOb7FM2WPhwT7smM833PzanhJLsgXjN89Ir6V2PczXNnMpwKhw==", 910 | "requires": { 911 | "aws-sign2": "~0.7.0", 912 | "aws4": "^1.8.0", 913 | "caseless": "~0.12.0", 914 | "combined-stream": "~1.0.6", 915 | "extend": "~3.0.2", 916 | "forever-agent": "~0.6.1", 917 | "form-data": "~2.3.2", 918 | "har-validator": "~5.1.3", 919 | "http-signature": "~1.2.0", 920 | "is-typedarray": "~1.0.0", 921 | "isstream": "~0.1.2", 922 | "json-stringify-safe": "~5.0.1", 923 | "mime-types": "~2.1.19", 924 | "oauth-sign": "~0.9.0", 925 | "performance-now": "^2.1.0", 926 | "qs": "~6.5.2", 927 | "safe-buffer": "^5.1.2", 928 | "tough-cookie": "~2.5.0", 929 | "tunnel-agent": "^0.6.0", 930 | "uuid": "^3.3.2" 931 | } 932 | }, 933 | "safe-buffer": { 934 | "version": "5.2.1", 935 | "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", 936 | "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==" 937 | }, 938 | "safer-buffer": { 939 | "version": "2.1.2", 940 | "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", 941 | "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==" 942 | }, 943 | "sshpk": { 944 | "version": "1.16.1", 945 | "resolved": "https://registry.npmjs.org/sshpk/-/sshpk-1.16.1.tgz", 946 | "integrity": "sha512-HXXqVUq7+pcKeLqqZj6mHFUMvXtOJt1uoUx09pFW6011inTMxqI8BA8PM95myrIyyKwdnzjdFjLiE6KBPVtJIg==", 947 | "requires": { 948 | "asn1": "~0.2.3", 949 | "assert-plus": "^1.0.0", 950 | "bcrypt-pbkdf": "^1.0.0", 951 | "dashdash": "^1.12.0", 952 | "ecc-jsbn": "~0.1.1", 953 | "getpass": "^0.1.1", 954 | "jsbn": "~0.1.0", 955 | "safer-buffer": "^2.0.2", 956 | "tweetnacl": "~0.14.0" 957 | } 958 | }, 959 | "string-to-json": { 960 | "version": "0.1.0", 961 | "resolved": "https://registry.npmjs.org/string-to-json/-/string-to-json-0.1.0.tgz", 962 | "integrity": "sha1-whD3OP0GiVRuxXIHTvJR3SpQ8UE=", 963 | "requires": { 964 | "underscore-x": ">= 0.1.0" 965 | } 966 | }, 967 | "supports-color": { 968 | "version": "7.2.0", 969 | "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", 970 | "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", 971 | "requires": { 972 | "has-flag": "^4.0.0" 973 | } 974 | }, 975 | "tough-cookie": { 976 | "version": "2.5.0", 977 | "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.5.0.tgz", 978 | "integrity": "sha512-nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX/qboeycw6iO8JwVv2+g==", 979 | "requires": { 980 | "psl": "^1.1.28", 981 | "punycode": "^2.1.1" 982 | } 983 | }, 984 | "tunnel-agent": { 985 | "version": "0.6.0", 986 | "resolved": "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz", 987 | "integrity": "sha1-J6XeoGs2sEoKmWZ3SykIaPD8QP0=", 988 | "requires": { 989 | "safe-buffer": "^5.0.1" 990 | } 991 | }, 992 | "tweetnacl": { 993 | "version": "0.14.5", 994 | "resolved": "https://registry.npmjs.org/tweetnacl/-/tweetnacl-0.14.5.tgz", 995 | "integrity": "sha1-WuaBd/GS1EViadEIr6k/+HQ/T2Q=" 996 | }, 997 | "underscore": { 998 | "version": "1.13.1", 999 | "resolved": "https://registry.npmjs.org/underscore/-/underscore-1.13.1.tgz", 1000 | "integrity": "sha512-hzSoAVtJF+3ZtiFX0VgfFPHEDRm7Y/QPjGyNo4TVdnDTdft3tr8hEkD25a1jC+TjTuE7tkHGKkhwCgs9dgBB2g==" 1001 | }, 1002 | "underscore-x": { 1003 | "version": "0.1.0", 1004 | "resolved": "https://registry.npmjs.org/underscore-x/-/underscore-x-0.1.0.tgz", 1005 | "integrity": "sha1-hCCLC46Eh/QpoYpa5g1/Tnmc6m4=", 1006 | "requires": { 1007 | "underscore": ">= 1.4.4" 1008 | } 1009 | }, 1010 | "uri-js": { 1011 | "version": "4.4.1", 1012 | "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", 1013 | "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", 1014 | "requires": { 1015 | "punycode": "^2.1.0" 1016 | } 1017 | }, 1018 | "uuid": { 1019 | "version": "3.4.0", 1020 | "resolved": "https://registry.npmjs.org/uuid/-/uuid-3.4.0.tgz", 1021 | "integrity": "sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==" 1022 | }, 1023 | "verror": { 1024 | "version": "1.10.0", 1025 | "resolved": "https://registry.npmjs.org/verror/-/verror-1.10.0.tgz", 1026 | "integrity": "sha1-OhBcoXBTr1XW4nDB+CiGguGNpAA=", 1027 | "requires": { 1028 | "assert-plus": "^1.0.0", 1029 | "core-util-is": "1.0.2", 1030 | "extsprintf": "^1.2.0" 1031 | } 1032 | } 1033 | } 1034 | } 1035 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "archer", 3 | "version": "1.0.0", 4 | "description": "A Tool to Check for Response Status Codes", 5 | "main": "index.js", 6 | "scripts": { 7 | "help": "node index.js --help" 8 | }, 9 | "author": "0x9747 <0x9778@protonmail.com> (https://umairnehri.in/)", 10 | "license": "ISC", 11 | "dependencies": { 12 | "align-text": "^1.0.2", 13 | "chalk": "^4.1.2", 14 | "colors": "^1.4.0", 15 | "figlet": "^1.5.2", 16 | "readline": "^1.3.0", 17 | "request": "^2.88.2", 18 | "string-to-json": "^0.1.0" 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /pull_request_template.md: -------------------------------------------------------------------------------- 1 | # Description 2 | 3 | Please include a summary of the change and which issue is fixed. Please also include relevant motivation and context. List any dependencies that are required for this change. 4 | 5 | Fixes # (issue) 6 | 7 | ## Type of change 8 | 9 | Please delete options that are not relevant. 10 | 11 | - [ ] Bug fix (non-breaking change which fixes an issue) 12 | - [ ] New feature (non-breaking change which adds functionality) 13 | - [ ] Breaking change (fix or feature that would cause existing functionality to not work as expected) 14 | - [ ] This change requires a documentation update 15 | 16 | # How Has This Been Tested? 17 | 18 | Please describe the tests that you ran to verify your changes. Provide instructions so we can reproduce. Please also list any relevant details for your test configuration 19 | 20 | - [ ] Test A 21 | - [ ] Test B 22 | 23 | **Test Configuration**: 24 | * Firmware version: 25 | * Hardware: 26 | * Toolchain: 27 | * SDK: 28 | 29 | # Checklist: 30 | 31 | - [ ] My code follows the style guidelines of this project 32 | - [ ] I have performed a self-review of my own code 33 | - [ ] I have commented my code, particularly in hard-to-understand areas 34 | - [ ] I have made corresponding changes to the documentation 35 | - [ ] My changes generate no new warnings 36 | - [ ] I have added tests that prove my fix is effective or that my feature works 37 | - [ ] New and existing unit tests pass locally with my changes 38 | - [ ] Any dependent changes have been merged and published in downstream modules 39 | -------------------------------------------------------------------------------- /tests/domains.txt: -------------------------------------------------------------------------------- 1 | https://google.com 2 | https://amazon.com 3 | https://facebook.com 4 | https://apple.com 5 | https://microsoft.com 6 | https://howtogeek.com/wp-content/uploads/2018/06/ 7 | https://www.google.com/example 8 | https://unexistentdomain.main/ 9 | --------------------------------------------------------------------------------