Git Product home page Git Product logo

the-art-of-hacking / h4cker Goto Github PK

View Code? Open in Web Editor NEW
16.6K 855.0 3.0K 94.51 MB

This repository is primarily maintained by Omar Santos (@santosomar) and includes thousands of resources related to ethical hacking, bug bounties, digital forensics and incident response (DFIR), artificial intelligence security, vulnerability research, exploit development, reverse engineering, and more.

Home Page: https://hackerrepo.org

License: MIT License

C 0.75% Python 14.99% Shell 2.22% Java 2.04% Rich Text Format 2.72% Jupyter Notebook 76.39% JavaScript 0.05% Makefile 0.05% PHP 0.79%
hacking penetration-testing hacking-series cybersecurity ethical-hacking hacker exploit exploits exploit-development vulnerability

h4cker's People

Contributors

aaaguirrep avatar bnevis-i avatar cclauss avatar cmm-cisco avatar cybersecurityrepo avatar digenaldo avatar dmitriystoyanov avatar gds-domingues avatar hybrid2232000 avatar i2sam7 avatar iamharshit188 avatar jesusmoraleda avatar kapilseth03 avatar leowhitehead avatar luci-d avatar marky1124 avatar nicksherron avatar ogarrett avatar pentesttools-com avatar santosomar avatar the1ntern avatar turkmenkaan avatar xatier avatar zakirucker avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

h4cker's Issues

Undefined names in SCOR/threat-response-api-example.py

./SCOR/threat-response-api-example.py#L92-L99

$ flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics

./SCOR/threat-response-api-example.py:96:42: F821 undefined name 'text_block'
    response = TR_check_auth(TR_inspect, text_block)
                                         ^
./SCOR/threat-response-api-example.py:98:30: F821 undefined name 'TR_enrich'
    response = TR_check_auth(TR_enrich, inspect_output)
                             ^

https://flake8.pycqa.org/en/latest/user/error-codes.html

On the flake8 test selection, this PR does not focus on "style violations" (the majority of flake8 error codes that psf/black can autocorrect). Instead these tests focus on runtime safety and correctness:

  • E9 tests are about Python syntax errors usually raised because flake8 can not build an Abstract Syntax Tree (AST). Often these issues are a sign of unused code or code that has not been ported to Python 3. These would be compile-time errors in a compiled language but in a dynamic language like Python they result in the script halting/crashing on the user.
  • F63 tests are usually about the confusion between identity and equality in Python. Use ==/!= to compare str, bytes, and int literals is the classic case. These are areas where a == b is True but a is b is False (or vice versa). Python >= 3.8 will raise SyntaxWarnings on these instances.
  • F7 tests logic errors and syntax errors in type hints
  • F82 tests are almost always undefined names which are usually a sign of a typo, missing imports, or code that has not been ported to Python 3. These also would be compile-time errors in a compiled language but in Python a NameError is raised which will halt/crash the script on the user.

error whlie executing code in kali linux : pip install -r requirements.txt

