ABOUT ME

-

Today
-
Yesterday
-
Total
-
  • [GoLee] Daily Scrum #9
    스미싱 프로젝트/데일리 스크럼 2020. 5. 9. 11:00
    반응형

    제목 : [GoLee] Daily Scrum #9


    한 일 : 

    > 고 준성 : - 기존 db연동 php -> python (완) 

    실습환경 AWS + ubuntu 18.04 + nginx + python(flask)

    기초 html 파일 및 실행결과

    flask로 변경 및 sample Safebrowsing 코드입니다. 

    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    @app.route("/")
    def index():
        return render_template('index.html')
     
    @app.route("/post", methods=['POST'])
    def post():
        value = request.form['test']
        s = SafeBrowsing(os.getenv('gsb_key'))
        r = s.lookup_urls(['{}'.format(value)])
     
        return r
     
    if __name__=="__main__":
        app.run(host="0.0.0.0", debug=True, port=80)
     
    cs

     

    sample - python 코드입니다. 

    flask 실행결과. 

    www.naver.com 입력값을 넣으면 

    위험성이 있는 링크를 넣으면 

    의 결과를 얻을 수 있습니다. 

    구글에서도 동일한 결과를 얻을 수 있습니다. (당연히 같은 api 이니까.. ) 

     


    할 일 : 

    > 공통 : 구축해놓은 서버와 API 프로토타입을 이용하여 작업. 


    이 슈 :N/A

     

     

    반응형

    '스미싱 프로젝트 > 데일리 스크럼' 카테고리의 다른 글

    [GoLee] Daily Scrum #11  (2) 2020.05.11
    [GoLee] Daily Scrum #10  (0) 2020.05.11
    [GoLee] Daily Scrum #8  (0) 2020.05.08
    [GoLee] Daily Scrum #7  (2) 2020.05.07
    [GoLee] Daily Scrum #6  (0) 2020.05.06

    댓글

Designed by Tistory.