Prints the logo Returns --------- str Return the logo string.
()
| 298 | |
| 299 | |
| 300 | def logo(): |
| 301 | """ |
| 302 | |
| 303 | Prints the logo |
| 304 | |
| 305 | Returns |
| 306 | --------- |
| 307 | str |
| 308 | Return the logo string. |
| 309 | """ |
| 310 | return r""" |
| 311 | _____ _ _____ _ _ |
| 312 | / ____| | | | __ \ (_) (_) |
| 313 | | (___ _ _| |__ | | | | ___ _ __ ___ __ _ _ _ __ _ _______ _ __ |
| 314 | \___ \| | | | '_ \| | | |/ _ \| '_ ` _ \ / _` | | '_ \| |_ / _ \ '__| |
| 315 | ____) | |_| | |_) | |__| | (_) | | | | | | (_| | | | | | |/ / __/ | |
| 316 | |_____/ \__,_|_.__/|_____/ \___/|_| |_| |_|\__,_|_|_| |_|_/___\___|_|Version 2.0 |
| 317 | Find interesting Subdomains and secrets hidden in page, folder, External Javascripts and GitHub |
| 318 | """ |
| 319 | |
| 320 | |
| 321 | def entropy(s): |