본문 바로가기

카테고리 없음

2020-05-24 12시 개발자 글 모음 | "그래프(Graph)" 외 4개 이야기

게임 개발자를 고민하는 대학생에게 by 박민우


    20200524 TIL by 윤해은 about SPA


      정보보안개론 개정3판 연습문제 4장 by 김학진

      • 'or''=' 을 입력하면 기존 'SELECT FROM (테이블명) WHERE ~=''or''=''으로 쿼리가 조작되어서 비밀번호를 입력하지 않아도 로그인할 수 있다
      • 8 클라이언트에서 정상적으로 접근해서 세션 인증 값을 받으면 UserNo같은 데이터를 변경해도 세션으로만 인증을 수행하므로 다른 계정으로 로그인한 것처럼 이용할 수 있다
      • 웹 해킹으로 시스템 권한을 획득한 후 해당 시스템에 텔넷과 같이 직접 명령을 입력하고 확인할 수 있는 셸을 획득하기 위한 방법이다


      [Disqus]장고 3.x 사용 중 migrate 에러 해결 방법 by 안기웅 about Django

      • in create module = import_module(entry) File "C:\Users\ankiwoong\AppData\Local\Programs\Python\Python37\lib\importlib\__init__
      • in _find_and_load File "
      • in exec_module File "


      그래프(Graph) by 이종립

      • A simple graph G is called bipartite if its vertex set V can be partitioned into two disjoint sets and such that every edge in the graph connects a vertex in and a vertex in (so that no edge in G connects either two vertices in or two vertices in )
      • A simple graph is bipartite if and only if it is possible to assign one of two different colors to each vertex of the graph so that no two adjacent vertices are assigned the same color
      • A matching M in a simple graph is a subset of the set E of edges of the graph such that no two edges are incident with the same vertex