GithubHelp home page GithubHelp logo

sharadkumar97 / osint-spy Goto Github PK

View Code? Open in Web Editor NEW
1.2K 54.0 182.0 5.71 MB

Performs OSINT scan on email/domain/ip_address/organization using OSINT-SPY. It can be used by Data Miners, Infosec Researchers, Penetration Testers and cyber crime investigator in order to find deep information about their target. If you want to ask something please feel free to reach out to me at [email protected]

Home Page: https://docs.osint-spy.io

License: GNU General Public License v3.0

Python 100.00%

osint-spy's Introduction

OSINT-SPY Search using OSINT(Open Source Intelligence)

Performs OSINT scan on email/domain/ip_address/organization using OSINT-SPY. It can be used by Data Miners, Infosec Researchers, Penetration Testers and cyber crime investigator in order to find deep information about their target.

  • Release 2.0
  • Added Python 3 support.
  • This is the initial release for Python 3, new features will be pushed next week.

OSINT-SPY Documentation (beta)

File Name     :     README
Author        :     @sk_security
Version       :     2.0
Website       :     https://docs.osint-spy.io

Overview of this tool:

  • Perform scan on IP Address / domain / email address / BTC(bitcoin) address / device
  • Find out latest bitcoin block information
  • List out all the ciphers supported by web servers.
  • SSL heart bleed scan
  • Analyze malware or malicous file remotely

Licenses information

OSINT-SPY and its documents are covered with GPL-3.0 (General Public License v3.0)

Using OSINT-SPY

       @@@@@@@@@     @@@@@@@@@  |  @@      @  88888|88888       @@@@@@@@@  8@@@@@@@@  8           @
      88888888888    |          |  @ @     @       |            |          8       @    8        @
      @@@@@@@@@@@    |          |  @  @    @       |            |          8       @      8     @
      88888888888    |@@@@@@@@  |  @   @   @       |      ----  |@@@@@@@@  8@@@@@@@@        8  @
      @@@@@@@@@@@            |  |  @    @  @       |                    |  8                  @
      @@@@@@@@@@@            |  |  @     @ @       |                    |  8                 @
       888888888     @@@@@@@@|  |  @      @@       |            @@@@@@@@|  8                @

                                         Search using OSINT
                                      Website: https://docs.osint-spy.io

        Usage: osint-spy.py [options]
        Options:
        -h,            --help                    show this help message and exit
        --btc_block                              Get latest bitcoin block info
        --btc_date                               Get bitcoin block info by date, example - 20190614
        --btc_address                            Get info of any bitcoin wallet address
        --ssl_cipher                             List out supported SSL ciphers used by any domain
        --ssl_bleed                              Check whether server is vulnerable to heart bleed or not
        --domain                                 Do domain recon
        --email                                  Do email recon
        --device                                 Explore the Internet of Things. Example - opensips,asterisk,juniper,windows10
        --ip                                     WHOIS IP Lookup
        --malware                                Send files to VirusTotal for malware analysis
        --json                                   Show output in JSON format

Contributors

1. Sharad Kumar - @sk_security <twitter handler>

Documentation

osint-spy's People

Contributors

sayam753 avatar sharadkumar97 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

osint-spy's Issues

Error installing requirements

wehen i run the command pip3 install -r requirements.txt i get this output

└─# pip3 install -r requirements.txt
Collecting certifi==2019.11.28 (from -r requirements.txt (line 1))
Downloading certifi-2019.11.28-py2.py3-none-any.whl (156 kB)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 156.0/156.0 kB 3.1 MB/s eta 0:00:00
Requirement already satisfied: chardet==3.0.4 in /usr/local/lib/python3.11/dist-packages (from -r requirements.txt (line 2)) (3.0.4)
Collecting clearbit==0.1.7 (from -r requirements.txt (line 3))
Downloading clearbit-0.1.7.tar.gz (5.0 kB)
Preparing metadata (setup.py) ... error
error: subprocess-exited-with-error

× python setup.py egg_info did not run successfully.
│ exit code: 1
╰─> [1 lines of output]
error in clearbit setup command: use_2to3 is invalid.
[end of output]

