{{sellerTotalView > 1 ? __("sellers", {number: sellerTotalView}) : __("seller", {number: sellerTotalView}) }}, {{numTotalView > 1 ? __("items", {number: numTotalView}) : __("item", {number: numTotalView}) }}
free FREE

Change Your Zip Code

Inventory information and delivery speeds may vary for different locations.

Location History

{{email ? __('Got it!') : __('Restock Alert')}}

We will notify you by email when the item back in stock.

Cancel
Yami

Jingdong book

黑客攻防从入门到精通(攻防与脚本编程篇)

{{buttonTypePin == 3 ? __("Scan to view more PinGo") : __("Scan to start")}}

黑客攻防从入门到精通(攻防与脚本编程篇)

{{__(":people-members", {'people': item.limit_people_count})}} {{ itemCurrency }}{{ item.valid_price }} {{ itemCurrency }}{{ item.invalid_price }} {{ itemDiscount }}
Ends in
{{ itemCurrency }}{{ item.valid_price }}
{{ itemCurrency }}{{ priceFormat(item.valid_price / item.bundle_specification) }}/{{ item.unit }}
{{ itemDiscount }}
{{ itemCurrency }}{{ item.valid_price }} {{ itemCurrency }}{{ priceFormat(item.valid_price / item.bundle_specification) }}/{{ item.unit }} {{ itemCurrency }}{{ item.invalid_price }} {{itemDiscount}}
{{ itemCurrency }}{{ item.valid_price }}
Sale ends in
Sale will starts after Sale ends in
{{ getSeckillDesc(item.seckill_data) }}
{{ __( "Pay with Gift Card to get sale price: :itemCurrency:price", { 'itemCurrency' : itemCurrency, 'price' : (item.giftcard_price ? priceFormat(item.giftcard_price) : '0.00') } ) }} ({{ itemCurrency }}{{ priceFormat(item.giftcard_price / item.bundle_specification) }}/{{ item.unit }}) Details
Best before

Currently unavailable.

We don't know when or if this item will be back in stock.

Unavailable in your area.
Sold Out

Details

Full product details
Content Description

《黑客攻防从入门到精通(攻防与脚本编程篇)》详细介绍了黑客攻防知识,着重讲解常用的入侵手段。主要内容包括:黑客入门知识基础、黑客的攻击方式、Windows系统编程与网站脚本、后门程序编程基础、高级系统后门编程技术、黑客程序的配置和数据包嗅探、编程攻击与防御实例、SQL注入攻击与防范技术、数据库入侵与防范技术、Cookies攻击与防范技术、网络上传漏洞的攻击与防范、恶意脚本入侵与防御、数据备份升级与恢复等内容。
Catalogue

