fofa 0.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
 - data/CODE_OF_CONDUCT.md +49 -0
 - data/Gemfile +6 -0
 - data/Gemfile.lock +37 -0
 - data/LICENSE.txt +21 -0
 - data/README.md +42 -0
 - data/Rakefile +6 -0
 - data/bin/console +14 -0
 - data/bin/fofacli +101 -0
 - data/bin/setup +8 -0
 - data/fofa.gemspec +34 -0
 - data/lib/fofa.rb +88 -0
 - data/lib/fofa/version.rb +3 -0
 - metadata +99 -0
 
    
        checksums.yaml
    ADDED
    
    | 
         @@ -0,0 +1,7 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            ---
         
     | 
| 
      
 2 
     | 
    
         
            +
            SHA1:
         
     | 
| 
      
 3 
     | 
    
         
            +
              metadata.gz: 9bf29364f1e2529bff9a522f6b9d0bea1b83ecc2
         
     | 
| 
      
 4 
     | 
    
         
            +
              data.tar.gz: 3a56e6bf2bd1cf675325250d40079bbf8f82ab3a
         
     | 
| 
      
 5 
     | 
    
         
            +
            SHA512:
         
     | 
| 
      
 6 
     | 
    
         
            +
              metadata.gz: dbf1563ffd7138481a82f8c473bf9632641da7ebecabbaf13e123b2918e4668fea57eef04481288a2a173051c3f192ded62e65fd8ce5fb64d5bcc239dab136df
         
     | 
| 
      
 7 
     | 
    
         
            +
              data.tar.gz: 1c44cfbf1fabee47384ae686b57778d4a8d4e10ff625db37644beb70e29d6df08af659dceeefe4bcedf6260948c669698ded6164b5436191f3557a64d3c4b16e
         
     | 
    
        data/CODE_OF_CONDUCT.md
    ADDED
    
    | 
         @@ -0,0 +1,49 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            # Contributor Code of Conduct
         
     | 
| 
      
 2 
     | 
    
         
            +
             
     | 
| 
      
 3 
     | 
    
         
            +
            As contributors and maintainers of this project, and in the interest of
         
     | 
| 
      
 4 
     | 
    
         
            +
            fostering an open and welcoming community, we pledge to respect all people who
         
     | 
| 
      
 5 
     | 
    
         
            +
            contribute through reporting issues, posting feature requests, updating
         
     | 
| 
      
 6 
     | 
    
         
            +
            documentation, submitting pull requests or patches, and other activities.
         
     | 
| 
      
 7 
     | 
    
         
            +
             
     | 
| 
      
 8 
     | 
    
         
            +
            We are committed to making participation in this project a harassment-free
         
     | 
| 
      
 9 
     | 
    
         
            +
            experience for everyone, regardless of level of experience, gender, gender
         
     | 
| 
      
 10 
     | 
    
         
            +
            identity and expression, sexual orientation, disability, personal appearance,
         
     | 
| 
      
 11 
     | 
    
         
            +
            body size, race, ethnicity, age, religion, or nationality.
         
     | 
| 
      
 12 
     | 
    
         
            +
             
     | 
| 
      
 13 
     | 
    
         
            +
            Examples of unacceptable behavior by participants include:
         
     | 
| 
      
 14 
     | 
    
         
            +
             
     | 
| 
      
 15 
     | 
    
         
            +
            * The use of sexualized language or imagery
         
     | 
| 
      
 16 
     | 
    
         
            +
            * Personal attacks
         
     | 
| 
      
 17 
     | 
    
         
            +
            * Trolling or insulting/derogatory comments
         
     | 
| 
      
 18 
     | 
    
         
            +
            * Public or private harassment
         
     | 
| 
      
 19 
     | 
    
         
            +
            * Publishing other's private information, such as physical or electronic
         
     | 
| 
      
 20 
     | 
    
         
            +
              addresses, without explicit permission
         
     | 
| 
      
 21 
     | 
    
         
            +
            * Other unethical or unprofessional conduct
         
     | 
| 
      
 22 
     | 
    
         
            +
             
     | 
| 
      
 23 
     | 
    
         
            +
            Project maintainers have the right and responsibility to remove, edit, or
         
     | 
| 
      
 24 
     | 
    
         
            +
            reject comments, commits, code, wiki edits, issues, and other contributions
         
     | 
| 
      
 25 
     | 
    
         
            +
            that are not aligned to this Code of Conduct, or to ban temporarily or
         
     | 
| 
      
 26 
     | 
    
         
            +
            permanently any contributor for other behaviors that they deem inappropriate,
         
     | 
| 
      
 27 
     | 
    
         
            +
            threatening, offensive, or harmful.
         
     | 
| 
      
 28 
     | 
    
         
            +
             
     | 
| 
      
 29 
     | 
    
         
            +
            By adopting this Code of Conduct, project maintainers commit themselves to
         
     | 
| 
      
 30 
     | 
    
         
            +
            fairly and consistently applying these principles to every aspect of managing
         
     | 
| 
      
 31 
     | 
    
         
            +
            this project. Project maintainers who do not follow or enforce the Code of
         
     | 
| 
      
 32 
     | 
    
         
            +
            Conduct may be permanently removed from the project team.
         
     | 
| 
      
 33 
     | 
    
         
            +
             
     | 
| 
      
 34 
     | 
    
         
            +
            This code of conduct applies both within project spaces and in public spaces
         
     | 
| 
      
 35 
     | 
    
         
            +
            when an individual is representing the project or its community.
         
     | 
| 
      
 36 
     | 
    
         
            +
             
     | 
| 
      
 37 
     | 
    
         
            +
            Instances of abusive, harassing, or otherwise unacceptable behavior may be
         
     | 
| 
      
 38 
     | 
    
         
            +
            reported by contacting a project maintainer at zhaowu@baimaohui.net. All
         
     | 
| 
      
 39 
     | 
    
         
            +
            complaints will be reviewed and investigated and will result in a response that
         
     | 
| 
      
 40 
     | 
    
         
            +
            is deemed necessary and appropriate to the circumstances. Maintainers are
         
     | 