DEPRECATION: Python 2.7 reached the end of its life on January 1st, 2020. Please upgrade your Python as Python 2.7 is no longer maintained. pip 21.0 will drop support for Python 2.7 in January 2021. More details about Python 2 support in pip, can be found at https://pip.pypa.io/en/latest/development/release-process/#python-2-support
Collecting git+https://github.com/kti/python-netfilterqueue (from -r requirements.txt (line 1))
Cloning https://github.com/kti/python-netfilterqueue to /tmp/pip-req-build-5lmtH3
Running command git clone -q https://github.com/kti/python-netfilterqueue /tmp/pip-req-build-5lmtH3
Requirement already satisfied: pyinotify in /usr/lib/python2.7/dist-packages (from -r requirements.txt (line 2)) (0.9.6)
Requirement already satisfied: pycrypto in /usr/lib/python2.7/dist-packages (from -r requirements.txt (line 3)) (2.6.1)
Requirement already satisfied: pyasn1 in /usr/lib/python2.7/dist-packages (from -r requirements.txt (line 4)) (0.4.2)
Requirement already satisfied: cryptography in /usr/lib/python2.7/dist-packages (from -r requirements.txt (line 5)) (2.6.1)
Requirement already satisfied: Pillow in /usr/lib/python2.7/dist-packages (from -r requirements.txt (line 6)) (6.2.0)
Requirement already satisfied: netaddr in /usr/lib/python2.7/dist-packages (from -r requirements.txt (line 7)) (0.7.19)
Requirement already satisfied: scapy in /usr/lib/python2.7/dist-packages (from -r requirements.txt (line 8)) (2.4.3)
Requirement already satisfied: dnslib in /usr/local/lib/python2.7/dist-packages (from -r requirements.txt (line 9)) (0.9.14)
Requirement already satisfied: Twisted in /usr/lib/python2.7/dist-packages (from -r requirements.txt (line 10)) (18.9.0)
Requirement already satisfied: lxml in /usr/lib/python2.7/dist-packages (from -r requirements.txt (line 11)) (4.4.1)
Requirement already satisfied: pefile in /usr/lib/python2.7/dist-packages (from -r requirements.txt (line 12)) (2019.4.18)
Requirement already satisfied: ipy in /usr/lib/python2.7/dist-packages (from -r requirements.txt (line 13)) (0.83)
Requirement already satisfied: user_agents in /usr/local/lib/python2.7/dist-packages (from -r requirements.txt (line 14)) (2.1)
Requirement already satisfied: pyopenssl in /usr/lib/python2.7/dist-packages (from -r requirements.txt (line 15)) (19.0.0)
Requirement already satisfied: service_identity in /usr/lib/python2.7/dist-packages (from -r requirements.txt (line 16)) (18.1.0)
Requirement already satisfied: configobj in /usr/local/lib/python2.7/dist-packages (from -r requirements.txt (line 17)) (5.0.6)
Requirement already satisfied: Flask in /usr/lib/python2.7/dist-packages (from -r requirements.txt (line 18)) (1.1.1)
Requirement already satisfied: dnspython in /usr/lib/python2.7/dist-packages (from -r requirements.txt (line 19)) (1.16.0)
Requirement already satisfied: beautifulsoup4 in /usr/lib/python2.7/dist-packages (from -r requirements.txt (line 20)) (4.8.0)
Requirement already satisfied: capstone in /usr/local/lib/python2.7/dist-packages (from -r requirements.txt (line 21)) (4.0.2)
Requirement already satisfied: python-magic in /usr/lib/python2.7/dist-packages (from -r requirements.txt (line 22)) (0.4.16)
Requirement already satisfied: msgpack-python in /usr/local/lib/python2.7/dist-packages (from -r requirements.txt (line 23)) (0.5.6)
Requirement already satisfied: requests in /usr/lib/python2.7/dist-packages (from -r requirements.txt (line 24)) (2.21.0)
Collecting pypcap
Using cached pypcap-1.2.3.tar.gz (136 kB)
Requirement already satisfied: chardet in /usr/lib/python2.7/dist-packages (from -r requirements.txt (line 26)) (3.0.4)
Requirement already satisfied: ua-parser>=0.9.0 in /usr/local/lib/python2.7/dist-packages (from user_agents->-r requirements.txt (line 14)) (0.10.0)
Requirement already satisfied: ipaddress in /usr/lib/python2.7/dist-packages (from service_identity->-r requirements.txt (line 16)) (1.0.17)
Requirement already satisfied: six in /usr/lib/python2.7/dist-packages (from configobj->-r requirements.txt (line 17)) (1.13.0)
Using legacy setup.py install for pypcap, since package 'wheel' is not installed.
Using legacy setup.py install for NetfilterQueue, since package 'wheel' is not installed.
Installing collected packages: pypcap, NetfilterQueue
Running setup.py install for pypcap ... error
ERROR: Command errored out with exit status 1:
command: /usr/bin/python -u -c 'import sys, setuptools, tokenize; sys.argv[0] = '"'"'/tmp/pip-install-9Tno8n/pypcap/setup.py'"'"'; file='"'"'/tmp/pip-install-9Tno8n/pypcap/setup.py'"'"';f=getattr(tokenize, '"'"'open'"'"', open)(file);code=f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, file, '"'"'exec'"'"'))' install --record /tmp/pip-record-H6wsGA/install-record.txt --single-version-externally-managed --compile --install-headers /usr/local/include/python2.7/pypcap
cwd: /tmp/pip-install-9Tno8n/pypcap/
Complete output (15 lines):
Found pcap headers in /usr/include/pcap.h
Found libraries in /usr/lib/x86_64-linux-gnu/libpcap.so
found pcap_get_tstamp_precision function
found pcap_setdirection
found pcap_setnonblock
found pcap_compile_nopcap function
running install
running build
running build_ext
building 'pcap' extension
creating build
creating build/temp.linux-x86_64-2.7
x86_64-linux-gnu-gcc -pthread -fno-strict-aliasing -Wdate-time -D_FORTIFY_SOURCE=2 -g -fdebug-prefix-map=/build/python2.7-07FOaN/python2.7-2.7.17=. -fstack-protector-strong -Wformat -Werror=format-security -fPIC -DHAVE_PCAP_TSTAMP_PRECISION=1 -DHAVE_PCAP_SETDIRECTION=1 -DHAVE_PCAP_SETNONBLOCK=1 -DHAVE_PCAP_COMPILE_NOPCAP=1 -I/usr/include -I/usr/include/python2.7 -c pcap.c -o build/temp.linux-x86_64-2.7/pcap.o
unable to execute 'x86_64-linux-gnu-gcc': No such file or directory
error: command 'x86_64-linux-gnu-gcc' failed with exit status 1
----------------------------------------
ERROR: Command errored out with exit status 1: /usr/bin/python -u -c 'import sys, setuptools, tokenize; sys.argv[0] = '"'"'/tmp/pip-install-9Tno8n/pypcap/setup.py'"'"'; file='"'"'/tmp/pip-install-9Tno8n/pypcap/setup.py'"'"';f=getattr(tokenize, '"'"'open'"'"', open)(file);code=f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, file, '"'"'exec'"'"'))' install --record /tmp/pip-record-H6wsGA/install-record.txt --single-version-externally-managed --compile --install-headers /usr/local/include/python2.7/pypcap Check the logs for full command output.

