2023-02-19から1日間の記事一覧

{Azure App Service}デプロイスロット

https://www.isoroot.jp/blog/3904/ https://learn.microsoft.com/ja-jp/azure/app-service/deploy-staging-slots 実行している App Service プランのサービス レベルが Standard、Premium、または Isolated である場合は、Web アプリ、Linux 上の Web アプ…

PHP+Apache+sqlmap

DB

MySQL (8.0.31) https://qiita.com/shyamahira/items/9f80d16c3436f9dea753https://happyquality.com/2013/02/11/2587.htm 前提:攻撃元と攻撃先は同一サーバ (OS: CentOS7)DB作成済み -- 1. phpインストール yum -y install epel-releaseyum -y install htt…

JSONデータを扱う

DB

MySQL (8.0.31)http://atudc.blogspot.com/2018/09/rdbmsoraclesql-servermysqljson.html -- 1. テストテーブルとデータ作成 drop table tab1; create table tab1 ( col1 bigint, col2 json, constraint tab1pk primary key (col1)); insert into tab1 value…