Giter VIP home page Giter VIP logo

quidam's People

Contributors

megadose avatar xenox 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

quidam's Issues

No results

Is this tool still in use? It does not appear to return any results

Evolut dependency is broken

python3 quidam.py -m twitter -u user

You select twitter
Traceback (most recent call last):
  File "/tmp/Quidam/quidam.py", line 41, in <module>
    info = twitter(args.username)
  File "/tmp/Quidam/quidam/core.py", line 58, in twitter
    info = evolut(username)
  File "/usr/local/lib/python3.10/dist-packages/evolut-1.4-py3.10.egg/evolut/core.py", line 50, in evolut
    return({"phone":phone,"email":email})
UnboundLocalError: local variable 'phone' referenced before assignment

Some errors

python3 quidam.py -h
Traceback (most recent call last):
File "/home/senia/osint/tools/Quidam/quidam.py", line 3, in
from quidam import *
File "/home/senia/osint/tools/Quidam/quidam/init.py", line 1, in
from quidam.core import *
File "/home/senia/osint/tools/Quidam/quidam/core.py", line 6, in
ua = UserAgent(verify_ssl=False)
^^^^^^^^^^^^^^^^^^^^^^^^^^^
TypeError: FakeUserAgent.init() got an unexpected keyword argument 'verify_ssl'

Python 3.11

Github error catch improvement

In core.py, you test if github returns an error by doing:

if str(r) !="{'message': 'Not Found', 'documentation_url': 'https://developer.github.com/v3/activity/events/#list-events-performed-by-a-user'}":
    for i in r:
        if "commits" in i["payload"].keys():
            for e in i["payload"]["commits"]:
                if e["author"] not in emails:
                    emails.append(e["author"])
    return(emails)
else:
    return()

You can have other errors like:

{"message": "Not Found", "documentation_url": "https://docs.github.com/rest/reference/activity#list-events-for-the-authenticated-user"}

So must be change for something like:

if r.get('message', '') == 'Not Found':
    return()
for i in r:
    if "commits" in i["payload"].keys():
        for e in i["payload"]["commits"]:
            if e["author"] not in emails:
                emails.append(e["author"])
        return(emails)

Not working issue

Hello.
The code is simply not working. It is the great tool, but I can t get it to work.
I ve tried to see coding and lines and to start with python3 even core.py, but something is wrong.
It is working for non of the mentioned websites.
I ve tried using both Twitter names, Instagram names, and Github names.

You select all
Email extract with instagram of andrejki: NULL
Not informations found
Traceback (most recent call last):
File "quidam.py", line 77, in
info = github(args.username)
File "/home/andrejki/Quidam/quidam/core.py", line 74, in github
if r.get('message', '') == 'Not Found':
AttributeError: 'list' object has no attribute 'get'

Best regards

Edit: I did merge the correct typo - same errors.

No results

Hi,

I don't get results on:

python3 quidam.py -u test -m all

You select all
Email extract with instagram of test: NULL
Not informations found
Traceback (most recent call last):
File "quidam.py", line 77, in
info = github(args.username)
File "/tools/Quidam/quidam/core.py", line 74, in github
if r.get('message', '') == 'Not Found':
AttributeError: 'list' object has no attribute 'get'

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.