- Metaspoit: Penetration testing software
- BeEF: The Browser Exploitation Framework
- PTF: Penetration Testers Framework
- Bettercap: MITM framework
- Nessus: Vulnerability scanner
- AutoNessus: Auto Nessus
- BDFProxy: Patch Binaries via MITM (BackdoorFactory)
- Xplico: Network Forensic Analysis Tool (eg. parse pcap file)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # | |
| # CloudyGamerLauncher by Larry Gadea | |
| # Easily start/stop Paperspace and Parsec instances | |
| # | |
| # Make sure to fill out the variables below. For the machine name, use the | |
| # 8-letter identifier for the machine on Paperspace (ex. PS8RGDUY) | |
| PAPERSPACE_EMAIL='' | |
| PAPERSPACE_PASSWORD='' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #################################################################### | |
| #Python program to convert temperature from either Fahrenheit to # | |
| #Celsius or vise-versa. This is a very simple function example. # | |
| # # | |
| #################################################################### | |
| def convert(temp, unit): | |
| unit = unit.lower() | |
| if unit == "c": |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| from itertools import permutations | |
| def nextBiggest(): | |
| inputNumber = str(input('Enter number: ')) | |
| for i in sorted(permutations(str(inputNumber))): | |
| nextNumber = int(''.join(i)) | |
| if nextNumber > int(inputNumber): | |
| print(nextNumber) |
OlderNewer