note: This error originates from a subprocess, and is likely not a problem with pip.
error: metadata-generation-failed

× Encountered error while generating package metadata.
╰─> See above for output.

note: This is an issue with the package mentioned above, not pip.
hint: See above for details.

githuberror1

file:///home/warewolf/Pictures/githuberror1.png

OSINT-SPY Email search has issues with Fullcontact API.

I've recently installed all the dependencies and have checked all the instructions as specified.
However, while running the command: python osint-spy.py --email , I'm getting the following error:

root@kali:~/OSINT-SPY# python osint-spy.py --email <Email address of the target>
Traceback (most recent call last):
  File "osint-spy.py", line 53, in <module>
    fetchData(email_id)
  File "/root/OSINT-SPY/modules/email.py", line 8, in fetchData
    person = fc.person(email=email_id)
  File "/usr/local/lib/python2.7/dist-packages/fullcontact/fullcontact.py", line 36, in <lambda>
    method = lambda endpoint=endpoint, **kwargs: self.api_get(endpoint, **kwargs)
  File "/usr/local/lib/python2.7/dist-packages/fullcontact/fullcontact.py", line 64, in api_get
    return requests.get(endpoint, params=kwargs, headers=headers)
  File "/usr/local/lib/python2.7/dist-packages/requests/api.py", line 72, in get
    return request('get', url, params=params, **kwargs)
  File "/usr/local/lib/python2.7/dist-packages/requests/api.py", line 58, in request
    return session.request(method=method, url=url, **kwargs)
  File "/usr/local/lib/python2.7/dist-packages/requests/sessions.py", line 494, in request
    prep = self.prepare_request(req)
  File "/usr/local/lib/python2.7/dist-packages/requests/sessions.py", line 437, in prepare_request
    hooks=merge_hooks(request.hooks, self.hooks),
  File "/usr/local/lib/python2.7/dist-packages/requests/models.py", line 306, in prepare
    self.prepare_headers(headers)
  File "/usr/local/lib/python2.7/dist-packages/requests/models.py", line 440, in prepare_headers
    check_header_validity(header)
  File "/usr/local/lib/python2.7/dist-packages/requests/utils.py", line 869, in check_header_validity
    raise InvalidHeader("Invalid return character or leading space in header: %s" % name)
**requests.exceptions.InvalidHeader: Invalid return character or leading space in header: X-FullContact-APIKey**

Note:

  • I've tried rebooting the virtual machine.
  • I've tried running it in both NAT and Bridged networking mode.
  • There's a similar case where I get the output Try Again when I try running it on a domain.

Please Help.

missing module

import clearbit
ImportError: No module named clearbit

can't install in windows

PS D:\shared_folder_for_virtual_machines\OSINT-SPY-master> python install_windows.py
Fatal error in launcher: Unable to create process using '"'
Fatal error in launcher: Unable to create process using '"'
Fatal error in launcher: Unable to create process using '"'
Fatal error in launcher: Unable to create process using '"'
Fatal error in launcher: Unable to create process using '"'
Fatal error in launcher: Unable to create process using '"'
PS D:\shared_folder_for_virtual_machines\OSINT-SPY-master>

can you help please

oinst-spy

Performs OSINT scan on email/domain/ip_address/organization using OSINT-SPY. It can be used by Data Miners, Infosec Researchers, Penetration Testers and cyber crime investigator in order to find deep information about their target. If you want to ask something please feel free to reach out to me at [email protected]

- - email no longer works

I have been using this tool and it is amazing. However, the - - email command has stopped giving any relevant information. I’ve tried to uninstall and install but still no information is retrieved. I tried with a sample email that always worked but nothing comes back. All fields empty. Please help! Any clues?

api error

i entered all api but still get that error

Invalid authentication. Check API key

No module named 'clearbit'

I tried the way that are suggested in closed issue but it does'nt work

Traceback (most recent call last):
File "osint-spy.py", line 1, in
from modules import *
File "/home/vikas/SSPT/OSINT-SPY/modules/init.py", line 2, in
from modules.company_detail import *
File "/home/vikas/SSPT/OSINT-SPY/modules/company_detail.py", line 4, in
import clearbit
ModuleNotFoundError: No module named 'clearbit'

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.