new_tools.md: Typos discovered by codespell

% codespell . --ignore-words-list=ba,referer --skip=./.* --quiet-level=2 || true

./new_tools.md:67: Helpfull ==> Helpful
./new_tools.md:93: Desgined ==> Designed
./new_tools.md:130: usefull ==> useful
./new_tools.md:130: wraped ==> wrapped, warped
./new_tools.md:151: Tunelling ==> Tunneling
./new_tools.md:162: IAM ==> I AM, AIM
./new_tools.md:199: Configureable ==> Configurable
./new_tools.md:268: Informations ==> Information
./new_tools.md:366: Technics ==> Techniques
./new_tools.md:418: Experimetal ==> Experimental
./new_tools.md:622: Powerfull ==> Powerful
./more_tools.md:20: Devive ==> Device
./more_tools.md:30: Vulnerabilites ==> Vulnerabilities
./more_tools.md:55: Analizer ==> Analyzer
./more_tools.md:73: Reconnaisance ==> Reconnaissance
./more_tools.md:501: Powerfull ==> Powerful
./more_tools.md:623: Reconnaisance ==> Reconnaissance
./more_tools.md:826: Powerfull ==> Powerful

websploit

Docker and containers are not being installed when running:
curl -sSL https://websploit.org/install.sh | sudo bash

THIS IS WHAT I GOT AFTER INSTALLATION IS FINISHED:
The following are the running containers:
/root/containers.sh: line 29: docker: command not found.

unable to run websploit labs.

hi everyone! i recently installed the websploit labs on my parrot os , but i am unable to find how to see it on my terminal and have no idea on how to use it,...
ANY HELP WOULD BE HIGHLY APPRECIATED..
[email protected]

Hack

[donut amount]=(99999)|>{[activate on app startup]}>

Installation doesn't fail if docker isn't installed

While attempting to install websploit on an arm64 machine which didn't have docker installed, the install succeeds and tells me a number of container IPs, despite no containers running. I was expecting the install to fail before that

Below are the full installation logs which hopefully will help.

logs.txt

Installing websploit.org tools in Kali

Apologies if this is the wrong place to ask the question, I am installing in Kali the tools from the websploit.org site (as part of an O'Reilly course), at the end of the installation I get an error with docker: "/usr/local/bin/containers: line 36: docker: command not found, if I try to start the service it says "unit: docker.service not found". Please could you guide me to the right place to get help, thank you

Leave it

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.