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
| name = raw_input("Welcome to the Legal Hackers intake robot. What is your name? ") | |
| print("Hello, " + name + ", how can we assist you?") | |
| print(" You can INPUT 1 for corporate help.") | |
| print(" You can INPUT 2 for IP help.") | |
| print(" You can INPUT 3 for something else.") | |
| firstInput = raw_input("Please make your selection now: ") | |
| def firstResponse(output): | |
| if firstInput == 1: |
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
| # -*- coding: utf-8 -*- | |
| import sys | |
| import os | |
| import base64 | |
| import bcrypt | |
| from Crypto import Random | |
| from Crypto.Cipher import AES | |
| from Crypto.Hash import SHA256 | |
| class Blockout: |