├── b2
├── Flaskshop
│ ├── .idea
│ │ ├── .name
│ │ ├── encodings.xml
│ │ ├── modules.xml
│ │ ├── mini-taobao-master.iml
│ │ └── misc.xml
│ ├── .DS_Store
│ ├── taobao
│ │ ├── __init__.pyc
│ │ ├── taobaotest.db
│ │ ├── __pycache__
│ │ │ ├── forms.cpython-35.pyc
│ │ │ ├── forms.cpython-36.pyc
│ │ │ ├── forms.cpython-37.pyc
│ │ │ ├── models.cpython-35.pyc
│ │ │ ├── models.cpython-36.pyc
│ │ │ ├── models.cpython-37.pyc
│ │ │ ├── routes.cpython-35.pyc
│ │ │ ├── routes.cpython-36.pyc
│ │ │ ├── routes.cpython-37.pyc
│ │ │ ├── __init__.cpython-35.pyc
│ │ │ ├── __init__.cpython-36.pyc
│ │ │ └── __init__.cpython-37.pyc
│ │ ├── templates
│ │ │ ├── account_about.html
│ │ │ ├── crew_order_manager.html
│ │ │ ├── supplier_crew_manager.html
│ │ │ ├── coustomer_detail_manager.html
│ │ │ ├── supplier_product_manager.html
│ │ │ ├── search.html
│ │ │ ├── customer_account.html
│ │ │ ├── customer_order_manager.html
│ │ │ ├── supplier_account.html
│ │ │ ├── account_layout.html
│ │ │ ├── upload.html
│ │ │ ├── show_confirm_waitting_orders.html
│ │ │ ├── completed_orders.html
│ │ │ ├── shou_supplier_crews.html
│ │ │ ├── traning_orders.html
│ │ │ ├── crew_account.html
│ │ │ ├── waitting_orders.html
│ │ │ ├── crew_market.html
│ │ │ ├── customer_check_supplier_products.html
│ │ │ ├── show_supplier_product.html
│ │ │ ├── security_check.html
│ │ │ ├── home.html
│ │ │ ├── show_customer_detail.html
│ │ │ ├── show_order_details.html
│ │ │ ├── reset_request.html
│ │ │ ├── supplier_add_product_count.html
│ │ │ └── reset_token.html
│ │ ├── __init__.py
│ │ └── static
│ │ │ └── main.css
│ ├── __pycache__
│ │ └── run.cpython-35.pyc
│ └── run.py
├── .DS_Store
├── start.sh
├── default
└── Dockerfile
├── b3
├── html
│ ├── application
│ │ ├── .htaccess
│ │ ├── admin
│ │ │ ├── model
│ │ │ │ ├── Links.php
│ │ │ │ ├── Cate.php
│ │ │ │ ├── Article.php
│ │ │ │ └── Admin.php
│ │ │ ├── controller
│ │ │ │ ├── Index.php
│ │ │ │ ├── Base.php
│ │ │ │ ├── Login.php
│ │ │ │ ├── Cate.php
│ │ │ │ └── Links.php
│ │ │ ├── config.php
│ │ │ └── validate
│ │ │ │ ├── Tags.php
│ │ │ │ ├── Links.php
│ │ │ │ ├── Article.php
│ │ │ │ ├── Cate.php
│ │ │ │ └── Admin.php
│ │ ├── index
│ │ │ ├── config.php
│ │ │ ├── view
│ │ │ │ ├── common
│ │ │ │ │ ├── foot.html
│ │ │ │ │ └── header.html
│ │ │ │ ├── index
│ │ │ │ │ └── index.html
│ │ │ │ ├── search
│ │ │ │ │ └── search.html
│ │ │ │ └── cate
│ │ │ │ │ └── cate.html
│ │ │ ├── common.php
│ │ │ └── controller
│ │ │ │ ├── Cate.php
│ │ │ │ ├── Search.php
│ │ │ │ ├── Base.php
│ │ │ │ ├── Index.php
│ │ │ │ └── Article.php
│ │ ├── command.php
│ │ ├── common.php
│ │ ├── route.php
│ │ ├── tags.php
│ │ └── database.php
│ ├── extend
│ │ └── .gitignore
│ ├── thinkphp
│ │ ├── .htaccess
│ │ ├── .gitignore
│ │ ├── logo.png
│ │ ├── library
│ │ │ ├── think
│ │ │ │ ├── console
│ │ │ │ │ ├── bin
│ │ │ │ │ │ ├── hiddeninput.exe
│ │ │ │ │ │ └── README.md
│ │ │ │ │ ├── command
│ │ │ │ │ │ ├── make
│ │ │ │ │ │ │ ├── stubs
│ │ │ │ │ │ │ │ ├── model.stub
│ │ │ │ │ │ │ │ ├── controller.plain.stub
│ │ │ │ │ │ │ │ └── controller.stub
│ │ │ │ │ │ │ ├── Model.php
│ │ │ │ │ │ │ └── Controller.php
│ │ │ │ │ │ ├── Clear.php
│ │ │ │ │ │ └── Build.php
│ │ │ │ │ ├── LICENSE
│ │ │ │ │ └── output
│ │ │ │ │ │ ├── driver
│ │ │ │ │ │ ├── Nothing.php
│ │ │ │ │ │ └── Buffer.php
│ │ │ │ │ │ └── question
│ │ │ │ │ │ └── Confirmation.php
│ │ │ │ ├── exception
│ │ │ │ │ ├── RouteNotFoundException.php
│ │ │ │ │ ├── HttpResponseException.php
│ │ │ │ │ ├── ClassNotFoundException.php
│ │ │ │ │ ├── TemplateNotFoundException.php
│ │ │ │ │ ├── ValidateException.php
│ │ │ │ │ ├── HttpException.php
│ │ │ │ │ ├── DbException.php
│ │ │ │ │ ├── PDOException.php
│ │ │ │ │ ├── ThrowableError.php
│ │ │ │ │ └── ErrorException.php
│ │ │ │ ├── config
│ │ │ │ │ └── driver
│ │ │ │ │ │ ├── Ini.php
│ │ │ │ │ │ ├── Json.php
│ │ │ │ │ │ └── Xml.php
│ │ │ │ ├── log
│ │ │ │ │ └── driver
│ │ │ │ │ │ └── Test.php
│ │ │ │ ├── Env.php
│ │ │ │ ├── db
│ │ │ │ │ └── exception
│ │ │ │ │ │ ├── BindParamException.php
│ │ │ │ │ │ ├── ModelNotFoundException.php
│ │ │ │ │ │ └── DataNotFoundException.php
│ │ │ │ ├── model
│ │ │ │ │ └── Pivot.php
│ │ │ │ ├── controller
│ │ │ │ │ └── Yar.php
│ │ │ │ ├── Exception.php
│ │ │ │ ├── process
│ │ │ │ │ └── exception
│ │ │ │ │ │ └── Failed.php
│ │ │ │ └── response
│ │ │ │ │ └── Json.php
│ │ │ └── traits
│ │ │ │ └── think
│ │ │ │ └── Instance.php
│ │ ├── codecov.yml
│ │ ├── start.php
│ │ ├── console.php
│ │ ├── composer.json
│ │ ├── tpl
│ │ │ └── default_index.tpl
│ │ ├── .travis.yml
│ │ ├── phpunit.xml
│ │ └── LICENSE.txt
│ ├── vendor
│ │ └── .gitignore
│ ├── public
│ │ ├── static
│ │ │ └── .gitignore
│ │ ├── hint.php
│ │ ├── robots.txt
│ │ ├── .DS_Store
│ │ ├── favicon.ico
│ │ ├── .htaccess
│ │ ├── router.php
│ │ └── index.php
│ ├── .DS_Store
│ ├── phpunit.xml
│ ├── tests
│ │ ├── TestCase.php
│ │ └── ExampleTest.php
│ ├── think
│ ├── composer.json
│ ├── build.php
│ └── LICENSE.txt
├── mysql-passwd
├── start.sh
├── init_db.sh
├── Dockerfile
└── 000-default.conf
├── b1
├── flag.txt
├── calculator
├── ctf.xinetd
└── Dockerfile
├── b4
├── html
│ ├── include
│ │ ├── shell.php
│ │ ├── config.php
│ │ └── log1.php
│ ├── lib
│ │ ├── run.php
│ │ ├── base.php
│ │ └── File.php
│ ├── org
│ │ └── smarty
│ │ │ ├── Autofoucer.php
│ │ │ ├── sysplugins
│ │ │ ├── smartyexception.php
│ │ │ ├── smarty_undefined_variable.php
│ │ │ ├── smartycompilerexception.php
│ │ │ ├── smarty_internal_parsetree.php
│ │ │ ├── smarty_internal_parsetree_text.php
│ │ │ ├── smarty_internal_parsetree_code.php
│ │ │ ├── smarty_internal_parsetree_dqcontent.php
│ │ │ ├── smarty_resource_recompiled.php
│ │ │ ├── smarty_internal_compile_ldelim.php
│ │ │ ├── smarty_internal_compile_rdelim.php
│ │ │ ├── smarty_internal_compile_debug.php
│ │ │ ├── smarty_internal_get_include_path.php
│ │ │ ├── smarty_variable.php
│ │ │ ├── smarty_internal_compile_append.php
│ │ │ ├── smarty_internal_parsetree_tag.php
│ │ │ ├── smarty_data.php
│ │ │ └── smarty_internal_nocache_insert.php
│ │ │ └── plugins
│ │ │ ├── modifiercompiler.noprint.php
│ │ │ ├── variablefilter.htmlspecialchars.php
│ │ │ ├── modifiercompiler.string_format.php
│ │ │ ├── modifiercompiler.cat.php
│ │ │ ├── modifiercompiler.count_paragraphs.php
│ │ │ ├── modifiercompiler.upper.php
│ │ │ ├── modifiercompiler.strip_tags.php
│ │ │ ├── modifiercompiler.indent.php
│ │ │ ├── modifiercompiler.lower.php
│ │ │ ├── modifier.spacify.php
│ │ │ ├── modifiercompiler.count_sentences.php
│ │ │ ├── modifiercompiler.to_charset.php
│ │ │ ├── modifiercompiler.from_charset.php
│ │ │ ├── modifiercompiler.default.php
│ │ │ ├── modifiercompiler.strip.php
│ │ │ ├── modifier.replace.php
│ │ │ ├── modifiercompiler.count_characters.php
│ │ │ ├── modifiercompiler.count_words.php
│ │ │ ├── shared.literal_compiler_param.php
│ │ │ ├── modifiercompiler.unescape.php
│ │ │ ├── shared.make_timestamp.php
│ │ │ ├── shared.mb_unicode.php
│ │ │ ├── modifiercompiler.wordwrap.php
│ │ │ ├── shared.escape_special_chars.php
│ │ │ ├── modifier.regex_replace.php
│ │ │ └── shared.mb_str_replace.php
│ ├── public
│ │ ├── image
│ │ │ ├── bg.jpg
│ │ │ ├── big.jpg
│ │ │ ├── name.png
│ │ │ ├── password.png
│ │ │ └── background.jpg
│ │ ├── js
│ │ │ └── npm.js
│ │ └── css
│ │ │ └── reset.css
│ ├── index.php
│ ├── supervisord.conf
│ ├── common
│ │ ├── function.php
│ │ ├── home.php
│ │ └── cacf.php
│ ├── templates
│ │ ├── error.tpl
│ │ ├── success.tpl
│ │ └── updatepass.tpl
│ └── geez.sql
├── .DS_Store
└── Dockerfile
├── .DS_Store
├── docker-compose.yml
├── README.md
└── LICENSE
/b2/Flaskshop/.idea/.name:
--------------------------------------------------------------------------------
1 | mini-taobao-master
--------------------------------------------------------------------------------
/b3/html/application/.htaccess:
--------------------------------------------------------------------------------
1 | deny from all
--------------------------------------------------------------------------------
/b3/html/extend/.gitignore:
--------------------------------------------------------------------------------
1 | *
2 | !.gitignore
--------------------------------------------------------------------------------
/b3/html/thinkphp/.htaccess:
--------------------------------------------------------------------------------
1 | deny from all
--------------------------------------------------------------------------------
/b3/html/vendor/.gitignore:
--------------------------------------------------------------------------------
1 | *
2 | !.gitignore
--------------------------------------------------------------------------------
/b1/flag.txt:
--------------------------------------------------------------------------------
1 | flag{glzjin_wants_a_girl_friend}
2 |
--------------------------------------------------------------------------------
/b3/html/public/static/.gitignore:
--------------------------------------------------------------------------------
1 | *
2 | !.gitignore
--------------------------------------------------------------------------------
/b3/html/public/hint.php:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/b3/html/public/robots.txt:
--------------------------------------------------------------------------------
1 | User-agent: *
2 | Disallow:
3 |
--------------------------------------------------------------------------------
/b4/html/include/shell.php:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/b4/html/lib/run.php:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/.DS_Store:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/glzjin/20190511_awd_docker/HEAD/.DS_Store
--------------------------------------------------------------------------------
/b3/html/thinkphp/.gitignore:
--------------------------------------------------------------------------------
1 | /composer.lock
2 | /vendor
3 | .idea
4 | .DS_Store
5 |
--------------------------------------------------------------------------------
/b1/calculator:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/glzjin/20190511_awd_docker/HEAD/b1/calculator
--------------------------------------------------------------------------------
/b2/.DS_Store:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/glzjin/20190511_awd_docker/HEAD/b2/.DS_Store
--------------------------------------------------------------------------------
/b4/.DS_Store:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/glzjin/20190511_awd_docker/HEAD/b4/.DS_Store
--------------------------------------------------------------------------------
/b4/html/org/smarty/Autofoucer.php:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/b3/html/.DS_Store:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/glzjin/20190511_awd_docker/HEAD/b3/html/.DS_Store
--------------------------------------------------------------------------------
/b2/Flaskshop/.DS_Store:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/glzjin/20190511_awd_docker/HEAD/b2/Flaskshop/.DS_Store
--------------------------------------------------------------------------------
/b3/html/public/.DS_Store:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/glzjin/20190511_awd_docker/HEAD/b3/html/public/.DS_Store
--------------------------------------------------------------------------------
/b3/html/thinkphp/logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/glzjin/20190511_awd_docker/HEAD/b3/html/thinkphp/logo.png
--------------------------------------------------------------------------------
/b3/html/public/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/glzjin/20190511_awd_docker/HEAD/b3/html/public/favicon.ico
--------------------------------------------------------------------------------
/b4/html/public/image/bg.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/glzjin/20190511_awd_docker/HEAD/b4/html/public/image/bg.jpg
--------------------------------------------------------------------------------
/b4/html/public/image/big.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/glzjin/20190511_awd_docker/HEAD/b4/html/public/image/big.jpg
--------------------------------------------------------------------------------
/b4/html/public/image/name.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/glzjin/20190511_awd_docker/HEAD/b4/html/public/image/name.png
--------------------------------------------------------------------------------
/b2/Flaskshop/taobao/__init__.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/glzjin/20190511_awd_docker/HEAD/b2/Flaskshop/taobao/__init__.pyc
--------------------------------------------------------------------------------
/b2/Flaskshop/taobao/taobaotest.db:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/glzjin/20190511_awd_docker/HEAD/b2/Flaskshop/taobao/taobaotest.db
--------------------------------------------------------------------------------
/b2/start.sh:
--------------------------------------------------------------------------------
1 | #!/bin/bash
2 |
3 | service nginx start
4 |
5 | su - glzjin -c "nohup python3 /home/glzjin/Flaskshop/run.py &"
6 |
--------------------------------------------------------------------------------
/b3/mysql-passwd:
--------------------------------------------------------------------------------
1 | debconf mysql-server/root_password password root
2 | debconf mysql-server/root_password_again password root
3 |
--------------------------------------------------------------------------------
/b4/html/public/image/password.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/glzjin/20190511_awd_docker/HEAD/b4/html/public/image/password.png
--------------------------------------------------------------------------------
/b4/html/public/image/background.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/glzjin/20190511_awd_docker/HEAD/b4/html/public/image/background.jpg
--------------------------------------------------------------------------------
/b3/start.sh:
--------------------------------------------------------------------------------
1 | #!/bin/bash
2 |
3 | service apache2 start
4 |
5 | find /var/lib/mysql -type f -exec touch {} \; && service mysql start
6 |
--------------------------------------------------------------------------------
/b2/Flaskshop/__pycache__/run.cpython-35.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/glzjin/20190511_awd_docker/HEAD/b2/Flaskshop/__pycache__/run.cpython-35.pyc
--------------------------------------------------------------------------------
/b3/html/application/admin/model/Links.php:
--------------------------------------------------------------------------------
1 | About page
4 |
5 | {% endblock info %}
6 |
--------------------------------------------------------------------------------
/b3/html/thinkphp/library/think/console/bin/hiddeninput.exe:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/glzjin/20190511_awd_docker/HEAD/b3/html/thinkphp/library/think/console/bin/hiddeninput.exe
--------------------------------------------------------------------------------
/b3/html/application/admin/model/Cate.php:
--------------------------------------------------------------------------------
1 | [
4 | '__PUBLIC__'=>SITE_URL.'/static/index',
5 | '__IMG__'=>SITE_URL.'/static',
6 | ],
7 | ];
8 |
--------------------------------------------------------------------------------
/b2/Flaskshop/.idea/encodings.xml:
--------------------------------------------------------------------------------
1 |
2 |
4 | 需要确认发货的订单
5 | {% endblock info %}
6 |
--------------------------------------------------------------------------------
/b3/html/application/index/view/common/foot.html:
--------------------------------------------------------------------------------
1 |
{{ current_user.email }}
8 |{$vo.desc}
33 |{$vo.desc}
33 |