tci路由账号和密码是什么码

您所在位置: &
&nbsp&&nbsp&nbsp&&nbsp
基于可信密码模块的可信电子签名终端设计与实现.pdf70页
本文档一共被下载:
次 ,您可全文免费在线阅读后下载本文档。
文档加载中...广告还剩秒
需要金币:150 &&
基于可信密码模块的可信电子签名终端设计与实现.pdf
你可能关注的文档:
··········
··········
西安电子科技大学 硕士学位论文
基于可信密码模块的可信电子签名终端设计与实现 姓名:沈孝东 申请学位级别:硕士 专业:密码学 指导教师:方勇 座机电话号码 摘要 摘要 目前电子签名都是在普通PC上进行的,但喾通PC的运行研婀能襁恶意程序感染,
可信PC能眵有效解决普通PC的安全问题,但是当前PC匕可f言计算的研究这耍面临许多瓶
颈,特别是信任链难匕眦PC上操作系统进行传递。为了解决电子签名安全问题,本文
设计并实现了基于可信密码模块 RM 的可信电子签名终端,首先根据需求设计了硬件
原理图,接着实现了终端的设备驱动程序、TCM服务模块 TSM 程序和主程序等相关
软件,该终端各组件代码相对简单,能够利用TCM提供的可信度量根,建立了从核心可
信度量根 a王1M 到司信签名及验签的―条信.任链,构造了―卟司信的计算环境,终端
利用TCM提供的可信存储根和可信报告根实现了平台完整性的证明,最终实现了可信的
电子签名及验签。
关键词:可信计算可信密码模块TCM嵌入式系统电子签名 Abstract Abstract in
The is inPCat thesecure environment present,butcomputing E-signatureusuallyimplemented
PCis tobe themalicecode.Trusted PCcansolvethe 0f恤 easilydamagedby computing sec耐ty PCoverTrusted researchfaces obstaclesin the
normal the PC,but Computing many particutar to issues
trustedchainis
to the orderaddressthe hardlypassthroughoperatingsystem.In secufity
of is and aTrusted Terminalbased011 E-signature E-signature,thispaperdcsigncdimplemented Module first
is thehardware then
Trusted thingdesign schematic,and CryptographyffCM .The theterminaldevice main andother driver,田蹦Sel'gioe
programmes m砌e∞吣theprogram terminalcodeeach is itcanusetherootof
relatedsoftware.The for componentrelativelysim
正在加载中,请稍后...【教程】模拟登陆百度之Java代码版
之前已经写了教程,分析模拟登陆百度的逻辑:
然后又去用不同的语言:
Python的:
去实现对应逻辑。
此处,继续尝试,用Java代码,实现这套,模拟登陆百度,的逻辑。
【折腾过程】
1.之前已经整理了一些Java代码:
继续去丰富此套库。
然后把模拟登陆百度的逻辑模拟出来。
2.期间,想要实现Java的函数的默认参数,结果却发现不支持:
3.然后就是一点点去写代码,去调试了。
4.期间,出错了:
5.再去搞懂参数配置:
6.再继续写代码,期间遇到各种问题,基本都解决了:
7.最终,完成了,主体代码为:
* EmulateLoginBaidu.java
* [Function]
* Use Java code to emulate login baidu
* 【教程】模拟登陆百度之Java代码版
* /emulate_login_baidu_use_java_code
* [Version]
* 1. need add apache http lib:
* 【已解决】Eclipse的java代码出错:The import org.apache cannot be resolved
* /java_eclipse_the_import_org_apache_cannot_be_resolved/
* 2.need crifanLib.java
* /p/crifanlib/source/browse/trunk/java/crifanLib.java
* [History]
* 1. initial version, finally successfully emulate login baidu using java code.
//import java.io.IOE
import java.util.ArrayL
//import java.util.C
//import java.util.D
//import java.util.GregorianC
import java.util.HashM
//import java.util.H
import java.util.L
//import java.util.M
import java.util.S
import java.util.regex.M
import java.util.regex.P
import org.apache.http.HttpR
import org.apache.http.NameValueP
import org.apache.http.cookie.C
//import org.apache.http.impl.cookie.BasicClientC
//import org.apache.http.impl.cookie.BasicClientCookie2;
import org.apache.http.message.BasicNameValueP
//import crifanL
* @author CLi
public class EmulateLoginBaidu {
static crifanL
* @param args
public static void main(String[] args) {
crl = new crifanLib();
// TODO Auto-generated method stub
EmulateLoginBaiduUsingJava();
// emulate login baidu using java code
public static void EmulateLoginBaiduUsingJava()
System.out.println(&============ 程序说明 ============&);
System.out.println(&功能:本程序是用来演示使用Java代码去实现模拟登陆百度&);
System.out.println(&注意事项:部分百度账户,在登陆时会出现:&);
System.out.println(&1.部分百度账户,在登陆时会出现:&);
System.out.println(&系统检测到您的帐号疑似被盗,存在安全风险。请尽快修改密码。&);
System.out.println(&此时,本程序,无法成功模拟登陆,请自行按照提示去修改密码后,就可以了。&);
boolean bLoginBaiduOk =
List&Cookie& curCookieL
//step1: login baidu, got cookie BAIDUID
System.out.println(&====== 步骤1:获得BAIDUID的Cookie ======&);
String strTokenValue = &&;
boolean bGotCookieBaiduid =
String strBaiduUrl = &/&;
HttpResponse baiduResp = crl.getUrlResponse(strBaiduUrl);
curCookieList =crl.getCurCookieStore().getCookies();
crl.dbgPrintCookies(curCookieList, strBaiduUrl);
for(Cookie ck : curCookieList)
String cookieName = ck.getName();
if(cookieName.equals(&BAIDUID&))
bGotCookieBaiduid =
if (bGotCookieBaiduid)
System.out.println(&正确:已找到cookie BAIDUID&);
System.out.println(&错误:没有找到cookie BAIDUID !&);
//step2: login, pass paras, extract resp cookie
System.out.println(&====== 步骤2:提取login_token ======&);
boolean bExtractTokenValueOK =
if(bGotCookieBaiduid)
///v2/api/?getapi&class=login&tpl=mn&tangram=true
String getapiUrl = &/v2/api/?getapi&class=login&tpl=mn&tangram=true&;
String getApiRespHtml = crl.getUrlRespHtml(getapiUrl);
curCookieList =crl.getCurCookieStore().getCookies();
crl.dbgPrintCookies(curCookieList, getapiUrl);
//bdPass.api.params.login_token='3cffef4744f';
Pattern tokenValP = pile(&bdPass\\.api\\.params\\.login_token='(?&tokenVal&\\w+)';&);
Matcher tokenValMatcher = tokenValP.matcher(getApiRespHtml);
//boolean foundTokenValue = tokenValMatcher.matches(); // will not match, but can search to find it
boolean foundTokenValue = tokenValMatcher.find();
if(foundTokenValue)
strTokenValue = tokenValMatcher.group(&tokenVal&); //3cffef4744f
System.out.println(&正确:找到 bdPass.api.params.login_token=& + strTokenValue);
bExtractTokenValueOK =
System.out.println(&错误:没找到bdPass.api.params.login_token !&);
//step3: verify returned cookies
if (bGotCookieBaiduid && bExtractTokenValueOK)
System.out.println(&======步骤3:登陆百度并检验返回的Cookie ======&);
//here, has verify, not manually update some cookie's domain and expiry
//also can emulate baidu successfully
//do some workaround to makesure here cookie H_PS_PSSID not expire
//[version: 0][name: H_PS_PSSID][value: 76_][domain: .][path: /][expiry: null]
//Thu Sep 17 14:22:08 CST 2043
//Date newExpiryDate = new Date();
Date newExpiryDate = new Date(143, 9, 17);
//Calendar newExpiryCalendar = new GregorianCalendar(, 14, 22, 8);
BasicClientCookie hPsPssidCookie =
BasicClientCookie dbsvrtmCookie =
//int hPsPssidCookieIdx = 0;
curCookieList = crl.getCurCookieList();
for(Cookie ck : curCookieList)
if(ck.getName().equalsIgnoreCase(&H_PS_PSSID&))
//hPsPssidCookieIdx = curCookieList.indexOf(ck);
hPsPssidCookie = (BasicClientCookie)
hPsPssidCookie.setExpiryDate(newExpiryDate);
ck = hPsPssidC
if(ck.getName().equalsIgnoreCase(&BDSVRTM&))
dbsvrtmCookie = (BasicClientCookie)
dbsvrtmCookie.setDomain(&.&);
dbsvrtmCookie.setExpiryDate(newExpiryDate);
ck = dbsvrtmC
crl.setCurCookieList(curCookieList);
String staticPageUrl = &/cache/user/html/jump.html&;
List&NameValuePair& postDict = new ArrayList&NameValuePair&();
//ArrayList&NameValuePair& headerDict = new ArrayList&NameValuePair&();
//postDict.add(new BasicNameValuePair(&ppui_logintime&, &&));
postDict.add(new BasicNameValuePair(&charset&, &utf-8&));
//postDict.add(new BasicNameValuePair(&codestring&, &&));
postDict.add(new BasicNameValuePair(&token&, strTokenValue));
postDict.add(new BasicNameValuePair(&isPhone&, &false&));
postDict.add(new BasicNameValuePair(&index&, &0&));
//postDict.add(new BasicNameValuePair(&u&, &&));
//postDict.add(new BasicNameValuePair(&safeflg&, &0&));
postDict.add(new BasicNameValuePair(&staticpage&, staticPageUrl));
postDict.add(new BasicNameValuePair(&loginType&, &1&));
postDict.add(new BasicNameValuePair(&tpl&, &mn&));
postDict.add(new BasicNameValuePair(&callback&, &parent.bdPass.api.login._postCallback&));
//get input baidu username and password
String strBaiduUsername = &&;
String strBaiduPassword = &&;
Scanner inputReader = new Scanner(System.in);
System.out.println(&Please Enter Your:& );
System.out.println(&Baidu Username:& );
strBaiduUsername = inputReader.nextLine();
//System.out.println(&You Entered Username=& + strBaiduUsername);
System.out.println(&Baidu Password:& );
strBaiduPassword = inputReader.nextLine();
//System.out.println(&You Entered Password=& + strBaiduPassword);
inputReader.close();
postDict.add(new BasicNameValuePair(&username&, strBaiduUsername));
postDict.add(new BasicNameValuePair(&password&, strBaiduPassword));
postDict.add(new BasicNameValuePair(&verifycode&, &&));
postDict.add(new BasicNameValuePair(&mem_pass&, &on&));
String baiduMainLoginUrl = &/v2/api/?login&;
String loginBaiduRespHtml = crl.getUrlRespHtml(baiduMainLoginUrl, null, postDict);
//Map cookieNameDict = new Map();
//Map cookieNameDict = new Hashtable();
HashMap&Object, Boolean& cookieNameDict = new HashMap&Object, Boolean&();
cookieNameDict.put(&BDUSS&, false);
cookieNameDict.put(&PTOKEN&, false);
cookieNameDict.put(&STOKEN&, false);
//Set-Cookie: SAVEUSERID= expires=Mon, 17-Sep-:03 GMT; path=/; domain=; httponly,
//cookieNameDict.put(&SAVEUSERID&, false);
curCookieList = crl.getCurCookieList();
for(Object objCookieName : cookieNameDict.keySet().toArray())
String strCookieName = objCookieName.toString();
for(Cookie ck: curCookieList)
if(strCookieName.equalsIgnoreCase(ck.getName()))
cookieNameDict.put(strCookieName, true);
boolean bAllCookiesFound =
for (Object
objFoundCurCookie : cookieNameDict.values())
bAllCookiesFound = bAllCookiesFound && Boolean.parseBoolean(objFoundCurCookie.toString());
bLoginBaiduOk = bAllCookiesF
if (bLoginBaiduOk)
System.out.println(&成功模拟登陆百度首页!& );
System.out.println(&模拟登陆百度首页 失败!&);
System.out.println(&所返回的HTML源码为:& + loginBaiduRespHtml);
正常,成功模拟登陆百度的输出为:
8.完整的Eclipse下面的代码下载:
1.使用此项目,需要导入org.apache.http的库。
2.上面的贴出来的代码,用到了对应的我自己的java库,需要的先去下载,才能用上面代码:
3.部分百度账户,在登陆时会出现:
系统检测到您的帐号疑似被盗,存在安全风险。请尽快修改密码。
此时,本程序,无法成功模拟登陆,请自行按照提示去修改密码后,就可以了。
java在处理http方面的库,相对来说,还是很不方便使用。
只能算是基本够用吧。
分类目录分类目录
选择分类目录
Uncategorized&&(10)
单身恋爱婚姻家庭&&(112)
&&&Lovestory&&(7)
&&&单身&&(21)
&&&婚姻&家庭&&(34)
&&&恋爱&&(46)
哲理 人生 故事&&(210)
&&&哲理佳句&&(39)
&&&电视剧《天道》&&(6)
&&&财富人生&&(44)
工作和技术&&(3,664)
&&&CharEncoding&&(3)
&&&CodeShare&&(17)
&&&CompilerLinkerParser&&(94)
&&&&&&ANTLR&&(92)
&&&&&&JavaCC&&(1)
&&&DevToolSoft&&(74)
&&&&&&Linux on Win&&(40)
&&&&&&&&&Cygwin&&(33)
&&&&&&&&&Gow&&(1)
&&&&&&&&&MingW&&(3)
&&&&&&&&&MSYS&&(3)
&&&&&&Putty&&(1)
&&&&&&Total Commander&&(2)
&&&&&&VersionControl&&(27)
&&&&&&&&&Git&&(18)
&&&&&&&&&SVN&&(7)
&&&Docbook&&(127)
&&&DocxyGen&&(1)
&&&Elance&&(6)
&&&Embedded&&(517)
&&&&&&BusyBox&&(2)
&&&&&&CrossCompiler&&(102)
&&&&&&&&&Buildroot&&(30)
&&&&&&&&&crosstool-ng&&(40)
&&&&&&Embedded Emulator&&(15)
&&&&&&&&&QEMU&&(15)
&&&&&&Embedded Filesystem&&(4)
&&&&&&&&&Yaffs2&&(2)
&&&&&&Embedded IDE&&(3)
&&&&&&&&&HEW&&(1)
&&&&&&&&&IAR&&(1)
&&&&&&Embedded OnChip Resource&&(2)
&&&&&&&&&Memory&&(2)
&&&&&&&&&&&&SDRAM&&(1)
&&&&&&Embedded OS&&(9)
&&&&&&&&&Realtime OS&&(2)
&&&&&&Embedded Peripherals&&(112)
&&&&&&&&&Bluetooth&&(21)
&&&&&&&&&CAN Bus&&(2)
&&&&&&&&&DMA&&(1)
&&&&&&&&&GPIO&&(1)
&&&&&&&&&Serial Communication&&(13)
&&&&&&&&&&&&RS232&&(10)
&&&&&&&&&&&&&&&SecureCRT&&(3)
&&&&&&&&&&&&RS485&&(2)
&&&&&&&&&Storage&&(73)
&&&&&&&&&&&&Flash&&(31)
&&&&&&&&&&&&SD/MMC&&(9)
&&&&&&&&&&&&USB&&(32)
&&&&&&Fieldbus&&(57)
&&&&&&&&&DTM&&(1)
&&&&&&&&&EDDL&&(10)
&&&&&&&&&HART&&(29)
&&&&&&&&&Modbus&&(1)
&&&&&&&&&Profibus&&(6)
&&&&&&&&&PROFINET&&(2)
&&&&&&Industrial Automation&&(59)
&&&&&&Linaro&&(1)
&&&&&&Linux Kernel&&(2)
&&&&&&MCU SoC IP-Core&&(11)
&&&&&&&&&ARM&&(4)
&&&&&&&&&NEC&&(2)
&&&&&&PLC&&(38)
&&&&&&Symbology_Barcode&&(6)
&&&&&&Thread&&(2)
&&&&&&Uboot&&(17)
&&&EncryptDecrypt&&(1)
&&&Hardware&&(13)
&&&&&&Opensource Hardware&&(10)
&&&&&&&&&pcDuino&&(7)
&&&IDE TextEditor&&(87)
&&&&&&Apatana Studio 3&&(2)
&&&&&&ATOM&&(4)
&&&&&&Eclipse&&(37)
&&&&&&Notepad++&&(5)
&&&&&&SciTE&&(1)
&&&&&&Source Insight&&(7)
&&&&&&Sublime Text&&(6)
&&&&&&Visual Studio&&(4)
&&&&&&Xcode&&(20)
&&&&&&&&&Instruments&&(1)
&&&&&&&&&iOS Simulator&&(1)
&&&Network&&(7)
&&&&&&SIP&&(1)
&&&&&&Wireshark&&(3)
&&&OS_Platform&&(583)
&&&&&&CentOS&&(4)
&&&&&&Linux&&(146)
&&&&&&&&&diff&&(4)
&&&&&&&&&Driver&&(36)
&&&&&&&&&gcc&&(1)
&&&&&&&&&makefile&&(13)
&&&&&&&&&NFS&&(2)
&&&&&&&&&patch&&(3)
&&&&&&&&&Wireless&&(7)
&&&&&&Mac&&(35)
&&&&&&&&&Cocoa&&(1)
&&&&&&&&&iphone&&(1)
&&&&&&MobilePlatform&&(351)
&&&&&&&&&Android&&(266)
&&&&&&&&&&&&Android Studio&&(14)
&&&&&&&&&&&&Osmand&&(5)
&&&&&&&&&iOS&&(85)
&&&&&&&&&&&&Swift&&(35)
&&&&&&Ubuntu&&(38)
&&&&&&Windows&&(9)
&&&pneumatic&&(1)
&&&ProgrammingLanguage&&(737)
&&&&&&C&&(48)
&&&&&&C#&&(161)
&&&&&&GO&&(47)
&&&&&&Java&&(48)
&&&&&&&&&JSP&&(1)
&&&&&&&&&Openfire&&(10)
&&&&&&&&&Spark&&(1)
&&&&&&Object-C&&(4)
&&&&&&Perl&&(4)
&&&&&&PHP&&(151)
&&&&&&&&&Drupal&&(16)
&&&&&&&&&Joomla&&(4)
&&&&&&&&&MediaWiki&&(4)
&&&&&&&&&WordPress&&(90)
&&&&&&Python&&(253)
&&&&&&&&&BeautifulSoup&&(11)
&&&&&&&&&Django&&(7)
&&&&&&&&&Python GUI&&(3)
&&&&&&&&&Python IDE&&(14)
&&&&&&&&&Python3&&(8)
&&&&&&&&&StringEncoding&&(16)
&&&&&&R&&(5)
&&&&&&VB.Net&&(5)
&&&&&&VBA&&(11)
&&&RegularExpression&&(54)
&&&&&&Android regex&&(3)
&&&&&&C# Regex&&(1)
&&&&&&dreamweaver regex&&(1)
&&&&&&EditPlus TR1&&(1)
&&&&&&Java regex&&(6)
&&&&&&Notepad++ regex&&(1)
&&&&&&Perl //&&(1)
&&&&&&PHP preg_match&&(1)
&&&&&&Python re&&(30)
&&&&&&UltraEdit 3 type regex&&(1)
&&&&&&VB.NET Regex&&(1)
&&&Soft Dev Basics&&(19)
&&&TechMaterialDownload&&(27)
&&&technical_fun&&(2)
&&&TechnicalLife&&(20)
&&&tmp_todo&&(103)
&&&Virtual Machine&&(78)
&&&&&&VirtualBox&&(42)
&&&&&&VMWare&&(29)
&&&Web_Technology&&(343)
&&&&&&BBS&&(8)
&&&&&&Crawl_EmulateLogin&&(75)
&&&&&&&&&Amazon&&(29)
&&&&&&&&&eBay&&(9)
&&&&&&&&&Scrapy&&(6)
&&&&&&&&&Taobao&&(1)
&&&&&&CSS&&(6)
&&&&&&Google&&(32)
&&&&&&&&&Google Adsense&&(28)
&&&&&&HTML&&(5)
&&&&&&JavaScript&&(24)
&&&&&&&&&easyUI&&(2)
&&&&&&&&&KindEditor&&(3)
&&&&&&&&&Node.js&&(10)
&&&&&&JSON&&(22)
&&&&&&MySQL&&(3)
&&&&&&Skydrive&&(5)
&&&&&&swf flash&&(1)
&&&&&&Tencent&&(1)
&&&&&&UML&&(2)
&&&&&&VirtualHost&&(68)
&&&&&&&&&cPanel&&(3)
&&&&&&&&&hawk&&(11)
&&&&&&&&&sugarhosts&&(7)
&&&&&&&&&TransferWebHosting&&(16)
&&&&&&WebServer&&(5)
&&&&&&&&&apache&&(4)
&&&&&&&&&nginx&&(1)
&&&&&&WeiXin&&(5)
&&&&&&WLW&&(24)
&&&&&&XML&&(3)
&&&&&&&&&XPath&&(2)
&&&wiki&&(2)
&&&经验和教训&&(9)
无法写入&&(1)
有意义&&(637)
&&&值得看的东东&&(138)
&&&新闻与社会&&(196)
&&&日本&&(13)
&&&看图不说话&&(113)
&&&罗永浩[老罗]&&(18)
有趣&&(850)
&&&多收了三五斗&&(21)
&&&开心西游记&&(43)
&&&笑话幽默&&(106)
&&&脑筋急转弯&&(19)
&&&视频&&(22)
&&&超强男女经典征婚启事&&(9)
生活&&(1,433)
&&&Tmp&&(9)
&&&个人推荐&&(84)
&&&信息记录&&(4)
&&&历史&&(3)
&&&安徽&&(12)
&&&心情与思考&&(65)
&&&文学&&(13)
&&&旅游&&(23)
&&&楼市与住房&&(308)
&&&&&&日常生活&&(3)
&&&&&&海德公园&&(39)
&&&&&&装修&&(223)
&&&&&&&&&卫浴&&(1)
&&&&&&&&&吊顶&&(1)
&&&&&&&&&地暖&&(50)
&&&&&&&&&地板&&(2)
&&&&&&&&&家电商场&&(1)
&&&&&&&&&封阳台&&(1)
&&&&&&&&&建材市场&&(9)
&&&&&&&&&整体橱柜&&(8)
&&&&&&&&&瓷砖&&(6)
&&&&&&&&&&&&木纹砖&&(3)
&&&&&&&&&空调&&(1)
&&&&&&&&&衣柜&&(1)
&&&&&&&&&装修日记&&(117)
&&&&&&&&&门&&(2)
&&&淮安&&(3)
&&&游戏&&(14)
&&&电影&&(1)
&&&电脑+数码+软件&&(598)
&&&&&&数码电玩&&(165)
&&&&&&&&&I9100G&&(71)
&&&&&&&&&U盘量产&&(3)
&&&&&&&&&华为手机&&(21)
&&&&&&&&&安卓手机&&(5)
&&&&&&&&&老人机&&(1)
&&&&&&电信&&(2)
&&&&&&电脑_生活&&(9)
&&&&&&电脑知识&&(80)
&&&&&&笔记类软件&&(4)
&&&&&&&&&为知笔记&&(1)
&&&&&&&&&印象笔记&&(2)
&&&&&&系统使用&&(111)
&&&&&&&&&Mac系统&&(34)
&&&&&&&&&Windows系统&&(77)
&&&&&&&&&&&&win10&&(5)
&&&&&&网上银行&&(27)
&&&&&&&&&PayPal&&(1)
&&&&&&&&&中行BOC&&(13)
&&&&&&&&&华夏hxb&&(1)
&&&&&&&&&工行ICBC&&(5)
&&&&&&&&&招行&&(1)
&&&&&&&&&支付宝&&(3)
&&&&&&路由器&&(7)
&&&&&&软件使用&&(168)
&&&&&&&&&360&&(2)
&&&&&&&&&chrome&&(3)
&&&&&&&&&Excel&&(8)
&&&&&&&&&Firefox&&(17)
&&&&&&&&&Flash Player&&(2)
&&&&&&&&&google&&(6)
&&&&&&&&&&&&goagent&&(4)
&&&&&&&&&IE&&(1)
&&&&&&&&&Office&&(3)
&&&&&&&&&Outlook&&(5)
&&&&&&&&&PDF&&(2)
&&&&&&&&&PicPick&&(1)
&&&&&&&&&PowerPoint&&(1)
&&&&&&&&&QQ&&(14)
&&&&&&&&&shadowsocks&&(3)
&&&&&&&&&Thunderbird&&(14)
&&&&&&&&&Word&&(13)
&&&&&&&&&网易163&&(2)
&&&&&&&&&翻墙&&(9)
&&&经济&&(15)
&&&网上购物&&(17)
&&&美食&&(8)
&&&羽毛球&&(22)
&&&苏州&&(57)
&&&&&&工业园区&&(2)
&&&&&&&&&独墅湖高教区&&(2)
知道&&(180)
&&&English&&(60)
&&&生活百科&&(23)
&&&网络资源下载&&(45)
移动硬盘&&(1)
笔记本相关&&(533)
&&&买本前必看&&(33)
&&&无线和迅驰及其相关&&(10)
&&&电脑知识扫盲&&(12)
&&&神舟资料整理&&(342)
&&&&&&别人对神舟的无端诋毁&&(7)
&&&&&&某些笔记本价钱贵但毛病也不少&&(24)
&&&&&&神舟本网站评测&&(7)
&&&&&&神舟电脑评测&&(151)
&&&&&&神舟相关&&(103)
&&&&&&神舟笔记本好的方面的例子&&(17)
&&&&&&给不熟悉的人的解答&&(26)
&&&笔记本cpu&&(26)
&&&笔记本显卡&&(36)
&&&笔记本显卡游戏效果&&(27)
&&&走出笔记本使用误区&&(6)
&&&走出笔记本购买的误区&&(14)
&&&降频功耗散热&&(11)
音乐天堂&&(526)
&&&歌曲类型&&(437)
&&&&&&Hiphop_R&B_Rock&&(23)
&&&&&&中文歌曲&&(160)
&&&&&&外文歌曲&&(200)
&&&&&&纯音乐&无歌词&&(54)
&&&特定歌手&&(38)
&&&&&&Enigma&&(11)
&&&&&&Linkinpark&&(14)
&&&&&&陈琳&&(13)
&&&音乐下载&&(1)
&&&音乐知识&&(9)
默认分类&&(212)
&&&默认分类&&(3)
2016年四月
11121314151617
18192021222324
252627282930
免费的格式化Javascript源码的网站
查询Unicode字符,且还带Oct,Decimal,Hex,HTML Entity
HTML和Javascript都支持,很好用。夏克诺的烦恼百度云_百度知道
夏克诺的烦恼百度云
密码: 8u16  楼主  链接资源已发请快速领取资源哦  共享资源链接容易失效资源收集易  没私我或加百度云友望采纳.
其他类似问题
为您推荐:
其他2条回答
我流畅版加我百度云流暖1
我有,但是不是高清的
私信给你了
等待您来回答
下载知道APP
随时随地咨询
出门在外也不愁最新指数播报:
&&TSI: 440.38点,环比涨幅0.13%;
TCI:307.12点,环比跌幅2.59%;
TBI:379.86点,环比涨幅2.52%;
TDI:812.89点,环比涨幅0.08%;
IGF:15.44 USD/MT,环比涨幅2.05%
与上日比涨跌幅 +0.13%
10日内最高:442.04
10日内最低:403.48
与上日比涨跌幅 -2.59%
10日内最高:324.44
10日内最低:215.27
与上日比涨跌幅 +2.52%
10日内最高:384.35
10日内最低:369.51
与上日比涨跌幅 +0.08%
10日内最高:812.89
10日内最低:796.43
与上日比涨跌幅 +2.05%
10日内最高:15.44
10日内最低:14.69
运价指数:
扫描下方二维码
关注微信公众平台
天津航运指数分析报告
北方国际粮食远期运价行情分析报告
俱乐部会员
用户名:null
会员所属:网站会员
当前状态:已登录
用户名:null
会员所属:俱乐部会员
当前状态:已登录
中远散货运输有限公司
中海集装箱运输天津有限公司
天津中远国际货运有限公司
中国外运天津有限公司
招商局物流集团有限公司
五矿国际货运天津有限责任公司
克运国际物流集团有限公司
中国天津外轮代理有限公司
中国航贸网
中国集装箱行业协会
中国水运网
航运商务网
中国港口网
中国船舶代理及无船承运人协会
天津泛华国际物流有限公司
天津东疆国际航运交易市场
中国运费网
国际船舶网
大宗商品网
上海中谷新良海运有限公司
中国水陆联运网
《水运管理》杂志社
《集装箱化》杂志社
中国海事服务网}

我要回帖

更多关于 路由账号和密码是什么 的文章

更多推荐

版权声明:文章内容来源于网络,版权归原作者所有,如有侵权请点击这里与我们联系,我们将及时删除。

点击添加站长微信