前 言
第1章黑客入门基础知识 / 1
1.1成为黑客需要学习的基础知识 / 2
1.1.1?认识进程 / 2
1.1.2端口的分类和查看 / 2
1.1.3关闭和开启端口 / 5
1.1.4端口的限制 / 6
1.1.5文件和文件系统概述 / 12
1.1.6Windows注册表 / 13
1.2黑客常见术语与命令 / 14
1.2.1黑客常用术语 / 14
1.2.2测试物理网络的Ping命令 / 16
1.2.3查看网络连接的Netstat命令 / 18
1.2.4工作组和域的Net命令 / 20
1.2.523端口登录的Telnet命令 / 22
1.2.6传输协议FTP命令 / 22
1.2.7查看网络配置的IPConfig命令 / 23
1.3常见的网络协议 / 23
1.3.1TCP/IP协议簇 / 24
1.3.2IP协议 / 24
1.3.3ARP协议 / 25
1.3.4ICMP协议 / 26
1.4在计算机中创建虚拟环境 / 27
1.4.1安装VMware虚拟机 / 27
1.4.2配置安装好的VMware虚拟机 / 30
1.4.3安装虚拟操作系统 / 32
1.4.4VMware Tools安装 / 35
1.5必要的黑客攻防知识 / 36
1.5.1常见的黑客攻击流程 / 36
1.5.2常用的网络防御技术 / 37
1.6常见问题与解答 / 39
第2章黑客的攻击方式曝光 / 40
2.1网络欺骗攻击曝光 / 41
2.1.15种常见的网络欺骗方式 / 41
2.1.2网络钓鱼攻击概念 / 44
2.1.3网络钓鱼攻击的常用手段 / 44
2.1.4网络钓鱼攻击的预防 / 45
2.2口令猜解攻击曝光 / 46
2.2.1实现口令猜解攻击的3种方法 / 46
2.2.2LC6破解计算机密码曝光 / 48
2.2.3SAMInside破解计算机密码曝光 / 50
2.2.4压缩包密码的暴力破解曝光 / 53
2.3缓冲区溢出攻击曝光 / 54
2.3.1缓冲区溢出介绍 / 54
2.3.2缓冲区溢出攻击方式曝光 / 56
2.3.3缓冲区溢出攻击防御 / 57
2.3.4针对IIS.printer缓冲区溢出漏洞攻击曝光 / 58
2.3.5RPC缓冲区溢出攻击曝光 / 60
2.3.6即插即用功能远程控制缓冲区溢出漏洞 / 62
2.4常见问题与解答 / 63
第3章Windows系统编程与网站脚本 / 64
3.1了解黑客与编程 / 65
3.1.1黑客常用的4种编程语言 / 65
3.1.2黑客与编程的关系 / 66
3.2网络通信编程 / 67
3.2.1网络通信简介 / 67
3.2.2Winsock编程基础 / 69
3.3文件操作编程 / 74
3.3.1文件读写编程 / 75
3.3.2文件的复制、移动和删除编程 / 78
3.4注册表编程 / 78
3.5进程和线程编程 / 82
3.5.1进程编程 / 82
3.5.2线程编程 / 87
3.6网站脚本入侵与防范 / 89
3.6.1Web脚本攻击的特点 / 90
3.6.2Web脚本攻击常见的方式 / 91
3.6.3脚本漏洞的根源与防范 / 92
3.7常见问题与解答 / 93
第4章后门程序编程基础 / 94
4.1后门概述 / 95
4.1.1后门的发展历史 / 95
4.1.2后门的分类 / 96
4.2编写简单的cmdshell程序 / 96
4.2.1管道通信技术简介 / 97
4.2.2正向连接后门的编程 / 99
4.2.3反向连接后门的编程 / 107
4.3编写简单的后门程序 / 107
4.3.1编程实现远程终端的开启 / 107
4.3.2编程实现文件查找功能 / 111
4.3.3编程实现重启、关机、注销 / 116
4.3.4编程实现http下载文件 / 119
4.3.5编程实现cmdshell和各功能的切换 / 122
4.4实现自启动功能的编程技术 / 124
4.4.1注册表自启动的实现 / 124
4.4.2ActiveX自启动的实现 / 126
4.4.3系统服务自启动的实现 / 128
4.4.4svchost.exe自动加载启动的实现 / 137
4.5常见问题与解答 / 139
第5章高级系统后门编程技术 / 140
5.1远程线程技术 / 141
5.1.1初步的远程线程注入技术 / 141
5.1.2编写远程线程注入后门 / 146
5.1.3远程线程技术的发展 / 147
5.2端口复用后门 / 150
5.2.1后门思路 / 150
5.2.2具体编程实现 / 151
5.3常见问题与解答 / 155
第6章黑客程序的配置和数据包嗅探 / 156
6.1文件生成技术 / 157
6.1.1资源法生成文件 / 157
6.1.2附加文件法生成文件 / 161
6.2黑客程序的配置 / 165
6.2.1数据替换法 / 165
6.2.2附加信息法 / 172
6.3数据包嗅探 / 174
6.3.1原始套接字基础 / 174
6.3.2利用ICMP原始套接字实现ping程序 / 175
6.3.3基于原始套接字的嗅探技术 / 180
6.3.4Packet32进行ARP攻击曝光 / 185
6.4常见问题与解答 / 195
第7章编程攻击与防御实例 / 196
7.1VB木马编写与防范 / 197
7.1.1木马编写曝光 / 197
7.1.2给客户端和服务端添加基本功能 / 200
7.1.3防范木马在后台运行 / 202
7.1.4木马开机运行 / 202
7.1.5黑客防止木马被删技术曝光 / 203
7.1.6完成木马的编写 / 203
7.2基于ICMP的VC木马 / 204
7.3基于Delphi的木马 / 207
7.3.1实现过程 / 207
7.3.2编写发送端程序 / 207
7.3.3编写接收端程序 / 209
7.3.4测试程序 / 211
7.4电子眼——计算机扫描技术的编程 / 211
7.4.1主机的端口状态扫描 / 211
7.4.2文件目录扫描 / 212
7.4.3进程扫描 / 213
7.5隐藏防拷贝程序的运行 / 214
7.6常见问题与解答 / 216
第8章SQL注入与防范技术 / 217
8.1SQL注入前的准备 / 218
8.1.1攻击前的准备 / 218
8.1.2寻找注入点 / 220
8.1.3判断SQL注入点类型 / 221
8.1.4判断目标数据库类型 / 222
8.2常见的注入工具 / 223
8.2.1啊D注入工具 / 224
8.2.2NBSI注入工具 / 226
8.2.3Domain注入工具 / 228
8.2.4ZBSI注入工具 / 231
8.3'or' = 'or'经典漏洞攻击曝光 / 233
8.3.1'or' = 'or'攻击突破登录验证 / 233
8.3.2未过滤的request.form造成的注入 / 235
8.4缺失单引号与空格的注入 / 241
8.4.1转换编码,绕过程序过滤 / 241
8.4.2/**/替换空格的注入 / 244
8.4.3具体的防范措施 / 256
8.5Update注入攻击曝光 / 256
8.5.1Buy_UserList未过滤传递 / 256
8.5.2手工Update提交 / 258
8.6SQL注入攻击的防范 / 260
8.7常见问题与解答 / 263
第9章数据库入侵与防范技术 / 264
9.1常见数据库漏洞 / 265
9.1.1数据库下载漏洞 / 265
9.1.2暴库漏洞 / 266
9.2数据库连接的基础知识 / 266
9.2.1ASP与ADO模块 / 266
9.2.2ADO对象存取数据库 / 267
9.2.3数据库连接代码 / 268
9.3默认数据库下载漏洞的攻击曝光 / 269
9.3.1论坛网站的基本搭建流程 / 269
9.3.2数据库下载漏洞的攻击流程 / 270
9.3.3下载网站的数据库 / 273
9.3.4数据库下载漏洞的防范 / 275
9.4利用Google搜索网站漏洞 / 276
9.4.1利用Google搜索网站信息 / 276
9.4.2Google暴库漏洞的分析与防范 / 278
9.5暴库漏洞攻击曝光 / 279
9.5.1conn.asp暴库法 / 280
9.5.2%5c暴库法 / 280
9.5.3防御暴库攻击 / 283
9.6常见问题与解答 / 284
第10章Cookie攻击与防范技术 / 285
10.1Cookie欺骗攻击曝光 / 286
10.1.1Cookie信息的安全隐患 / 286
10.1.2利用IECookiesView获得目标计算机中的Cookie信息 / 287
10.1.3利用Cookie欺骗漏洞掌握网站 / 289
10.2数据库与Cookie的关系 / 293
10.3Cookie欺骗与上传攻击曝光 / 295
10.3.1L-Blog中的Cookie欺骗漏洞分析 / 295
10.3.2利用Cookie欺骗获得上传权限 / 299
10.3.3防御措施 / 300
10.4ClassID的欺骗入侵 / 300
10.5用户名的欺骗入侵 / 302
10.6Cookie欺骗的防范措施 / 304
10.6.1删除Cookie记录 / 304
10.6.2更改Cookie文件的保存位置 / 306
10.7常见问题与解答 / 306
第11章网络上传漏洞的攻击与防范 / 307
11.1多余映射与上传攻击曝光 / 308
11.1.1文件上传漏洞的基本原理 / 308
11.1.2asp.dll映射攻击曝光 / 308
11.1.3stm与shtm的映射攻击曝光 / 315
11.2点与Windows命名机制的漏洞 / 320
11.2.1Windows命名机制与程序漏洞 / 320
11.2.2变换文件名产生的漏洞 / 322
11.3二次循环产生的漏洞 / 327
11.3.1MyPower上传攻击测试 / 327
11.3.2本地提交上传流程 / 332
11.3.3二次上传产生的逻辑错误 / 334
11.3.4“沁竹音乐网”上传漏洞攻击 / 335
11.3.5“桃源多功能留言板”上传漏洞攻击曝光 / 338
11.4WSockExpert进行上传攻击曝光 / 340
11.4.1WSockExpert与上传漏洞攻击 / 340
11.4.2WSockExpert与NC结合攻破天意商务网 / 343
11.5不受控制的上传攻击 / 349
11.6常见问题与解答 / 352
第12章恶意脚本入侵与防御 / 354
12.1恶意脚本论坛入侵与防御 / 355
12.1.1极易入侵的BBS3000论坛 / 355
12.1.2并不安全的论坛点歌台漏洞 / 357
12.1.3雷奥论坛LB5000也存在着漏洞 / 359
12.1.4被种上木马的Dvbbs7.0上传漏洞 / 364
12.2剖析恶意脚本的巧妙运用 / 368
12.2.1全面提升ASP木马权限 / 368
12.2.2利用恶意代码获得用户的Cookie / 370
12.2.3在动网论坛中嵌入网页木马 / 371
12.2.4利用恶意脚本实现Cookie注入攻击曝光 / 375
12.3恶意脚本入侵的防御 / 376
12.4常见问题与解答 / 377
第13章数据备份升级与恢复 / 378
13.1全面了解备份升级 / 379
13.1.1数据备份概述 / 379
13.1.2系统的补丁升级 / 380
13.2备份与还原操作系统 / 381
13.2.1使用还原点备份与还原系统 / 381
13.2.2使用GHOST备份与还原系统 / 385
13.3备份与还原常用数据 / 389
13.3.1使用驱动精灵备份与还原驱动程序 / 389
13.3.2备份与还原IE浏览器的收藏夹 / 392
13.3.3备份和还原QQ聊天记录 / 395
13.3.4备份和还原QQ自定义表情 / 398
13.4全面了解数据恢复 / 402
13.4.1数据恢复概述 / 402
13.4.2造成数据丢失的原因 / 403
13.4.3使用和维护硬盘应该注意的事项 / 403
13.5强大的数据恢复工具 / 404
13.5.1使用Recuva来恢复数据 / 405
13.5.2使用FinalData来恢复数据 / 410
13.5.3使用FinalRecovery来恢复数据 / 414
13.6常见问题与解答 / 418
Introduction

