• Stars
    star
    150
  • Rank 247,323 (Top 5 %)
  • Language
    Python
  • License
    MIT License
  • Created almost 8 years ago
  • Updated 10 months ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

fofa pro的sdk,python语言版本

FOFA Python SDK Documentation

An easy-to-use wrapper for FOFA API written in python. Currently support Python 3.7+

FOFA is a search engine for Internet-connected devices. FOFA API helps developers integrate FOFA data easily in their own projects.

Documentaion

Usage

# -*- coding: utf-8 -*-
import fofa

if __name__ == "__main__":
    email, key = ('[email protected]', 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx')  
    client = fofa.Client(email, key)               
    query_str = 'header="thinkphp" || header="think_template"'                           
    data = client.search(query_str, size=100, page=1, fields="ip,city") 
    for ip, city in data["results"]:
        print("%s,%s" % (ip, city))          

License

This software is licensed under MIT License

Copyright (C) 2023 Fofa, Inc.