| 
      
 41 
     | 
    
         
            +
            obligated to maintain confidentiality with regard to the reporter of an
         
     | 
| 
      
 42 
     | 
    
         
            +
            incident.
         
     | 
| 
      
 43 
     | 
    
         
            +
             
     | 
| 
      
 44 
     | 
    
         
            +
            This Code of Conduct is adapted from the [Contributor Covenant][homepage],
         
     | 
| 
      
 45 
     | 
    
         
            +
            version 1.3.0, available at
         
     | 
| 
      
 46 
     | 
    
         
            +
            [http://contributor-covenant.org/version/1/3/0/][version]
         
     | 
| 
      
 47 
     | 
    
         
            +
             
     | 
| 
      
 48 
     | 
    
         
            +
            [homepage]: http://contributor-covenant.org
         
     | 
| 
      
 49 
     | 
    
         
            +
            [version]: http://contributor-covenant.org/version/1/3/0/
         
     | 
    
        data/Gemfile
    ADDED
    
    
    
        data/Gemfile.lock
    ADDED
    
    | 
         @@ -0,0 +1,37 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            PATH
         
     | 
| 
      
 2 
     | 
    
         
            +
              remote: .
         
     | 
| 
      
 3 
     | 
    
         
            +
              specs:
         
     | 
| 
      
 4 
     | 
    
         
            +
                fofa (0.2.0)
         
     | 
| 
      
 5 
     | 
    
         
            +
             
     | 
| 
      
 6 
     | 
    
         
            +
            GEM
         
     | 
| 
      
 7 
     | 
    
         
            +
              remote: https://rubygems.org/
         
     | 
| 
      
 8 
     | 
    
         
            +
              specs:
         
     | 
| 
      
 9 
     | 
    
         
            +
                colorize (0.8.1)
         
     | 
| 
      
 10 
     | 
    
         
            +
                diff-lcs (1.2.5)
         
     | 
| 
      
 11 
     | 
    
         
            +
                rake (10.5.0)
         
     | 
| 
      
 12 
     | 
    
         
            +
                rspec (3.5.0)
         
     | 
| 
      
 13 
     | 
    
         
            +
                  rspec-core (~> 3.5.0)
         
     | 
| 
      
 14 
     | 
    
         
            +
                  rspec-expectations (~> 3.5.0)
         
     | 
| 
      
 15 
     | 
    
         
            +
                  rspec-mocks (~> 3.5.0)
         
     | 
| 
      
 16 
     | 
    
         
            +
                rspec-core (3.5.3)
         
     | 
| 
      
 17 
     | 
    
         
            +
                  rspec-support (~> 3.5.0)
         
     | 
| 
      
 18 
     | 
    
         
            +
                rspec-expectations (3.5.0)
         
     | 
| 
      
 19 
     | 
    
         
            +
                  diff-lcs (>= 1.2.0, < 2.0)
         
     | 
| 
      
 20 
     | 
    
         
            +
                  rspec-support (~> 3.5.0)
         
     | 
| 
      
 21 
     | 
    
         
            +
                rspec-mocks (3.5.0)
         
     | 
| 
      
 22 
     | 
    
         
            +
                  diff-lcs (>= 1.2.0, < 2.0)
         
     | 
| 
      
 23 
     | 
    
         
            +
                  rspec-support (~> 3.5.0)
         
     | 
| 
      
 24 
     | 
    
         
            +
                rspec-support (3.5.0)
         
     | 
| 
      
 25 
     | 
    
         
            +
             
     | 
| 
      
 26 
     | 
    
         
            +
            PLATFORMS
         
     | 
| 
      
 27 
     | 
    
         
            +
              ruby
         
     | 
| 
      
 28 
     | 
    
         
            +
             
     | 
| 
      
 29 
     | 
    
         
            +
            DEPENDENCIES
         
     | 
| 
      
 30 
     | 
    
         
            +
              bundler (~> 1.12)
         
     | 
| 
      
 31 
     | 
    
         
            +
              colorize
         
     | 
| 
      
 32 
     | 
    
         
            +
              fofa!
         
     | 
| 
      
 33 
     | 
    
         
            +
              rake (~> 10.0)
         
     | 
| 
      
 34 
     | 
    
         
            +
              rspec (~> 3.0)
         
     | 
| 
      
 35 
     | 
    
         
            +
             
     | 
| 
      
 36 
     | 
    
         
            +
            BUNDLED WITH
         
     | 
| 
      
 37 
     | 
    
         
            +
               1.13.7
         
     | 
    
        data/LICENSE.txt
    ADDED
    
    | 
         @@ -0,0 +1,21 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            The MIT License (MIT)
         
     | 
| 
      
 2 
     | 
    
         
            +
             
     | 
| 
      
 3 
     | 
    
         
            +
            Copyright (c) 2016 zhaowu
         
     | 
| 
      
 4 
     | 
    
         
            +
             
     | 
| 
      
 5 
     | 
    
         
            +
            Permission is hereby granted, free of charge, to any person obtaining a copy
         
     | 
| 
      
 6 
     | 
    
         
            +
            of this software and associated documentation files (the "Software"), to deal
         
     | 
| 
      
 7 
     | 
    
         
            +
            in the Software without restriction, including without limitation the rights
         
     | 
| 
      
 8 
     | 
    
         
            +
            to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
         
     | 
| 
      
 9 
     | 
    
         
            +
            copies of the Software, and to permit persons to whom the Software is
         
     | 
| 
      
 10 
     | 
    
         
            +
            furnished to do so, subject to the following conditions:
         
     | 
| 
      
 11 
     | 
    
         
            +
             
     | 
| 
      
 12 
     | 
    
         
            +
            The above copyright notice and this permission notice shall be included in
         
     | 
| 
      
 13 
     | 
    
         
            +
            all copies or substantial portions of the Software.
         
     | 
| 
      
 14 
     | 
    
         
            +
             
     | 
| 
      
 15 
     | 
    
         
            +
            THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
         
     | 
| 
      
 16 
     | 
    
         
            +
            IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
         
     | 
| 
      
 17 
     | 
    
         
            +
            FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
         
     | 
| 
      
 18 
     | 
    
         
            +
            AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
         
     | 
| 
      
 19 
     | 
    
         
            +
            LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
         
     | 
| 
      
 20 
     | 
    
         
            +
            OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
         
     | 
| 
      
 21 
     | 
    
         
            +
            THE SOFTWARE.
         
     | 
    
        data/README.md
    ADDED
    
    | 
         @@ -0,0 +1,42 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            # Fofa
         
     | 
| 
      
 2 
     | 
    
         
            +
             
     | 
| 
      
 3 
     | 
    
         
            +
            ```
         
     | 
| 
      
 4 
     | 
    
         
            +
            fofacli -e lubyruffy@gmail.com -a 3504e7a27817dada228e2f35a6077844 -p 2 domain=huawei.com
         
     | 
| 
      
 5 
     | 
    
         
            +
            ```
         
     | 
| 
      
 6 
     | 
    
         
            +
             
     | 
| 
      
 7 
     | 
    
         
            +
            ## Installation
         
     | 
| 
      
 8 
     | 
    
         
            +
             
     | 
| 
      
 9 
     | 
    
         
            +
            Add this line to your application's Gemfile:
         
     | 
| 
      
 10 
     | 
    
         
            +
             
     | 
| 
      
 11 
     | 
    
         
            +
            ```ruby
         
     | 
| 
      
 12 
     | 
    
         
            +
            gem 'fofa'
         
     | 
| 
      
 13 
     | 
    
         
            +
            ```
         
     | 
| 
      
 14 
     | 
    
         
            +
             
     | 
| 
      
 15 
     | 
    
         
            +
            And then execute:
         
     | 
| 
      
 16 
     | 
    
         
            +
             
     | 
| 
      
 17 
     | 
    
         
            +
                $ bundle
         
     | 
| 
      
 18 
     | 
    
         
            +
             
     | 
| 
      
 19 
     | 
    
         
            +
            Or install it yourself as:
         
     | 
| 
      
 20 
     | 
    
         
            +
             
     | 
| 
      
 21 
     | 
    
         
            +
                $ gem install fofa
         
     | 
| 
      
 22 
     | 
    
         
            +
             
     | 
| 
      
 23 
     | 
    
         
            +
            ## Usage
         
     | 
| 
      
 24 
     | 
    
         
            +
             
     | 
| 
      
 25 
     | 
    
         
            +
            ```
         
     | 
| 
      
 26 
     | 
    
         
            +
            ./bin/fofacli -e lubyruffy@gmail.com -a 3504e7a27817dada228e2f35a6077844 -p 2 domain=huawei.com
         
     | 
| 
      
 27 
     | 
    
         
            +
            ```
         
     | 
| 
      
 28 
     | 
    
         
            +
             
     | 
| 
      
 29 
     | 
    
         
            +
            ## Development
         
     | 
| 
      
 30 
     | 
    
         
            +
             
     | 
| 
      
 31 
     | 
    
         
            +
            After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
         
     | 
| 
      
 32 
     | 
    
         
            +
             
     | 
| 
      
 33 
     | 
    
         
            +
            To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
         
     | 
| 
      
 34 
     | 
    
         
            +
             
     | 
| 
      
 35 
     | 
    
         
            +
            ## Contributing
         
     | 
| 
      
 36 
     | 
    
         
            +
             
     | 
| 
      
 37 
     | 
    
         
            +
            Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/fofa. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
         
     | 
| 
      
 38 
     | 
    
         
            +
             
     | 
| 
      
 39 
     | 
    
         
            +
             
     | 
| 
      
 40 
     | 
    
         
            +
            ## License
         
     | 
| 
      
 41 
     | 
    
         
            +
             
     | 
| 
      
 42 
     | 
    
         
            +
            The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
         
     | 
    
        data/Rakefile
    ADDED
    
    
    
        data/bin/console
    ADDED
    
    | 
         @@ -0,0 +1,14 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            #!/usr/bin/env ruby
         
     | 
| 
      
 2 
     | 
    
         
            +
             
     | 
| 
      
 3 
     | 
    
         
            +
            require "bundler/setup"
         
     | 
| 
      
 4 
     | 
    
         
            +
            require "fofa"
         
     | 
| 
      
 5 
     | 
    
         
            +
             
     | 
| 
      
 6 
     | 
    
         
            +
            # You can add fixtures and/or initialization code here to make experimenting
         
     | 
| 
      
 7 
     | 
    
         
            +
            # with your gem easier. You can also use a different console, if you like.
         
     | 
| 
      
 8 
     | 
    
         
            +
             
     | 
| 
      
 9 
     | 
    
         
            +
            # (If you use this, don't forget to add pry to your Gemfile!)
         
     | 
| 
      
 10 
     | 
    
         
            +
            # require "pry"
         
     | 
| 
      
 11 
     | 
    
         
            +
            # Pry.start
         
     | 
| 
      
 12 
     | 
    
         
            +
             
     | 
| 
      
 13 
     | 
    
         
            +
            require "irb"
         
     | 
| 
      
 14 
     | 
    
         
            +
            IRB.start
         
     | 
    
        data/bin/fofacli
    ADDED
    
    | 
         @@ -0,0 +1,101 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            #!/usr/bin/env ruby
         
     | 
| 
      
 2 
     | 
    
         
            +
             
     | 
| 
      
 3 
     | 
    
         
            +
            require "bundler/setup"
         
     | 
| 
      
 4 
     | 
    
         
            +
            require "fofa"
         
     | 
| 
      
 5 
     | 
    
         
            +
            require "optparse"
         
     | 
| 
      
 6 
     | 
    
         
            +
            require "colorize"
         
     | 
| 
      
 7 
     | 
    
         
            +
             
     | 
| 
      
 8 
     | 
    
         
            +
            options = {
         
     | 
| 
      
 9 
     | 
    
         
            +
            	email: nil,
         
     | 
| 
      
 10 
     | 
    
         
            +
            	apikey: nil,
         
     | 
| 
      
 11 
     | 
    
         
            +
            	page: 1,
         
     | 
| 
      
 12 
     | 
    
         
            +
            	verbose: false,
         
     | 
| 
      
 13 
     | 
    
         
            +
            	file: nil,
         
     | 
| 
      
 14 
     | 
    
         
            +
            	mode: :search,
         
     | 
| 
      
 15 
     | 
    
         
            +
            	split_size: 100
         
     | 
| 
      
 16 
     | 
    
         
            +
            }
         
     | 
| 
      
 17 
     | 
    
         
            +
             
     | 
| 
      
 18 
     | 
    
         
            +
            ARGV.options do |opts|
         
     | 
| 
      
 19 
     | 
    
         
            +
            	opts.banner = "Usage:  #{File.basename($PROGRAM_NAME)} [OPTIONS] <query>"
         
     | 
| 
      
 20 
     | 
    
         
            +
            	
         
     | 
| 
      
 21 
     | 
    
         
            +
            	opts.separator ""
         
     | 
| 
      
 22 
     | 
    
         
            +
            	opts.separator "Specific Options:"
         
     | 
| 
      
 23 
     | 
    
         
            +
             
     | 
| 
      
 24 
     | 
    
         
            +
            	opts.on('-e', '--email=EMAIL', String, 'Email of fofa user') do |val|
         
     | 
| 
      
 25 
     | 
    
         
            +
                    options[:email] = val
         
     | 
| 
      
 26 
     | 
    
         
            +
                end
         
     | 
| 
      
 27 
     | 
    
         
            +
             
     | 
| 
      
 28 
     | 
    
         
            +
                opts.on('-a', '--apikey=APIKEY', String, 'APIKEY of fofa user') do |val|
         
     | 
| 
      
 29 
     | 
    
         
            +
                    options[:apikey] = val
         
     | 
| 
      
 30 
     | 
    
         
            +
                end
         
     | 
| 
      
 31 
     | 
    
         
            +
             
     | 
| 
      
 32 
     | 
    
         
            +
                opts.on('-p', '--page=PAGE', Integer, 'Page of query result') do |val|
         
     | 
| 
      
 33 
     | 
    
         
            +
                    options[:page] = val.to_i
         
     | 
| 
      
 34 
     | 
    
         
            +
                end
         
     | 
| 
      
 35 
     | 
    
         
            +
             
     | 
| 
      
 36 
     | 
    
         
            +
                opts.on('-m', '--mode=MODE', String, 'Mode, default to [search], -f should be specified when [import_service] ') do |val|
         
     | 
| 
      
 37 
     | 
    
         
            +
                    options[:mode] = val.to_sym
         
     | 
| 
      
 38 
     | 
    
         
            +
                end
         
     | 
| 
      
 39 
     | 
    
         
            +
             
     | 
| 
      
 40 
     | 
    
         
            +
                opts.on('-f', '--file=FILE', String, 'Used at [import_service] mode') do |val|
         
     | 
| 
      
 41 
     | 
    
         
            +
                    options[:file] = val
         
     | 
| 
      
 42 
     | 
    
         
            +
                end
         
     | 
| 
      
 43 
     | 
    
         
            +
             
     | 
| 
      
 44 
     | 
    
         
            +
                opts.on('-s', '--split_size=SIZE', Integer, "Used at [import_service] mode, default to #{options[:split_size]}") do |val|
         
     | 
| 
      
 45 
     | 
    
         
            +
                    options[:split_size] = val.to_i
         
     | 
| 
      
 46 
     | 
    
         
            +
                end
         
     | 
| 
      
 47 
     | 
    
         
            +
            	
         
     | 
| 
      
 48 
     | 
    
         
            +
            	opts.separator "Common Options:"
         
     | 
| 
      
 49 
     | 
    
         
            +
            	
         
     | 
| 
      
 50 
     | 
    
         
            +
            	opts.on( "-h", "--help", "Show this message." ) do
         
     | 
| 
      
 51 
     | 
    
         
            +
            		puts opts
         
     | 
| 
      
 52 
     | 
    
         
            +
            		exit
         
     | 
| 
      
 53 
     | 
    
         
            +
            	end
         
     | 
| 
      
 54 
     | 
    
         
            +
             
     | 
| 
      
 55 
     | 
    
         
            +
            	opts.on( "-v", "--verbose", "Verbose mode." ) do
         
     | 
| 
      
 56 
     | 
    
         
            +
            		options[:verbose] = true
         
     | 
| 
      
 57 
     | 
    
         
            +
            	end
         
     | 
| 
      
 58 
     | 
    
         
            +
            	
         
     | 
| 
      
 59 
     | 
    
         
            +
            	begin
         
     | 
| 
      
 60 
     | 
    
         
            +
            		opts.parse!
         
     | 
| 
      
 61 
     | 
    
         
            +
            	rescue OptionParser::InvalidOption => e
         
     | 
| 
      
 62 
     | 
    
         
            +
            		puts e
         
     | 
| 
      
 63 
     | 
    
         
            +
              		options.query += e.args
         
     | 
| 
      
 64 
     | 
    
         
            +
            	rescue 
         
     | 
| 
      
 65 
     | 
    
         
            +
            		puts opts
         
     | 
| 
      
 66 
     | 
    
         
            +
            		exit
         
     | 
| 
      
 67 
     | 
    
         
            +
            	end
         
     | 
| 
      
 68 
     | 
    
         
            +
            end
         
     | 
| 
      
 69 
     | 
    
         
            +
             
     | 
| 
      
 70 
     | 
    
         
            +
            unless options[:email]
         
     | 
| 
      
 71 
     | 
    
         
            +
            	puts "Email of fofa user not specified.".red
         
     | 
| 
      
 72 
     | 
    
         
            +
            	puts ARGV.options
         
     | 
| 
      
 73 
     | 
    
         
            +
            	exit -1
         
     | 
| 
      
 74 
     | 
    
         
            +
            end
         
     | 
| 
      
 75 
     | 
    
         
            +
             
     | 
| 
      
 76 
     | 
    
         
            +
            unless options[:apikey]
         
     | 
| 
      
 77 
     | 
    
         
            +
            	puts "APIKEY of fofa user not specified.".red
         
     | 
| 
      
 78 
     | 
    
         
            +
            	puts ARGV.options
         
     | 
| 
      
 79 
     | 
    
         
            +
            	exit -1
         
     | 
| 
      
 80 
     | 
    
         
            +
            end
         
     | 
| 
      
 81 
     | 
    
         
            +
             
     | 
| 
      
 82 
     | 
    
         
            +
            case options[:mode]
         
     | 
| 
      
 83 
     | 
    
         
            +
            when :search
         
     | 
| 
      
 84 
     | 
    
         
            +
            	if ARGV.empty?
         
     | 
| 
      
 85 
     | 
    
         
            +
            		puts "Fofa query not specified.".red
         
     | 
| 
      
 86 
     | 
    
         
            +
            		puts ARGV.options
         
     | 
| 
      
 87 
     | 
    
         
            +
            		exit -1
         
     | 
| 
      
 88 
     | 
    
         
            +
            	end
         
     | 
| 
      
 89 
     | 
    
         
            +
            	query = ARGV.join(' ')
         
     | 
| 
      
 90 
     | 
    
         
            +
            	puts "Query: '#{query}'"
         
     | 
| 
      
 91 
     | 
    
         
            +
            	puts Fofa::API.new(options[:email], options[:apikey], {debug:options[:verbose]}).search(query, {page:options[:page]})
         
     | 
| 
      
 92 
     | 
    
         
            +
            when :import_service
         
     | 
| 
      
 93 
     | 
    
         
            +
            	unless options[:file]
         
     | 
| 
      
 94 
     | 
    
         
            +
            		puts "File not specified.".red
         
     | 
| 
      
 95 
     | 
    
         
            +
            		puts ARGV.options
         
     | 
| 
      
 96 
     | 
    
         
            +
            		exit -1
         
     | 
| 
      
 97 
     | 
    
         
            +
            	end
         
     | 
| 
      
 98 
     | 
    
         
            +
            	puts "Import server from '#{options[:file]}'"
         
     | 
| 
      
 99 
     | 
    
         
            +
            	puts Fofa::API.new(options[:email], options[:apikey], {debug:options[:verbose]}).import_service(options[:file], {split_size:options[:split_size]})
         
     | 
| 
      
 100 
     | 
    
         
            +
            end
         
     | 
| 
      
 101 
     | 
    
         
            +
             
     | 
    
        data/bin/setup
    ADDED
    
    
    
        data/fofa.gemspec
    ADDED
    
    | 
         @@ -0,0 +1,34 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            # coding: utf-8
         
     | 
| 
      
 2 
     | 
    
         
            +
            lib = File.expand_path('../lib', __FILE__)
         
     | 
| 
      
 3 
     | 
    
         
            +
            $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
         
     | 
| 
      
 4 
     | 
    
         
            +
            require 'fofa/version'
         
     | 
| 
      
 5 
     | 
    
         
            +
             
     | 
| 
      
 6 
     | 
    
         
            +
            Gem::Specification.new do |spec|
         
     | 
| 
      
 7 
     | 
    
         
            +
              spec.name          = "fofa"
         
     | 
| 
      
 8 
     | 
    
         
            +
              spec.version       = Fofa::VERSION
         
     | 
| 
      
 9 
     | 
    
         
            +
              spec.authors       = ["fofa"]
         
     | 
| 
      
 10 
     | 
    
         
            +
              spec.email         = ["root@fofa.so"]
         
     | 
| 
      
 11 
     | 
    
         
            +
             
     | 
| 
      
 12 
     | 
    
         
            +
              spec.summary       = %q{A Ruby library to interact with the FOFA API. https://fofa.so}
         
     | 
| 
      
 13 
     | 
    
         
            +
              spec.description   = %q{Ruby API client for the FOFA cyberspace search engine.}
         
     | 
| 
      
 14 
     | 
    
         
            +
              spec.homepage      = "https://fofa.so"
         
     | 
| 
      
 15 
     | 
    
         
            +
              spec.license       = "MIT"
         
     | 
| 
      
 16 
     | 
    
         
            +
             
     | 
| 
      
 17 
     | 
    
         
            +
              # Prevent pushing this gem to RubyGems.org. To allow pushes either set the 'allowed_push_host'
         
     | 
| 
      
 18 
     | 
    
         
            +
              # to allow pushing to a single host or delete this section to allow pushing to any host.
         
     | 
| 
      
 19 
     | 
    
         
            +
              # if spec.respond_to?(:metadata)
         
     | 
| 
      
 20 
     | 
    
         
            +
              #   spec.metadata['allowed_push_host'] = "TODO: Set to 'http://mygemserver.com'"
         
     | 
| 
      
 21 
     | 
    
         
            +
              # else
         
     | 
| 
      
 22 
     | 
    
         
            +
              #   raise "RubyGems 2.0 or newer is required to protect against public gem pushes."
         
     | 
| 
      
 23 
     | 
    
         
            +
              # end
         
     | 
| 
      
 24 
     | 
    
         
            +
             
     | 
| 
      
 25 
     | 
    
         
            +
              spec.files         = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
         
     | 
| 
      
 26 
     | 
    
         
            +
              spec.bindir        = "bin"
         
     | 
| 
      
 27 
     | 
    
         
            +
              #spec.executables   = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
         
     | 
| 
      
 28 
     | 
    
         
            +
              spec.executables << 'fofacli'
         
     | 
| 
      
 29 
     | 
    
         
            +
              spec.require_paths = ["lib"]
         
     | 
| 
      
 30 
     | 
    
         
            +
             
     | 
| 
      
 31 
     | 
    
         
            +
              spec.add_development_dependency "bundler", "~> 1.12"
         
     | 
| 
      
 32 
     | 
    
         
            +
              spec.add_development_dependency "rake", "~> 10.0"
         
     | 
| 
      
 33 
     | 
    
         
            +
              spec.add_development_dependency "rspec", "~> 3.0"
         
     | 
| 
      
 34 
     | 
    
         
            +
            end
         
     | 
    
        data/lib/fofa.rb
    ADDED
    
    | 
         @@ -0,0 +1,88 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            require "fofa/version"
         
     | 
| 
      
 2 
     | 
    
         
            +
            require 'net/http'
         
     | 
| 
      
 3 
     | 
    
         
            +
            require 'json'
         
     | 
| 
      
 4 
     | 
    
         
            +
             
     | 
| 
      
 5 
     | 
    
         
            +
            module Fofa
         
     | 
| 
      
 6 
     | 
    
         
            +
              class API
         
     | 
| 
      
 7 
     | 
    
         
            +
             
     | 
| 
      
 8 
     | 
    
         
            +
              	def initialize(email, apikey, options={})
         
     | 
| 
      
 9 
     | 
    
         
            +
              		@options = {debug:false}.merge options
         
     | 
| 
      
 10 
     | 
    
         
            +
              		@api_server = ENV['FOFA_API_SERVER'] || 'https://fofa.so'
         
     | 
| 
      
 11 
     | 
    
         
            +
              		@email = email
         
     | 
| 
      
 12 
     | 
    
         
            +
              		@apikey = apikey
         
     | 
| 
      
 13 
     | 
    
         
            +
              	end
         
     | 
| 
      
 14 
     | 
    
         
            +
             
     | 
| 
      
 15 
     | 
    
         
            +
              	# Search from fofa
         
     | 
| 
      
 16 
     | 
    
         
            +
              	#
         
     | 
| 
      
 17 
     | 
    
         
            +
              	# Example:
         
     | 
| 
      
 18 
     | 
    
         
            +
              	#   >> Fofa::API.new(email,apikey).search("host=baidu.com")
         
     | 
| 
      
 19 
     | 
    
         
            +
              	#   => {size:1, results:['1.1.1.1:80']}
         
     | 
| 
      
 20 
     | 
    
         
            +
              	#
         
     | 
| 
      
 21 
     | 
    
         
            +
              	# Arguments:
         
     | 
| 
      
 22 
     | 
    
         
            +
              	#   query: (String) fofa query string
         
     | 
| 
      
 23 
     | 
    
         
            +
              	#   options: (Hash) page
         
     | 
| 
      
 24 
     | 
    
         
            +
              	def search(query, options={})
         
     | 
| 
      
 25 
     | 
    
         
            +
                    options = {page:1}.merge(options)
         
     | 
| 
      
 26 
     | 
    
         
            +
                		url = "#{@api_server}/api/v1/search/all?key=#{@apikey}&email=#{@email}&q=#{URI.escape(query)}&page=#{options[:page]}"
         
     | 
| 
      
 27 
     | 
    
         
            +
                		puts url if @options[:debug]
         
     | 
| 
      
 28 
     | 
    
         
            +
                		uri = URI.parse(url)
         
     | 
| 
      
 29 
     | 
    
         
            +
                    http = Net::HTTP.new(uri.host, uri.port)
         
     | 
| 
      
 30 
     | 
    
         
            +
                    if uri.scheme == 'https'
         
     | 
| 
      
 31 
     | 
    
         
            +
                      http.use_ssl = true
         
     | 
| 
      
 32 
     | 
    
         
            +
                    end
         
     | 
| 
      
 33 
     | 
    
         
            +
                    req = Net::HTTP::Get.new(uri.request_uri)
         
     | 
| 
      
 34 
     | 
    
         
            +
                    resp = http.request(req)
         
     | 
| 
      
 35 
     | 
    
         
            +
                    JSON.parse(resp.body)
         
     | 
| 
      
 36 
     | 
    
         
            +
                rescue => e
         
     | 
| 
      
 37 
     | 
    
         
            +
                	{"error"=>"Error: #{e.to_s}"}
         
     | 
| 
      
 38 
     | 
    
         
            +
              	end
         
     | 
| 
      
 39 
     | 
    
         
            +
             
     | 
| 
      
 40 
     | 
    
         
            +
                # Import asset into fofa
         
     | 
| 
      
 41 
     | 
    
         
            +
                #
         
     | 
| 
      
 42 
     | 
    
         
            +
                # Example:
         
     | 
| 
      
 43 
     | 
    
         
            +
                #   >> Fofa::API.new(email,apikey).import("./http80.txt")
         
     | 
| 
      
 44 
     | 
    
         
            +
                #   => {size:1, results:['1.1.1.1:80']}
         
     | 
| 
      
 45 
     | 
    
         
            +
                #
         
     | 
| 
      
 46 
     | 
    
         
            +
                # Arguments:
         
     | 
| 
      
 47 
     | 
    
         
            +
                #   file: (String) assets file
         
     | 
| 
      
 48 
     | 
    
         
            +
                #   options: (Hash) page
         
     | 
| 
      
 49 
     | 
    
         
            +
                def import_service(file, options={})
         
     | 
| 
      
 50 
     | 
    
         
            +
                  options = {port:80, split_size:100}.merge(options)
         
     | 
| 
      
 51 
     | 
    
         
            +
                  url = "#{@api_server}/api/v1/import/services?key=#{@apikey}&email=#{@email}&port=#{options[:port]}"
         
     | 
| 
      
 52 
     | 
    
         
            +
                  puts url if @options[:debug]
         
     | 
| 
      
 53 
     | 
    
         
            +
                  uri = URI.parse(url)
         
     | 
| 
      
 54 
     | 
    
         
            +
                  http = Net::HTTP.new(uri.host, uri.port)
         
     | 
| 
      
 55 
     | 
    
         
            +
                  if uri.scheme == 'https'
         
     | 
| 
      
 56 
     | 
    
         
            +
                    http.use_ssl = true
         
     | 
| 
      
 57 
     | 
    
         
            +
                  end
         
     | 
| 
      
 58 
     | 
    
         
            +
                  http.set_debug_output $stderr if @options[:debug]
         
     | 
| 
      
 59 
     | 
    
         
            +
             
     | 
| 
      
 60 
     | 
    
         
            +
                  File.open(file) do |f|
         
     | 
| 
      
 61 
     | 
    
         
            +
                    results = [] 
         
     | 
| 
      
 62 
     | 
    
         
            +
                    f.each_line.lazy.each_with_index do |line, i|
         
     | 
| 
      
 63 
     | 
    
         
            +
             
     | 
| 
      
 64 
     | 
    
         
            +
                      line = line.strip
         
     | 
| 
      
 65 
     | 
    
         
            +
                      if m = /Discovered open port (?<port>.*?)\/tcp on (?<host>.*?)$/.match(line)
         
     | 
| 
      
 66 
     | 
    
         
            +
                        hostinfo = "#{m[:host]}:#{m[:port]}"
         
     | 
| 
      
 67 
     | 
    
         
            +
                      elsif line.include?(':')
         
     | 
| 
      
 68 
     | 
    
         
            +
                        hostinfo = line
         
     | 
| 
      
 69 
     | 
    
         
            +
                      else
         
     | 
| 
      
 70 
     | 
    
         
            +
                        hostinfo = "#{line}:#{options[:port]}"
         
     | 
| 
      
 71 
     | 
    
         
            +
                      end
         
     | 
| 
      
 72 
     | 
    
         
            +
             
     | 
| 
      
 73 
     | 
    
         
            +
                      results << line 
         
     | 
| 
      
 74 
     | 
    
         
            +
                      if i % split_size == 0
         
     | 
| 
      
 75 
     | 
    
         
            +
                        req = Net::HTTP::Post.new(uri.request_uri)
         
     | 
| 
      
 76 
     | 
    
         
            +
                        req.body = results.join("\n")
         
     | 
| 
      
 77 
     | 
    
         
            +
                        resp = http.request(req)
         
     | 
| 
      
 78 
     | 
    
         
            +
                        puts resp if @options[:debug]
         
     | 
| 
      
 79 
     | 
    
         
            +
                        results = [] 
         
     | 
| 
      
 80 
     | 
    
         
            +
                      end
         
     | 
| 
      
 81 
     | 
    
         
            +
                    end
         
     | 
| 
      
 82 
     | 
    
         
            +
                  end
         
     | 
| 
      
 83 
     | 
    
         
            +
                rescue => e
         
     | 
| 
      
 84 
     | 
    
         
            +
                  {"error"=>"Error: #{e.to_s}"}
         
     | 
| 
      
 85 
     | 
    
         
            +
                end
         
     | 
| 
      
 86 
     | 
    
         
            +
             
     | 
| 
      
 87 
     | 
    
         
            +
              end
         
     | 
| 
      
 88 
     | 
    
         
            +
            end
         
     | 
    
        data/lib/fofa/version.rb
    ADDED
    
    
    
        metadata
    ADDED
    
    | 
         @@ -0,0 +1,99 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            --- !ruby/object:Gem::Specification
         
     | 
| 
      
 2 
     | 
    
         
            +
            name: fofa
         
     | 
| 
      
 3 
     | 
    
         
            +
            version: !ruby/object:Gem::Version
         
     | 
| 
      
 4 
     | 
    
         
            +
              version: 0.2.0
         
     | 
| 
      
 5 
     | 
    
         
            +
            platform: ruby
         
     | 
| 
      
 6 
     | 
    
         
            +
            authors:
         
     | 
| 
      
 7 
     | 
    
         
            +
            - fofa
         
     | 
| 
      
 8 
     | 
    
         
            +
            autorequire: 
         
     | 
| 
      
 9 
     | 
    
         
            +
            bindir: bin
         
     | 
| 
      
 10 
     | 
    
         
            +
            cert_chain: []
         
     | 
| 
      
 11 
     | 
    
         
            +
            date: 2017-02-02 00:00:00.000000000 Z
         
     | 
| 
      
 12 
     | 
    
         
            +
            dependencies:
         
     | 
| 
      
 13 
     | 
    
         
            +
            - !ruby/object:Gem::Dependency
         
     | 
| 
      
 14 
     | 
    
         
            +
              name: bundler
         
     | 
| 
      
 15 
     | 
    
         
            +
              requirement: !ruby/object:Gem::Requirement
         
     | 
| 
      
 16 
     | 
    
         
            +
                requirements:
         
     | 
| 
      
 17 
     | 
    
         
            +
                - - "~>"
         
     | 
| 
      
 18 
     | 
    
         
            +
                  - !ruby/object:Gem::Version
         
     | 
| 
      
 19 
     | 
    
         
            +
                    version: '1.12'
         
     | 
| 
      
 20 
     | 
    
         
            +
              type: :development
         
     | 
| 
      
 21 
     | 
    
         
            +
              prerelease: false
         
     | 
| 
      
 22 
     | 
    
         
            +
              version_requirements: !ruby/object:Gem::Requirement
         
     | 
| 
      
 23 
     | 
    
         
            +
                requirements:
         
     | 
| 
      
 24 
     | 
    
         
            +
                - - "~>"
         
     | 
| 
      
 25 
     | 
    
         
            +
                  - !ruby/object:Gem::Version
         
     | 
| 
      
 26 
     | 
    
         
            +
                    version: '1.12'
         
     | 
| 
      
 27 
     | 
    
         
            +
            - !ruby/object:Gem::Dependency
         
     | 
| 
      
 28 
     | 
    
         
            +
              name: rake
         
     | 
| 
      
 29 
     | 
    
         
            +
              requirement: !ruby/object:Gem::Requirement
         
     | 
| 
      
 30 
     | 
    
         
            +
                requirements:
         
     | 
| 
      
 31 
     | 
    
         
            +
                - - "~>"
         
     | 
| 
      
 32 
     | 
    
         
            +
                  - !ruby/object:Gem::Version
         
     | 
| 
      
 33 
     | 
    
         
            +
                    version: '10.0'
         
     | 
| 
      
 34 
     | 
    
         
            +
              type: :development
         
     | 
| 
      
 35 
     | 
    
         
            +
              prerelease: false
         
     | 
| 
      
 36 
     | 
    
         
            +
              version_requirements: !ruby/object:Gem::Requirement
         
     | 
| 
      
 37 
     | 
    
         
            +
                requirements:
         
     | 
| 
      
 38 
     | 
    
         
            +
                - - "~>"
         
     | 
| 
      
 39 
     | 
    
         
            +
                  - !ruby/object:Gem::Version
         
     | 
| 
      
 40 
     | 
    
         
            +
                    version: '10.0'
         
     | 
| 
      
 41 
     | 
    
         
            +
            - !ruby/object:Gem::Dependency
         
     | 
| 
      
 42 
     | 
    
         
            +
              name: rspec
         
     | 
| 
      
 43 
     | 
    
         
            +
              requirement: !ruby/object:Gem::Requirement
         
     | 
| 
      
 44 
     | 
    
         
            +
                requirements:
         
     | 
| 
      
 45 
     | 
    
         
            +
                - - "~>"
         
     | 
| 
      
 46 
     | 
    
         
            +
                  - !ruby/object:Gem::Version
         
     | 
| 
      
 47 
     | 
    
         
            +
                    version: '3.0'
         
     | 
| 
      
 48 
     | 
    
         
            +
              type: :development
         
     | 
| 
      
 49 
     | 
    
         
            +
              prerelease: false
         
     | 
| 
      
 50 
     | 
    
         
            +
              version_requirements: !ruby/object:Gem::Requirement
         
     | 
| 
      
 51 
     | 
    
         
            +
                requirements:
         
     | 
| 
      
 52 
     | 
    
         
            +
                - - "~>"
         
     | 
| 
      
 53 
     | 
    
         
            +
                  - !ruby/object:Gem::Version
         
     | 
| 
      
 54 
     | 
    
         
            +
                    version: '3.0'
         
     | 
| 
      
 55 
     | 
    
         
            +
            description: Ruby API client for the FOFA cyberspace search engine.
         
     | 
| 
      
 56 
     | 
    
         
            +
            email:
         
     | 
| 
      
 57 
     | 
    
         
            +
            - root@fofa.so
         
     | 
| 
      
 58 
     | 
    
         
            +
            executables:
         
     | 
| 
      
 59 
     | 
    
         
            +
            - fofacli
         
     | 
| 
      
 60 
     | 
    
         
            +
            extensions: []
         
     | 
| 
      
 61 
     | 
    
         
            +
            extra_rdoc_files: []
         
     | 
| 
      
 62 
     | 
    
         
            +
            files:
         
     | 
| 
      
 63 
     | 
    
         
            +
            - CODE_OF_CONDUCT.md
         
     | 
| 
      
 64 
     | 
    
         
            +
            - Gemfile
         
     | 
| 
      
 65 
     | 
    
         
            +
            - Gemfile.lock
         
     | 
| 
      
 66 
     | 
    
         
            +
            - LICENSE.txt
         
     | 
| 
      
 67 
     | 
    
         
            +
            - README.md
         
     | 
| 
      
 68 
     | 
    
         
            +
            - Rakefile
         
     | 
| 
      
 69 
     | 
    
         
            +
            - bin/console
         
     | 
| 
      
 70 
     | 
    
         
            +
            - bin/fofacli
         
     | 
| 
      
 71 
     | 
    
         
            +
            - bin/setup
         
     | 
| 
      
 72 
     | 
    
         
            +
            - fofa.gemspec
         
     | 
| 
      
 73 
     | 
    
         
            +
            - lib/fofa.rb
         
     | 
| 
      
 74 
     | 
    
         
            +
            - lib/fofa/version.rb
         
     | 
| 
      
 75 
     | 
    
         
            +
            homepage: https://fofa.so
         
     | 
| 
      
 76 
     | 
    
         
            +
            licenses:
         
     | 
| 
      
 77 
     | 
    
         
            +
            - MIT
         
     | 
| 
      
 78 
     | 
    
         
            +
            metadata: {}
         
     | 
| 
      
 79 
     | 
    
         
            +
            post_install_message: 
         
     | 
| 
      
 80 
     | 
    
         
            +
            rdoc_options: []
         
     | 
| 
      
 81 
     | 
    
         
            +
            require_paths:
         
     | 
| 
      
 82 
     | 
    
         
            +
            - lib
         
     | 
| 
      
 83 
     | 
    
         
            +
            required_ruby_version: !ruby/object:Gem::Requirement
         
     | 
| 
      
 84 
     | 
    
         
            +
              requirements:
         
     | 
| 
      
 85 
     | 
    
         
            +
              - - ">="
         
     | 
| 
      
 86 
     | 
    
         
            +
                - !ruby/object:Gem::Version
         
     | 
| 
      
 87 
     | 
    
         
            +
                  version: '0'
         
     | 
| 
      
 88 
     | 
    
         
            +
            required_rubygems_version: !ruby/object:Gem::Requirement
         
     | 
| 
      
 89 
     | 
    
         
            +
              requirements:
         
     | 
| 
      
 90 
     | 
    
         
            +
              - - ">="
         
     | 
| 
      
 91 
     | 
    
         
            +
                - !ruby/object:Gem::Version
         
     | 
| 
      
 92 
     | 
    
         
            +
                  version: '0'
         
     | 
| 
      
 93 
     | 
    
         
            +
            requirements: []
         
     | 
| 
      
 94 
     | 
    
         
            +
            rubyforge_project: 
         
     | 
| 
      
 95 
     | 
    
         
            +
            rubygems_version: 2.6.8
         
     | 
| 
      
 96 
     | 
    
         
            +
            signing_key: 
         
     | 
| 
      
 97 
     | 
    
         
            +
            specification_version: 4
         
     | 
| 
      
 98 
     | 
    
         
            +
            summary: A Ruby library to interact with the FOFA API. https://fofa.so
         
     | 
| 
      
 99 
     | 
    
         
            +
            test_files: []
         
     |