嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):813200300
本次赞助数额为: 2 元微信扫码支付:2 元
请留下您的邮箱,我们将在2小时内将文件发到您的邮箱
Python-陌陌风控系统静态规则引擎零基础简易便捷的配置多种复杂规则实时高效管控用户异常行为
陌陌风控系统静态规则引擎,零基础简易便捷的配置多种复杂规则,实时高效管控用户异常行为。
.
├── aswan-master
│ ├── CONTRIBUTORS
│ ├── LICENSE
│ ├── README.md
│ ├── builtin_funcs
│ │ ├── __init__.py
│ │ ├── base.py
│ │ └── sample.py
│ ├── clients
│ │ ├── __init__.py
│ │ ├── mongo_client.py
│ │ ├── mysql_client.py
│ │ └── redis_client.py
│ ├── config
│ │ ├── __init__.py
│ │ ├── base.py
│ │ ├── develop.py
│ │ ├── product.py
│ │ └── test.py
│ ├── log
│ │ ├── __init__.py
│ │ ├── handler.py
│ │ └── logger.py
│ ├── requirements.txt
│ ├── risk_models
│ │ ├── __init__.py
│ │ ├── cache.py
│ │ ├── exceptions.py
│ │ ├── menu.py
│ │ ├── rule.py
│ │ ├── source.py
│ │ └── strategy.py
│ ├── risk_server.py
│ ├── server
│ │ ├── __init__.py
│ │ ├── base.py
│ │ ├── query.py
│ │ └── report.py
│ ├── start.sh
│ ├── tests
│ │ ├── __init__.py
│ │ ├── run_test.py
│ │ ├── test_builtin_funcs
│ │ │ ├── __init__.py
│ │ │ └── test_buintin_funcs.py
│ │ └── test_risk_models
│ │ ├── __init__.py
│ │ ├── test_menu.py
│ │ └── test_rule.py
│ └── www
│ ├── __init__.py
│ ├── bk_config
│ │ ├── __init__.py
│ │ ├── forms.py
│ │ ├── init_data.py
│ │ ├── management
│ │ │ ├── __init__.py
│ │ │ └── commands
│ │ │ ├── __init__.py
│ │ │ └── init_risk_data.py
│ │ ├── models.py
│ │ ├── tables.py
│ │ ├── templates
│ │ │ └── config
│ │ │ └── source_list.html
│ │ ├── test.py
│ │ ├── urls.py
│ │ └── views.py
│ ├── core
│ │ ├── __init__.py
│ │ ├── columns.py
│ │ ├── forms.py
│ │ ├── generic.py
│ │ ├── lru.py
│ │ ├── pymongo_client.py
│ │ ├── redis_client.py
│ │ ├── testcase.py
│ │ └── utils.py
│ ├── log_manage
│ │ ├── __init__.py
│ │ ├── forms.py
│ │ ├── init_data.py
│ │ ├── management
│ │ │ ├── __init__.py
│ │ │ └── commands
│ │ │ ├── __init__.py
│ │ │ └── persistence_hit_log.py
│ │ ├── migrations
│ │ │ ├── 0001_initial.py
│ │ │ └── __init__.py
│ │ ├── models.py
│ │ ├── signals.py
│ │ ├── tables.py
│ │ ├── templates
│ │ │ └── log_manage
│ │ │ ├── access_audit.html
│ │ │ └── hit_list_detail.html
│ │ ├── test.py
│ │ ├── urls.py
│ │ └── views.py
│ ├── manage.py
│ ├── menu
│ │ ├── __init__.py
│ │ ├── forms.py
│ │ ├── init_data.py
│ │ ├── models.py
│ │ ├── tables.py
│ │ ├── templates
│ │ │ └── menu
│ │ │ ├── batch_delete.html
│ │ │ ├── event_list.html
│ │ │ ├── ip_list.html
│ │ │ ├── pay_list.html
│ │ │ ├── phone_list.html
│ │ │ ├── uid_list.html
│ │ │ └── userid_list.html
│ │ ├── test.py
│ │ ├── urls.py
│ │ └── views.py
│ ├── permissions
│ │ ├── __init__.py
│ │ ├── context_processors.py
│ │ ├── forms.py
│ │ ├── init_data.py
│ │ ├── middleware.py
│ │ ├── models.py
│ │ ├── permission.py
│ │ ├── tables.py
│ │ ├── templates
│ │ │ └── permissions
│ │ │ ├── group_list.html
│ │ │ ├── group_update.html
│ │ │ ├── uri_collection.html
│ │ │ ├── uri_group_detail.html
│ │ │ ├── uri_group_list.html
│ │ │ ├── uri_group_update.html
│ │ │ ├── user_list.html
│ │ │ └── user_update.html
│ │ ├── test.py
│ │ ├── urls.py
│ │ └── views.py
│ ├── risk_auth
│ │ ├── __init__.py
│ │ ├── forms.py
│ │ ├── management
│ │ │ ├── __init__.py
│ │ │ └── commands
│ │ │ └── __init__.py
│ │ ├── models.py
│ │ ├── templates
│ │ │ └── risk_auth
│ │ │ ├── index.html
│ │ │ └── login.html
│ │ ├── test.py
│ │ ├── urls.py
│ │ └── views.py
│ ├── rule
│ │ ├── __init__.py
│ │ ├── forms.py
│ │ ├── init_data.py
│ │ ├── models.py
│ │ ├── tables.py
│ │ ├── templates
│ │ │ └── rule
│ │ │ ├── rules_create.html
│ │ │ ├── rules_detail.html
│ │ │ ├── rules_edit.html
│ │ │ ├── rules_list.html
│ │ │ └── rules_test.html
│ │ ├── templatetags
│ │ │ ├── __init__.py
│ │ │ └── reverse_tags.py
│ │ ├── test.py
│ │ ├── urls.py
│ │ └── views.py
│ ├── settings
│ │ ├── __init__.py
│ │ ├── local_settings
│ │ │ ├── __init__.py
│ │ │ ├── develop.py
│ │ │ ├── product.py
│ │ │ └── test.py
│ │ └── settings.py
│ ├── static
│ │ ├── ckeditor
│ │ │ └── ckeditor
│ │ │ └── config.js
│ │ ├── css
│ │ │ ├── bootstrap.min.css
│ │ │ ├── filter-form.css
│ │ │ ├── font-awesome.css
│ │ │ ├── font-awesome.min.css
│ │ │ ├── jquery-ui.css
│ │ │ ├── jquery.searchableSelect.css
│ │ │ ├── main.css
│ │ │ ├── moji.css
│ │ │ ├── multi-select.css
│ │ │ ├── nav.css
│ │ │ ├── pagination.css
│ │ │ ├── patterns
│ │ │ │ ├── header-profile.png
│ │ │ │ └── shattered.png
│ │ │ ├── plugins
│ │ │ │ └── sweetalert
│ │ │ │ └── sweetalert.css
│ │ │ └── verify.css
│ │ ├── fonts
│ │ │ ├── FontAwesome.otf
│ │ │ ├── fontawesome-webfont.eot
│ │ │ ├── fontawesome-webfont.svg
│ │ │ ├── fontawesome-webfont.ttf
│ │ │ ├── fontawesome-webfont.woff
│ │ │ ├── fontawesome-webfont.woff2
│ │ │ ├── glyphicons-halflings-regular.eot
│ │ │ ├── glyphicons-halflings-regular.svg
│ │ │ ├── glyphicons-halflings-regular.ttf
│ │ │ ├── glyphicons-halflings-regular.woff
│ │ │ └── glyphicons-halflings-regular.woff2
│ │ ├── img
│ │ │ ├── favicon.ico
│ │ │ ├── icon.png
│ │ │ └── wiki
│ │ │ ├── architecture.jpg
│ │ │ ├── audit_log.png
│ │ │ ├── bool_strategy.png
│ │ │ ├── data_source.png
│ │ │ ├── freq_strategy.png
│ │ │ ├── hit_log.png
│ │ │ ├── menu.png
│ │ │ ├── menu_strategy.png
│ │ │ ├── permission_manage.png
│ │ │ ├── rule_manage.png
│ │ │ ├── url_group_manage.png
│ │ │ ├── user_manage.png
│ │ │ └── user_strategy.png
│ │ ├── js
│ │ │ ├── bootstrap-modal.js
│ │ │ ├── bootstrap-modalmanager.js
│ │ │ ├── content.min.js
│ │ │ ├── csrf.js
│ │ │ ├── default_time.js
│ │ │ ├── jquery-ui-1.10.4.min.js
│ │ │ ├── jquery.dynamic-rows.min.js
│ │ │ ├── jquery.multi-select.js
│ │ │ ├── jquery.quicksearch.js
│ │ │ ├── jquery.searchableSelect.js
│ │ │ ├── main.js
│ │ │ ├── plugins
│ │ │ │ ├── layer
│ │ │ │ │ ├── extend
│ │ │ │ │ │ └── layer.ext.js
│ │ │ │ │ ├── laydate
│ │ │ │ │ │ ├── laydate.js
│ │ │ │ │ │ ├── need
│ │ │ │ │ │ │ └── laydate.css
│ │ │ │ │ │ └── skins
│ │ │ │ │ │ └── default
│ │ │ │ │ │ ├── icon.png
│ │ │ │ │ │ └── laydate.css
│ │ │ │ │ ├── layer.min.js
│ │ │ │ │ ├── layim
│ │ │ │ │ │ ├── layim.css
│ │ │ │ │ │ ├── layim.js
│ │ │ │ │ │ └── loading.gif
│ │ │ │ │ └── skin
│ │ │ │ │ └── layer.css
│ │ │ │ ├── metisMenu
│ │ │ │ │ └── jquery.metisMenu.js
│ │ │ │ ├── pace
│ │ │ │ │ └── pace.min.js
│ │ │ │ ├── slimscroll
│ │ │ │ │ └── jquery.slimscroll.min.js
│ │ │ │ └── sweetalert
│ │ │ │ └── sweetalert.min.js
│ │ │ ├── rule_map_strategygroup.js
│ │ │ ├── switch_left_right.png
│ │ │ ├── uri_scene.js
│ │ │ └── vendor
│ │ │ ├── bootstrap.min.js
│ │ │ └── jquery.min.js
│ │ └── widget
│ │ └── datetimepicker
│ │ ├── bootstrap-datetimepicker.css
│ │ ├── bootstrap-datetimepicker.js
│ │ └── datetimepicker.css
│ ├── strategy
│ │ ├── __init__.py
│ │ ├── forms.py
│ │ ├── init_data.py
│ │ ├── largest_period.py
│ │ ├── models.py
│ │ ├── tables.py
│ │ ├── templates
│ │ │ └── strategy
│ │ │ ├── bool_strategy_create.html
│ │ │ ├── bool_strategy_list.html
│ │ │ ├── bool_strategy_test.html
│ │ │ ├── fast_strategy_list.html
│ │ │ ├── freq_strategy_create.html
│ │ │ ├── freq_strategy_list.html
│ │ │ ├── freq_strategy_test.html
│ │ │ ├── menu_strategy_create.html
│ │ │ ├── menu_strategy_list.html
│ │ │ ├── menu_strategy_test.html
│ │ │ ├── user_strategy_create.html
│ │ │ ├── user_strategy_list.html
│ │ │ └── user_strategy_test.html
│ │ ├── templatetags
│ │ │ ├── __init__.py
│ │ │ └── reverse_tags.py
│ │ ├── tests.py
│ │ ├── urls.py
│ │ └── views.py
│ ├── templates
│ │ ├── 403.html
│ │ ├── 404.html
│ │ ├── 500.html
│ │ ├── base.html
│ │ ├── datepicker.html
│ │ ├── error_page.html
│ │ ├── footer.html
│ │ ├── pagination.html
│ │ ├── siderbar.html
│ │ └── table.html
│ ├── urls.py
│ └── wsgi.py
└── 好例子网_Python-陌陌风控系统静态规则引擎零基础简易便捷的配置多种复杂规则实时高效管控用户异常行为.zip
72 directories, 255 files