Code Monkey home page Code Monkey logo

Comments (10)

gotr00t0day avatar gotr00t0day commented on June 12, 2024

Ok, do a pull request, for some reason in my last push it didn't add scan.py to modules. It should be working fine now.

from gsec.

d4rkhub avatar d4rkhub commented on June 12, 2024

Oke done.. after re-Install to v0.15 I can run gsec.py.. but I get new issue when scaning..

[+] - Technologies:
Traceback (most recent call last):
  File "/Library/Frameworks/Python.framework/Versions/3.10/lib/python3.10/urllib/request.py", line 1348, in do_open
    h.request(req.get_method(), req.selector, req.data, headers,
  File "/Library/Frameworks/Python.framework/Versions/3.10/lib/python3.10/http/client.py", line 1282, in request
    self._send_request(method, url, body, headers, encode_chunked)
  File "/Library/Frameworks/Python.framework/Versions/3.10/lib/python3.10/http/client.py", line 1328, in _send_request
    self.endheaders(body, encode_chunked=encode_chunked)
  File "/Library/Frameworks/Python.framework/Versions/3.10/lib/python3.10/http/client.py", line 1277, in endheaders
    self._send_output(message_body, encode_chunked=encode_chunked)
  File "/Library/Frameworks/Python.framework/Versions/3.10/lib/python3.10/http/client.py", line 1037, in _send_output
    self.send(msg)
  File "/Library/Frameworks/Python.framework/Versions/3.10/lib/python3.10/http/client.py", line 975, in send
    self.connect()
  File "/Library/Frameworks/Python.framework/Versions/3.10/lib/python3.10/http/client.py", line 1454, in connect
    self.sock = self._context.wrap_socket(self.sock,
  File "/Library/Frameworks/Python.framework/Versions/3.10/lib/python3.10/ssl.py", line 513, in wrap_socket
    return self.sslsocket_class._create(
  File "/Library/Frameworks/Python.framework/Versions/3.10/lib/python3.10/ssl.py", line 1071, in _create
    self.do_handshake()
  File "/Library/Frameworks/Python.framework/Versions/3.10/lib/python3.10/ssl.py", line 1342, in do_handshake
    self._sslobj.do_handshake()
ssl.SSLCertVerificationError: [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:997)
 
During handling of the above exception, another exception occurred:
 
Traceback (most recent call last):
  File "/Users/username/tools/Gsec/gsec.py", line 104, in
    asyncio.run(main())
  File "/Library/Frameworks/Python.framework/Versions/3.10/lib/python3.10/asyncio/runners.py", line 44, in run
    return loop.run_until_complete(main)
  File "/Library/Frameworks/Python.framework/Versions/3.10/lib/python3.10/asyncio/base_events.py", line 646, in run_until_complete
    return future.result()
  File "/Users/username/tools/Gsec/gsec.py", line 90, in main
    robots.robots_scan(args.target)
  File "/Users/username/tools/Gsec/plugins/robots.py", line 15, in robots_scan
    req = urlopen(f"{domain}/robots.txt", data=None)
  File "/Library/Frameworks/Python.framework/Versions/3.10/lib/python3.10/urllib/request.py", line 216, in urlopen
    return opener.open(url, data, timeout)
  File "/Library/Frameworks/Python.framework/Versions/3.10/lib/python3.10/urllib/request.py", line 519, in open
    response = self._open(req, data)
  File "/Library/Frameworks/Python.framework/Versions/3.10/lib/python3.10/urllib/request.py", line 536, in _open
    result = self._call_chain(self.handle_open, protocol, protocol +
  File "/Library/Frameworks/Python.framework/Versions/3.10/lib/python3.10/urllib/request.py", line 496, in _call_chain
    result = func(*args)
  File "/Library/Frameworks/Python.framework/Versions/3.10/lib/python3.10/urllib/request.py", line 1391, in https_open
    return self.do_open(http.client.HTTPSConnection, req,
  File "/Library/Frameworks/Python.framework/Versions/3.10/lib/python3.10/urllib/request.py", line 1351, in do_open
    raise URLError(err)
urllib.error.URLError: <urlopen error [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:997)>

from gsec.

gotr00t0day avatar gotr00t0day commented on June 12, 2024

If you look at the README file, GSec was only tested for python3.9 until python3.10.4 but it seems is having issues after python3.10.4 , So I suggest to only use any version of python3.9 for now or python3.10.4.

from gsec.

gotr00t0day avatar gotr00t0day commented on June 12, 2024

I found a fix for this issue, check if you have certifi installed. "pip install certifi" or "pip3 install certifi" and then do /Applications/Python\ 3.9/Install\ Certificates.command just change 3.9 to 3.10 and it will be fixed.

from gsec.

d4rkhub avatar d4rkhub commented on June 12, 2024

I run "pip3 install certifi"
Requirement already satisfied: certifi in /Library/Frameworks/Python.framework/Versions/3.10/lib/python3.10/site-packages (2022.9.14)

and I Run "python3 -V" my python version
Python 3.10.5

from gsec.

gotr00t0day avatar gotr00t0day commented on June 12, 2024

Yeah, the fix I told you about should fix the problem.

from gsec.

d4rkhub avatar d4rkhub commented on June 12, 2024

Oke thx bro for info, before I upgrade new source gsec I can run gsec but today after upgrade source gsec appears new error

username@host-MacBook-Pro gsec % python3 gsec.py
Traceback (most recent call last):
File "/Users/username/tools/Gsec/gsec.py", line 3, in
from utils import portscanner, loginscanner, techscanner, cmsscanner, passive_recon
File "/Users/username/tools/Gsec/utils/cmsscanner.py", line 4, in
from plugins import agent_list, versioncheck
ImportError: cannot import name 'versioncheck' from 'plugins' (/Users/username/tools/Gsec/plugins/init.py)

versioncheck.py not include in folder plugins?

Problem solved after I manually add versioncheck.py to folder plugins..

from gsec.

gotr00t0day avatar gotr00t0day commented on June 12, 2024

Actually I didn't mean to add versioncheck.py to the push request. That's something I'm working on that's gonna be release in a new version.

from gsec.

d4rkhub avatar d4rkhub commented on June 12, 2024

Noted,, thx bro

from gsec.

gotr00t0day avatar gotr00t0day commented on June 12, 2024

Noted,, thx bro

Join my discord, is in the README

from gsec.

Related Issues (6)

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.