This file contains 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 tkinter import * | |
from watson_developer_cloud import VisualRecognitionV3 | |
import json | |
import os | |
#invoking tkinkter as root | |
root = Tk() | |
#Setting up input, has to be up here since it is invoked below | |
Label(root, text="Enter File Name With Extension").pack() |
This file contains 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
#!/usr/bin/env ruby | |
require 'socket' | |
loop { | |
puts " =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= " | |
puts "Network Hacking Tool" | |
puts "Press 1 to initialize a honeypot server" | |
puts "Press 2 to run a port scan against a host" | |
puts "Press 99 to exit program" | |
print ">>> " |
This file contains 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
--- | |
- hosts: webservers | |
remote_user: terminal | |
become: yes | |
tasks: | |
- apt: | |
name: python3 | |
state: present | |
- apt: | |
name: python3-pip |