我们常听说某个网站存在漏洞,某个网站又被黑客攻击了,但是黑客们是如何进行攻击的呢?本着让所有计算机使用者能够防患于未然的主旨,本书着重而详细地介绍了各种黑客入侵PHP网页的手法,虽然不能说是涵盖了全部的入侵手段,但已经能够概括绝大部分的攻击方式。本书详细解说了每个攻击手法的原理与实际操作,以及如何有效地防范这些入侵。读者只有在了解黑客攻击知识的基础上,才能最大限度地做到“知己知彼”,才有可能在遭受黑客攻击时尽量减少自己的损失。
主要内容本书共13章,第1章介绍黑客入门基础知识,包括进程、端口、黑客常见术语及命令、TCP/IP协议、创建虚拟测试环境以及介绍常见的黑客攻击流程以及网络防御技术。
第2章介绍黑客的攻击方式,包括网络欺骗攻击、口令猜解攻击以及缓冲区溢出攻击。
第3章介绍Windows系统编程与网站脚本,包括黑客常用的编程语言、网络通信编程、文件操作编程、注册表编程、进程和线程编程以及Web脚本的入侵与防范。
第4章介绍后门程序编程基础,包括后门的发展历史及后门的分类、编写简单的cmdshell程序、编写简单的后门程序以及实现自启动功能的编程技术。
第5章介绍高级系统后门编程技术,包括远程线程注入后门和端口复用后门基本实现过程以及通过编程来编辑出这两种后门。
第6章介绍黑客程序的配置和数据包嗅探,包括文件生成技术、黑客程序配置以及数据包嗅探等三方面的内容。
第7章介绍编程攻击与防御实例,包括VB木马编写以及防范措施、基于ICMP的VC木马编写、基于Delphi的木马编写、计算机扫描技术的编程以及隐藏防拷贝程序的运行。
第8章介绍SQL注入与防范技术,包括SQL注入前的准备,啊D、NBSI、Domain、ZBSI等常见注入工具实现注入攻击的方法,‘or’=‘or’经典漏洞攻击曝光,针对缺失单引号与空格的注入攻击方式,Update注入攻击,以及SQL注入攻击的防范方法等。
第9章介绍数据库入侵与防范技术,包括常见的数据库入侵及其防御方式、两种常见的数据库入侵技术:下载漏洞攻击和暴库漏洞攻击。
第10章介绍Cookie攻击与防范技术,包括Cookie欺骗攻击、数据库与Cookie的关系、Cookie欺骗与上传攻击、ClassID的欺骗入侵、用户名的欺骗入侵以及Cookie欺骗的防范措施。
第11章介绍网络上传漏洞的攻击与防范,包括多余映射与上传攻击、点与Windows命名机制的漏洞攻击、二次循环产生的漏洞、借助WSockExpert工具进行上传攻击等。
第12章介绍恶意脚本入侵与防御,包括恶意脚本论坛入侵与防御、剖析恶意脚本的巧妙运用以及常见恶意脚本入侵的防御措施。
第13章介绍数据备份升级与恢复,包括备份与还原操作系统、备份与还原常用数据,全面了解数据恢复以及Recuva、FinalData和FinalRecovery三款数据恢复软件的使用等。
本书特色本书以情景教学、案例驱动与任务进阶为鲜明特色,在书中可以看到一个个生动的情景案例。通过完成一个个实践任务,读者可以轻松掌握各个知识点,在不知不觉中快速提升实战技能。
高效模式——全程图解模式可彻底克服攻防操作的学习障碍。
内容合理——精选入门读者最迫切需要掌握的知识点,构成一个实用、充分、完整的知识体系。
举一反三——根据初学者学习中习惯机械记忆、不求甚解的特点,力求通过一个个知识点的讲解,让读者彻底理解和掌握类似场合的应对思路。
读者对象计算机初、中级用户计算机爱好者、提高者各行各业从事网络维护的人员网络管理员大中专院校相关专业学生


