Giter Site home page Giter Site logo

teamdefronix / cyberonix Goto Github PK

View Code? Open in Web Editor NEW
309.0 11.0 64.0 3.48 MB

Cyberonix is a complete resource hub for Cyber Security Community. Our aim is to make this tool an 1 stop solution for all the Hackers out there to get resources of various topics in Cyber Security. We will keep updating this tool & adding new & updated resources on the go.

Home Page: https://defronix.com/

License: MIT License

Python 98.57% Roff 1.43%
cheatsheet cybersecurity cybersecurity-framework cybersecurity-news cybersecurity-tools framework hacking hacking-framework hacking-tool hacking-toolkit

cyberonix's People

Contributors

0xmrr0b0t avatar ajmewal avatar amitdubey12 avatar anmolsecsavvy avatar b14ckky avatar defronixpro avatar ethicalrishab avatar incoggeek avatar inderjeetsi avatar junaidmujawar avatar lucy0070 avatar mihir220 avatar mohita9138 avatar naman-devnani avatar pradip1719 avatar sb00021 avatar thech13f avatar yashparwal1 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

cyberonix's Issues

python3 not support

└─$ sudo python3 setup.py
[sudo] password for techteams:
Traceback (most recent call last):
File "/home/techteams/Cyberonix/setup.py", line 5, in
import cyberonix
File "/home/techteams/Cyberonix/cyberonix.py", line 4, in
from main import *
File "/home/techteams/Cyberonix/main/arguments.py", line 3, in
from selenium import webdriver
ModuleNotFoundError: No module named 'selenium'

AttributeError: module 'collections' has no attribute 'MutableMapping'

┌──(kali㉿kali)-[~/Desktop/Cyberonix]
└─$ sudo cyberonix
[sudo] password for kali:
Traceback (most recent call last):
File "/home/kali/Desktop/Cyberonix/./setup.py", line 5, in
import cyberonix
File "/home/kali/Desktop/Cyberonix/cyberonix.py", line 4, in
from main import *
File "/home/kali/Desktop/Cyberonix/main/arguments.py", line 1, in
import dns.resolver, requests, socket, os, time
File "/usr/local/lib/python3.11/dist-packages/requests/init.py", line 58, in
from . import utils
File "/usr/local/lib/python3.11/dist-packages/requests/utils.py", line 30, in
from .cookies import RequestsCookieJar, cookiejar_from_dict
File "/usr/local/lib/python3.11/dist-packages/requests/cookies.py", line 164, in
class RequestsCookieJar(cookielib.CookieJar, collections.MutableMapping):
^^^^^^^^^^^^^^^^^^^^^^^^^^
AttributeError: module 'collections' has no attribute 'MutableMapping'

Bug

Describe the bug
A clear and concise description of what the bug is.

To Reproduce
Steps to reproduce the behavior:

  1. Go to '...'
  2. Click on '....'
  3. Scroll down to '....'
  4. See error

Expected behavior
A clear and concise description of what you expected to happen.

Screenshots
If applicable, add screenshots to help explain your problem.

Desktop (please complete the following information):

  • OS: [e.g. iOS]
  • Browser [e.g. chrome, safari]
  • Version [e.g. 22]

Smartphone (please complete the following information):

  • Device: [e.g. iPhone6]
  • OS: [e.g. iOS8.1]
  • Browser [e.g. stock browser, safari]
  • Version [e.g. 22]

Additional context
Add any other context about the problem here.

sir i am unable to use the tool sir

Screenshot 2024-05-31 082207
Is your feature request related to a problem? Please describe.
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]

Describe the solution you'd like
A clear and concise description of what you want to happen.

Describe alternatives you've considered
A clear and concise description of any alternative solutions or features you've considered.

Additional context
Add any other context or screenshots about the feature request here.

Bug report

Describe the bug
A clear and concise description of what the bug is.

To Reproduce
Steps to reproduce the behavior:

  1. Go to '...'
  2. Click on '....'
  3. Scroll down to '....'
  4. See error

Expected behavior
A clear and concise description of what you expected to happen.

Screenshots
If applicable, add screenshots to help explain your problem.

Desktop (please complete the following information):

  • OS: [e.g. iOS]
  • Browser [e.g. chrome, safari]
  • Version [e.g. 22]

Smartphone (please complete the following information):

  • Device: [e.g. iPhone6]
  • OS: [e.g. iOS8.1]
  • Browser [e.g. stock browser, safari]
  • Version [e.g. 22]

Additional context
Add any other context about the problem here.

Feature request: Using IPinfo.io for IP information (IP Geolocation + ASN)

Is your feature request related to a problem? Please describe.

Hi, I noticed that the current IP geolocation API provider does not offer https/SSL encryption for its free tier access. Most of the services here use https, which is why I would like to recommend ipinfo.io. IPinfo supports SSL encryption and, on tokenless access, can handle 1,000 requests per day. With a free access tier token, the limit is 50,000 requests per month.

Describe the solution you'd like
A clear and concise description of what you want to happen.

The current implementation of the code is the following:

url = f"http://ip-api.com/json/{url}"

        temp=url
--        url = f"http://ip-api.com/json/{url}"
++        url = f"https://ipinfo.io/{url}/json"
        response = requests.get(url)

Additional context
Add any other context or screenshots about the feature request here.

Another aspect to note is the synchronous nature of the code described here:

try:
f = open(path, "r")
urls = f.read()
urls = urls.split("\n")
for url in urls:

Bulk IP enrichment and async operations can be supported if used via the IPinfo module.


Disclaimer: I work for IPinfo.

ModuleNotFoundError: No module named 'selenium'

Traceback (most recent call last):
File "/home/cdworld/Cyberonix/cyberonix.py", line 4, in
from main import *
File "/home/cdworld/Cyberonix/main/arguments.py", line 3, in
from selenium import webdriver
ModuleNotFoundError: No module named 'selenium'
Traceback (most recent call last):
File "/home/cdworld/Cyberonix/cyberonix.py", line 4, in
from main import *
File "/home/cdworld/Cyberonix/main/arguments.py", line 3, in
from selenium import webdriver
ModuleNotFoundError: No module named 'selenium'

I have allerady downloaded selenium

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.