본문 바로가기

mysql64

MariaDB/MySQL 데이타 전송 시 암호화 통신 SQL Proxy 적용 MariaDB에서 원격 접속을 허용하고 암호화 통신을 적용하려면 SQL Proxy를 사용하여 TLS/SSL을 설정해야 합니다. 아래는 MariaDB 서버와 SQL Proxy를 구성하는 단계입니다. MariaDB SSL/TLS 구성 인증서 및 키 생성 openssl req -newkey rsa:2048 -nodes -keyout /etc/mysql/server-key.pem -out /etc/mysql/server-req.pem 이 명령을 실행하면 개인 키와 인증서 요청 파일이 생성됩니다. 인증서 서명 openssl x509 -req -in /etc/mysql/server-req.pem -days 365 -CA /etc/mysql/ca-cert.pem -CAkey /etc/mysql/ca-key.pem -.. 2023. 10. 15.
SQLite 데이터를 MySQL 데이터베이스로 변환하는 과정 SQLite 데이터를 MySQL 데이터베이스로 변환하는 과정은 몇 가지 단계로 나눌 수 있습니다. 변환하는 과정을 단계별로 자세히 설명하겠습니다. 단계 1: SQLite 데이터베이스를 백업합니다. 데이터 손실을 방지하기 위해 먼저 SQLite 데이터베이스를 백업해야 합니다. 이를 위해 다음 명령을 사용할 수 있습니다. sqlite3 your_database.db .dump > backup.sql 위 명령은 your_database.db SQLite 데이터베이스를 backup.sql 파일로 백업합니다. 단계 2: MySQL 데이터베이스를 생성합니다. MySQL 데이터베이스를 만들어야 합니다. 이를 위해 MySQL 클라이언트 또는 웹 기반 관리 도구를 사용할 수 있습니다. 명령줄에서 MySQL 클라이언트를 .. 2023. 9. 20.
SnortDLP - an open source DLP solution utilizing snort OverviewSnortDLP a.k.a. "Pig Pen" is an open source data loss prevention project that utilizes Snort to detect the exfiltration of sensitive data.FeaturesWeb based applicationWritten in PHP and utilizes a MySQL backend for cross operating system portabilityAdministrative login to protect unauthorized accessDetermines a unique fingerprint forfree textindividual documentseach document in a reposit.. 2014. 7. 8.
Configuring OSSEC with MySQL and Analogi I have been using OSSEC for a while now but I always used only plain text logs. While this is not bad, it does not scale really well. I started looking into a way to do it right(tm). I knew OSSEC was compatible with MySQL, and since 2.7 has been released, it gave me an excuse to play with it again.You will need to enable MySQL in OSSEC (not enabled by default), grab the source then do the follow.. 2013. 11. 5.
webhoneypot: Web Application Honeypot webhoneypot is a DShield Web Application Honeypot offering this honeypot for users to capture automated web application exploits. It is a very simple “semi interactive” honeypot implemented in PHP.webhoneypot project is used to develop the honeypot. Do not use this code to install a honeypot unless you are interested in helping development.Prerequisitesfor installing webhoneypot.dshield.org acco.. 2012. 7. 12.