Specifications

Brand Jingdong book
Brand Origin China

Disclaimer

Product packaging, specifications and price are subject to change without notice. All information about the products on our website is provided for information purposes only. Please always read labels, warnings and directions provided with the product before use.

View Full Terms of Use
Add to favorites
{{ $isZh ? coupon.coupon_name_sub : coupon.coupon_ename_sub | formatCurrency }}
{{__("Buy Directly")}} {{ itemCurrency }}{{ item.directly_price }}
Quantity
{{ quantity }}
{{ instockMsg }}
{{ limitText }}
{{buttonTypePin == 3 ? __("Scan to view more PinGo") : __("Scan to start")}}
Sold by JD@CHINA
Ship to
{{ __("Ship to United States only") }}
Free shipping over 69
Genuine guarantee

Added to Cart

Keep Shopping

More to Consider

{{ item.brand_name }}

{{ item.item_name }}

{{ item.currency }}{{ item.market_price }}

{{ item.currency }}{{ item.unit_price }}

{{ item.currency }}{{ item.unit_price }}

Coupons

{{ coupon.coupon_name_new | formatCurrency }}
Clip Clipped Over
{{ getCouponDescStr(coupon) }}
{{ coupon.use_time_desc }}
Expires soon {{ formatTime(coupon.use_end_time) }}

