Prints the ASCII banner for Autoswagger with intruder.io link in yellow. Called if not in product mode, to show the standard header.
()
| 264 | logger.info(message) |
| 265 | |
| 266 | def print_banner(): |
| 267 | """ |
| 268 | Prints the ASCII banner for Autoswagger with intruder.io link in yellow. |
| 269 | Called if not in product mode, to show the standard header. |
| 270 | """ |
| 271 | banner = f"""[white] |
| 272 | / | __ __/ /_____ ______ ______ _____ _____ ____ _____ |
| 273 | / /| |/ / / / __/ __ \\/ ___/ | /| / / __ `/ __ `/ __ `/ _ \\/ ___/ |
| 274 | / ___ / /_/ / /_/ /_/ (__ )| |/ |/ / /_/ / /_/ / /_/ / __/ / |
| 275 | /_/ |_\\__,_/\\__/\\____/____/ |__/|__/_\\__,_/\\__, /\\__, /\\___/_/ |
| 276 | /____//____/[/white] |
| 277 | [yellow]https://intruder.io[/yellow] |
| 278 | Find unauthenticated endpoints |
| 279 | """ |
| 280 | console.print(banner) |
| 281 | |
| 282 | def generate_parameter_values(param_type, enum=None): |
| 283 | """ |
no outgoing calls
no test coverage detected