Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- 카카오프로젝트
- 보안뉴스 요약
- oracle
- php
- 보안뉴스한줄요약
- 다크웹
- numpy
- 자바스크립트 API
- oracle db
- 카카오프로젝트 100
- ES6
- 보안뉴스 한줄요약
- 카카오프로젝트100
- javascript
- 자바스크립트 객체
- Oracle SQL
- python
- 자바스크립트
- 자바스크립트 jQuery
- 파이썬
- 자바스크립트 기본 문법
- GIT
- 오라클
- 보안뉴스요약
- 깃허브
- 랜섬웨어
- 보안뉴스
- 자바스크립트 node
- 자바스크립트 prototype
- 자바스크립트 element api
Archives
- Today
- Total
목록shodan python (1)
FU11M00N
[OSINT,Python] Shodan API를 활용한 KR admin 페이지 검색
import shodan import sys try: def shodan_search(cnt_do): SHODAN_API_KEY = "input key!" api = shodan.Shodan(SHODAN_API_KEY) search_admin = api.search("admin",page=cnt_do) for item in search_admin['matches']: if item['port'] == 80 and item['location']['country_name'] == "South Korea": result_search=item['ip_str'] return result_search # shodan_search 함수 끝 cnt=int(input("검색 할 페이지의 수 ")) f = open("./..
Penetration testing/Information collection
2020. 11. 1. 03:50