Share this item with friends

Cancel

Yami Gift Card

Get this exclusive deal when paying with gift card

Terms and Conditions

Gift card deals are special offers for selected products;

The gift card deals will automatically be activated if a customer uses gift card balance at check out and the balance is sufficient to pay for the total price of the shopping cart products with gift card deals;

You will not be able to activate the gift card deals if you choose other payment methods besides gift card. The products will be purchased at their normal prices;

If your account balance is not enough to pay for the products with gift card deals, you can choose to reload your gift card balance by clicking on the Reload button at either shopping cart page or check out page;

Products that have gift card deals can be recognized by a special symbol showing 'GC Deal';

For any additional questions or concerns, please contact our customer service;

Yamibuy reserves the right of final interpretation.

Sold by Yami

Service Guarantee

Yami Free Shipping over $49
Yami Easy Returns
Yami Ships from United States

Shipping

  • United States

    Standard Shipping is $5.99 (Excluding Alaska & Hawaii). Free on orders of $49 or more.

    Local Express is $5.99 (Available in Parts of CA, NJ, MA & PA). Free on orders of $49 or more.

    2-Day Express (Includes Alaska & Hawaii) starts at $19.99.

Return Policy

Yami is committed to provide our customers with a peace of mind when purchasing from us. Most items shipped from Yamibuy.com can be returned within 30 days of receipt of shipment (For Food, Beverages, Snacks, Dry Goods, Health supplements, Fresh Grocery and Perishables Goods, within 7 days of receipt of shipment due to damages or quality issues; To ensure that every customer receives safe and high-quality products, we do not provide refunds or returns for beauty products once they have been opened or used, except in the case of quality issues; Some products may have different policies or requirements associated with them, please see below for products under special categories, or contact Yami Customer Service for further assistance).
Thank you for your understanding and support.

