-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
56d56c6
commit a88a9cf
Showing
1 changed file
with
53 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,53 @@ | ||
# Spower | ||
A python library for search data on shodan, google, duckduckgo | ||
## Installing | ||
|
||
**With pip** | ||
```bash | ||
pip install spower | ||
``` | ||
|
||
**With manual** | ||
``` | ||
``` | ||
|
||
- [x] Easy to use | ||
- [x] Fuctional search | ||
- [x] more results +75 | ||
- [x] Fast result | ||
- [x] no API keys are required | ||
- [x] does not take up much memory | ||
- [ ] Support Bing, Yandex search | ||
|
||
## Usage | ||
|
||
**easy search using this library** | ||
```python | ||
|
||
#Search with Google | ||
>>> from spower import * | ||
>>> search.google("mishakorzik") | ||
['https://github.com/mishakorzik', 'https://github.com/mishakorzik/AllHackingTools', ... | ||
>>> | ||
|
||
#Search with DuckDuckGo | ||
>>> from spower import * | ||
>>> search.duckduckgo("mishakorzik") | ||
'["https://github.com/mishakorzik/IpHack", "https://github.com/mishakorzik/virus.bat", ... | ||
>>> | ||
|
||
#Search with Shodan | ||
>>> from spower import * | ||
>>> search.shodan("github") | ||
[+] IP : 192.30.25*.*** | ||
[+] Port : 80 | ||
[+] Org : GitHub, Inc. | ||
[+] Country : United States | ||
[+] longitude : -77.0**** | ||
[+] latitude : 38.8**** | ||
[+] City : Washington | ||
[+] Layer : tcp | ||
[+] Domains : ['github.com'] | ||
[+] Hostnames : ['lb-192-30-25*-***-iad.github.com'] | ||
>>> | ||
|
||
``` |