분류 전체보기
-
[Elasticsearch] Numeric(숫자) Data TypesElasticsearch 2018. 7. 14. 22:18
DOCS : https://www.elastic.co/guide/en/elasticsearch/reference/6.2/number.html 구분 범위long A signed 64-bit integer with a minimum value of -263 and a maximum value of 263-1 integer A signed 32-bit integer with a minimum value of -231 and a maximum value of 231-1 short A signed 16-bit integer with a minimum value of -32,768 and a maximum value of 32,767 byte A signed 8-bit integer with a minimum va..
-
[Python] 디렉토리(하위포함) 파일명 점검 하기Python/Python for Windows 2018. 7. 9. 01:53
웹 서버를 운영하다 보면 웹 소스, 동영상 등 파일명을 고려해야 하는데, 시스템 명령어나 SQL쿼리문, 특문과 같은 파일명 들어가 있는 파일명은 보안장비에서 오탐으로 필터가 될 수 있다. 파이썬으로 특정폴더 이하에 있는 파일을 간단하게 점검할 수 있다. 파일명에 SQL 쿼리 명령어가 포함된 파일명 체크 sysCmd = {'select':'slct', 'update':'updt','insert':'inst'} for (path, dir, files) in os.walk(r'D:\test4'): for filename in files: for i in sysCmd: if i in filename: print('%s 파일에 %s 가 포함되어 있습니다. %s 로 변경을 권장드립니다.' %(filename,i,s..
-
JDBC를 이용하여 logstash 연동 - MSSQLElasticsearch 2018. 7. 1. 22:17
1. MSSQL JDBC Driver download : https://docs.microsoft.com/ko-kr/sql/connect/jdbc/download-microsoft-jdbc-driver-for-sql-server?view=sql-server-2017 2. logstash.conf input { jdbc { jdbc_driver_library => "D:\logstash-6.3.0\logstash-6.3.0\bin\mssql-jdbc-6.4.0.jre8.jar" jdbc_driver_class => "com.microsoft.sqlserver.jdbc.SQLServerDriver" jdbc_connection_string => "jdbc:sqlserver://Host|IP:1433;user..