GithubHelp home page GithubHelp logo

hhhrrrttt222111 / ethical-hacking-tools Goto Github PK

View Code? Open in Web Editor NEW
1.4K 46.0 250.0 245 KB

Complete Listing and Usage of Tools used for Ethical Hacking

License: Apache License 2.0

ethical-hacking metasploit wireshark hacking hackathon hack hacking-tool hacking-tools hacking-code kali-linux

ethical-hacking-tools's Issues

I need help to ethically defend myself against hackers

Hello Folks, I have been hacked so many times and there is nothing I can do about it.
I have been in cyber security and I have a pretty good understanding of tools but I just never bothered to use them, hoping that the world will leave alone if I stay away but I was wrong.
I am quick learner, I don't stop till I master whatever it is I set out to learn, your help to rump me up will be greatly appreciated!

Phishing tool

Hi sir! I am participating in Hacktoberfest 2021!
I would like to contribute by adding Phishing tool. Please label it as hacktoberfest and assign it to me.

Thanks in advance sir.

PORT

#!/bin/python3
import multiprocessing as mp
import sys
import socket
import datetime
import threading
import colored
from colored import stylize

def prep_file():
time = datetime.datetime.now()
file = open(sys.argv[3], "w")
file.write("-" * 50)
file.write("\n")
file.write("TARGET: " + sys.argv[1])
file.write("\n")
file.write("START OF SCAN: " + str(time.strftime("%H:%M:%S - %d/%m/%Y")))
file.write("\n")
file.write("-" * 50)
file.write("\n")
file.close()

def scan_port(port):
try:
sock = socket.socket(socket.AF_INET,socket.SOCK_STREAM)
result = sock.connect_ex((sys.argv[1],port))
if result == 0:
print(stylize("[+] Port {}: Open".format(port), colored.fg("green")))
if sys.argv[2] == "-o":
file = open(sys.argv[3], "a")
file.write("[+] Port {}: Open\n".format(port))
file.close()
sock.close()
elif sys.argv[2] == "-v":
print(stylize("[-] Port {}: Closed".format(port), colored.fg("red")))
sock.close()
except:
pass # you should handle this error

prep_file()
p = mp.Pool() # will parallelize to number of CPUs you have
p.map(scan_port, range(1, 65535))

Grab Cam

Hi sir! I am participating in Hacktoberfest 2021!
I would like to contribute by adding Camera capturing tool. Please label it as hacktoberfest and assign it to me.

Thanks in advance sir.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.