Learn More

Sold by Yami

Terms and Conditions of Yami E-Gift Card

If you choose “Redeem automatically” as your delivery method, your gift card balance will be reload automatically after your order has been processed successfully;

If you choose “Send to Email”as your delivery method, the card number and CVV will be sent to the email address automatically;

Any user can use the card number and CVV to redeem the gift card, please keep your gift card information safely. If you have any trouble receiving email, please contact Yami customer service;

Yami gift card can be used to purchase both Yami owned or Marketplace products;

Yami gift card will never expire;

Yami gift card balance does not have to be used up at once;

All rights reserved by Yami.

Return Policy

Gift card that has already been consumed is non-refundable.

Sold by JD@CHINA

Service Guarantee

Yami Free Shipping over $49
Yami Easy Returns
Yami Ships from United States

Shipping

  • United States

    Standard Shipping is $5.99 (Excluding Alaska & Hawaii). Free on orders of $49 or more.

    Local Express is $5.99 (Available in Parts of CA, NJ, MA & PA). Free on orders of $49 or more.

    2-Day Express (Includes Alaska & Hawaii) starts at $19.99.

Return Policy

You may return product within 30 days upon receiving the product. Items returned must be new in it's original packing, including the original invoice for the purchase. Customer return product at their own expense.

Sold by JD@CHINA

Service Guarantee

Yami Cross-store Free Shipping over $69
Yami 30-days Return

Yami-China FC

Yami has a consolidation warehouse in China which collects multiple sellers’ packages and combines to one order. Our Yami consolidation warehouse will directly ship the packages to your door. Cross-store free shipping over $69.

Return Policy

You may return products within 30 days upon receiving the products. Sellers take responsibilities for any wrong shipment or missing items. Packing needs to be unopened for any other than quality issues return. We promise to pack carefully, but because goods are taking long journey to destinations, simple damages to packaging may occur. Any damages not causing internal goods quality problems are not allowed to return. If you open the package and any quality problem is found, please contact customer service within three days after receipt of goods.

Shipping Information

Yami Consolidation Service Shipping Fee $9.99(Free shipping over $69)

Sellers in China will ship their orders within 1-2 business days once the order is placed. Packages are sent to our consolidation warehouse in China and combined there. Our Yami consolidation warehouse will directly ship the packages to you via UPS. The average time for UPS to ship from China to the United States is about 10 working days and it can be traced using the tracking number. Due to the pandemic, the delivery time may be delayed by about 5 days. The package needs to be signed by the guest. If the receipt is not signed, the customer shall bear the risk of loss of the package.

Sold by JD@CHINA

Service Guarantee

Free shipping over 69
Genuine guarantee

Shipping

Yami Consolidated Shipping $9.99(Free shipping over $69)


Seller will ship the orders within 1-2 business days. The logistics time limit is expected to be 7-15 working days. In case of customs clearance, the delivery time will be extended by 3-7 days. The final receipt date is subject to the information of the postal company.

Yami Points information

All items are excluding from any promotion or points events on Yamibuy.com

Return Policy

You may return product within 30 days upon receiving the product. Items returned must be new in it's original packing, including the original invoice for the purchase. Customer return product at their own expense.

Yami

Download the Yami App

Back Top

Recommended for You

About the brand

Jingdong book

为您推荐

Yami
欣葉
2种选择
欣叶 御大福 芋头麻薯 180g

周销量 600+

$1.66 $1.99 83折
Yami
欣葉
2种选择
欣叶 御大福 芋头麻薯 180g

周销量 600+

$1.66 $1.99 83折
Yami
欣葉
2种选择
欣叶 御大福 芋头麻薯 180g

周销量 600+

$1.66 $1.99 83折
Yami
欣葉
2种选择
欣叶 御大福 芋头麻薯 180g

周销量 600+

$1.66 $1.99 83折
Yami
欣葉
2种选择
欣叶 御大福 芋头麻薯 180g

周销量 600+

$1.66 $1.99 83折
Yami
欣葉
2种选择
欣叶 御大福 芋头麻薯 180g

周销量 600+

$1.66 $1.99 83折

Reviews{{'('+ commentList.posts_count + ')'}}

Have your say. Be the first to help other guests.

Write a review
{{ totalRating }} Write a review
  • {{i}} star

    {{i}} stars

    {{ parseInt(commentRatingList[i]) }}%

Yami Yami
{{ comment.user_name }}

{{ showTranslate(comment) }}Show Less

{{ strLimit(comment,800) }}Show more

Show Original

{{ comment.content }}

Yami
Show All

{{ formatTime(comment.in_dtm) }} VERIFIED PURCHASE {{groupData}}

{{ comment.likes_count }} {{ comment.likes_count }} {{ comment.reply_count }} {{comment.in_user==uid ? __('Delete') : __('Report')}}
Yami Yami
{{ comment.user_name }}

{{ showTranslate(comment) }}Show Less

{{ strLimit(comment,800) }}Show more

Show Original

{{ comment.content }}

Yami
Show All

{{ formatTime(comment.in_dtm) }} VERIFIED PURCHASE {{groupData}}

{{ comment.likes_count }} {{ comment.likes_count }} {{ comment.reply_count }} {{comment.in_user==uid ? __('Delete') : __('Report')}}

No related comment~

Review

Yami Yami

{{ showTranslate(commentDetails) }}Show Less

{{ strLimit(commentDetails,800) }}Show more

Show Original

{{ commentDetails.content }}

Yami
Show All

{{ formatTime(commentDetails.in_dtm) }} VERIFIED PURCHASE {{groupData}}

{{ commentDetails.likes_count }} {{ commentDetails.likes_count }} {{ commentDetails.reply_count }} {{commentDetails.in_user==uid ? __('Delete') : __('Report')}}

Please write at least one word

Comments{{'(' + replyList.length + ')'}}

Yami Yami

{{ showTranslate(reply) }}Show Less

{{ strLimit(reply,800) }}Show more

Show Original

{{ reply.reply_content }}

{{ formatTime(reply.reply_in_dtm) }}

{{ reply.reply_likes_count }} {{ reply.reply_likes_count }} {{ reply.reply_reply_count }} {{reply.reply_in_user==uid ? __('Delete') : __('Report')}}

Please write at least one word

Cancel

That’s all the comments so far!

Write a review
How would you rate this item?

Please add your comment.

  • A nice nickname will make your comments more popular!
  • The nickname in your account will be changed to the same as here.
Thanks for your review
Our community rely on great reviews like yours to find the best of Asia.

Report

If you find this content inappropriate and think it should be removed from the Yami.com site, let us know please.

Cancel

Are you sure to delete your review?

Cancel

You’ve Recently Viewed

About the brand

Jingdong book